diff --git a/Docs/Tools/Cumulative changesets per contributor for theme cycle_infra.png b/Docs/Tools/Cumulative changesets per contributor for theme cycle_infra.png deleted file mode 100644 index bd34be595a..0000000000 Binary files a/Docs/Tools/Cumulative changesets per contributor for theme cycle_infra.png and /dev/null differ diff --git a/Docs/Tools/GenPlot.py b/Docs/Tools/GenPlot.py index 62419829a1..60601b9801 100644 --- a/Docs/Tools/GenPlot.py +++ b/Docs/Tools/GenPlot.py @@ -39,6 +39,15 @@ def createBar(options): pyplot.legend() +def createLine(options): + data = options["plot"]["count"] + keys = genKeys(data, options["interpetKeysAs"]) + values = list(map(lambda kv: kv["value"], data)) + + pyplot.plot(keys, values, label=options["name"]) + pyplot.legend() + + pyplot_init() title = sys.argv[1] pyplot.title = title @@ -59,5 +68,8 @@ while (True): createPie(options) elif (options["plot"]["type"] == "bar"): createBar(options) + elif (options["plot"]["type"] == "line"): + createLine(options) else: print("Unkown type: " + options.type) +print("Plot generated") \ No newline at end of file diff --git a/Docs/Tools/GenerateSeries.ts b/Docs/Tools/GenerateSeries.ts index 73e97e9a43..e4bc9b538d 100644 --- a/Docs/Tools/GenerateSeries.ts +++ b/Docs/Tools/GenerateSeries.ts @@ -179,7 +179,7 @@ interface PlotSpec { name: string, interpetKeysAs: "date" | "number" | "string" | string plot: { - type: "pie" | "bar" + type: "pie" | "bar" | "line" count: { key: string, value: number }[] } | { type: "stacked-bar" @@ -196,6 +196,7 @@ interface PlotSpec { function createGraph( title: string, ...options: PlotSpec[]) { + console.log("Creating graph",title,"...") const process = exec("python3 GenPlot.py \"graphs/" + title + "\"", ((error, stdout, stderr) => { console.log("Python: ", stdout) if (error !== null) { @@ -207,7 +208,8 @@ function createGraph( })) for (const option of options) { - process.stdin._write(JSON.stringify(option) + "\n", "utf-8", undefined) + const d = JSON.stringify(option) + "\n" + process.stdin._write(d, "utf-8", undefined) } process.stdin._write("\n", "utf-8", undefined) @@ -229,6 +231,7 @@ class Histogram { } public bump(key: K, increase = 1) { + if (this.counts.has(key)) { this.counts.set(key, increase + this.counts.get(key)) } else { @@ -324,6 +327,20 @@ class Histogram { return hist } + public asRunningAverages(convertToRange: ((key: K) => K[])) { + const newCount = new Histogram() + const self = this + this.counts.forEach((_, key) => { + const keysToCheck = convertToRange(key) + let sum = 0 + for (const k of keysToCheck) { + sum += self.counts.get(k) ?? 0 + } + newCount.bump(key, sum / keysToCheck.length) + }) + return newCount + } + /** * Given a histogram: * 'a': 3 @@ -402,6 +419,15 @@ class Histogram { return spec; } + public asLine(options: { + name: string + compare?: (a: K, b: K) => number + }) { + const spec = this.asPie(options) + spec.plot.type = "line" + return spec + } + } class Group { @@ -506,7 +532,8 @@ function createGraphs(allFeatures: ChangeSetData[], appliedFilterDescription: st hist .createOthersCategory("other", 20) .addCountToName() - .asBar({name: "Changesets per theme (bar)" + appliedFilterDescription}).render() + .asBar({name: "Changesets per theme (bar)" + appliedFilterDescription}) + .render() new Histogram(allFeatures.map(f => f.properties.user)) @@ -516,7 +543,33 @@ function createGraphs(allFeatures: ChangeSetData[], appliedFilterDescription: st { compare: (a, b) => Number(a) - Number(b), name: "Contributors per changeset count" + appliedFilterDescription - }).render() + }) + .render() + + + const csPerDay = new Histogram(allFeatures.map(f => f.properties.date.substr(0, 10))) + + const perDayLine = csPerDay + .keyToDate() + .asLine({ + compare: (a, b) => a.getTime() - b.getTime(), + name: "Changesets per day" + appliedFilterDescription + }) + + const perDayAvg = csPerDay.asRunningAverages(key => { + const keys = [] + for (let i = 0; i < 7; i++) { + const otherDay = new Date(new Date(key).getTime() - i * 1000 * 60 * 60 * 24) + keys.push(otherDay.toISOString().substr(0, 10)) + } + return keys + }) + .keyToDate() + .asLine({ + compare: (a, b) => a.getTime() - b.getTime(), + name: "Running weekly average" + appliedFilterDescription + }) + createGraph("Changesets per day (line)" + appliedFilterDescription, perDayLine, perDayAvg) new Histogram(allFeatures.map(f => f.properties.metadata.host)) .asPie({ @@ -588,8 +641,25 @@ function createGraphs(allFeatures: ChangeSetData[], appliedFilterDescription: st } +function createMiscGraphs(allFeatures: ChangeSetData[], emptyCS: ChangeSetData[]) { + new Histogram(emptyCS.map(f => f.properties.date)).keyToDate().asBar({ + name: "Empty changesets by date" + }).render() + const geojson = { + type: "FeatureCollection", + features: allFeatures.map(f => { + try { + return GeoOperations.centerpoint(f.geometry); + } catch (e) { + console.error("Could not create center point: ", e, f) + } + }) + } + writeFileSync("centerpoints.geojson", JSON.stringify(geojson, undefined, 2)) +} -new StatsDownloader("stats").DownloadStats() + +// new StatsDownloader("stats").DownloadStats() const allPaths = readdirSync("stats") .filter(p => p.startsWith("stats.") && p.endsWith(".json")); let allFeatures: ChangeSetData[] = [].concat(...allPaths @@ -599,25 +669,7 @@ let allFeatures: ChangeSetData[] = [].concat(...allPaths const emptyCS = allFeatures.filter(f => f.properties.metadata.theme === "EMPTY CS") allFeatures = allFeatures.filter(f => f.properties.metadata.theme !== "EMPTY CS") -new Histogram(emptyCS.map(f => f.properties.date)).keyToDate().asBar({ - name: "Empty changesets by date" -}).render() - - -const geojson = { - type: "FeatureCollection", - features: allFeatures.map(f => { - try { - return GeoOperations.centerpoint(f.geometry); - } catch (e) { - console.error("Could not create center point: ", e, f) - } - }) -} - -writeFileSync("centerpoints.geojson", JSON.stringify(geojson, undefined, 2)) - - +createMiscGraphs(allFeatures, emptyCS) createGraphs(allFeatures, "") createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2020")), " in 2020") createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2021")), " in 2021") diff --git a/Docs/Tools/centerpoints.geojson b/Docs/Tools/centerpoints.geojson index 2492ca4507..2568d0d85a 100644 --- a/Docs/Tools/centerpoints.geojson +++ b/Docs/Tools/centerpoints.geojson @@ -30445,6 +30445,4196 @@ ] } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.23882325, + 43.7816377 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -122.05661275, + 36.974851150000006 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0457394, + 49.8544206 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.24296635, + 43.782012449999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.264316749999999, + 43.77846855 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3640989, + 51.012136600000005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2516995, + 41.4479352 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.55976165, + 52.99559845 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.2634379, + 43.7787729 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1866457, + 51.1947448 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.225277, + 51.2078916 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.223763049999999, + 43.786877700000005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.512842500000001, + 48.08694825 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.2458618, + 43.792691500000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1866457, + 51.1947448 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.245411650000001, + 43.7813979 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 48.3882483, + 54.3320122 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.14068465, + 51.15207615 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.140321500000001, + 51.1522738 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.67913755, + 51.18201965 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 13.09395635, + 52.39585475 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30956485, + 51.10541125 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3111592, + 51.09883125 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.0760909, + 33.46011025 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.33681825, + 51.102917399999995 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1032138, + 52.0830137 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.6665122, + 45.2194957 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 71.7765141, + 40.4045506 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.2759111, + 43.6810052 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 40.211125800000005, + 43.67893885 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -112.0766027, + 33.462172949999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.1438811, + 43.7502381 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.64106515, + 45.4933166 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.7305151, + 45.33372 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2004225, + 51.186175 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.6590959, + 45.226970300000005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.7127615, + 44.35393 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387559899999999, + 50.82240395 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6100849, + 50.8468398 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6036213, + 50.8422367 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 121.5856916, + 13.9476675 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6036377, + 50.8426303 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5994668, + 50.8487499 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6021821, + 50.84544965 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1401763, + 49.6891113 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.170543949999999, + 45.36629955 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.17861305, + 45.367286449999995 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.1802704, + 45.367302699999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 13.684601, + 51.0580336 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.94329205, + 50.41015625 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4455923, + 46.9288723 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 11.33714965, + 46.48656335 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1203799, + 52.0888547 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 121.5577407, + 13.9629595 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0648529, + 50.82412895 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 12.15186765, + 48.5498855 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4712417, + 45.2644314 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4422382, + 46.9461388 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9388232, + 51.33024090000001 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 13.7497433, + 52.431594 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2310654000000003, + 51.20193345 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2455038, + 50.7262381 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2454414, + 50.7261862 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.21888015, + 51.196195 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2442324, + 51.2039627 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4276041, + 51.1842084 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1935279, + 51.2004931 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158667, + 51.2752488 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.15234765, + 51.15873035 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.15130295, + 51.16151945 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0913365, + 51.06573865 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1859279, + 51.3139366 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -86.0676955, + 40.753911200000005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1951949, + 51.3265608 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -85.6718148, + 42.9794391 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2655267, + 51.1980204 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5876905, + 51.1446402 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.4558026, + 51.314914599999994 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4130676, + 50.94953925 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34933765, + 50.96533895 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.6280573, + 37.13392235 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2904695, + 51.1994981 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2182378, + 51.2155418 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0119706, + 51.4544025 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.0120718, + 51.4545208 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2352944, + 50.85522 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0945347, + 50.953635 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2344067, + 51.2031169 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1838748, + 51.1960646 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5741409, + 50.6194838 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2503067, + 51.1835053 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9601947, + 50.41745865 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0374999999999996, + 51.0977036 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.131047049999999, + 52.09527165 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25407285, + 51.09879255 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1284506499999996, + 52.0974834 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 14.481883, + 51.9319697 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -111.8574094, + 40.3632181 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2564290500000004, + 51.1928764 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2524943, + 51.218247149999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.25789845, + 51.2076036 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6150423499999995, + 51.1610935 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7421088, + 51.0412423 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.5410926, + 44.3860696 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 12.85410045, + 52.165043600000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5579327, + 50.6242225 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.96330215, + 50.4183087 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2118652, + 51.2048584 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.593448, + 48.7254492 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2393514, + 51.210834750000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.79737515, + 52.242610049999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2381010999999997, + 51.18833585 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95028465, + 50.4177244 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 121.5587778, + 13.96359275 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2713437, + 51.2003859 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.275556, + 51.19025275 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23263115, + 51.2115921 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 10.1730426, + 52.17872920000001 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9824694, + 51.1500361 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 10.149091349999999, + 59.755147449999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.00325925, + 49.2319904 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7276412, + 51.0411273 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5767153, + 51.0096022 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3507453, + 50.8536834 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1406575500000002, + 50.70147355 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8770761499999997, + 43.61476115 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73486325, + 51.03997725 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.956541999999999, + 50.2793812 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348232, + 51.0401155 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.96033895, + 50.2622085 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6232303, + 50.07017255 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.95595755, + 50.2775154 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.67980365, + 50.14115535 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9477634, + 50.272717 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.69264245, + 50.128844 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6867148, + 50.1269821 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6862293, + 50.12752025 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6423108, + 50.070061 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.60576105, + 47.7714283 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3031168, + 50.9391221 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.976755449999999, + 50.2600235 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.94739365, + 50.2737678 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.1757982, + 45.36604115 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9660253, + 50.2622817 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5442707, + 50.1581591 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9941227, + 50.2423472 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.960747999999999, + 50.27161095 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9495018, + 50.2774503 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.944194849999999, + 50.274159499999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54404465, + 50.16105265 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54536235, + 50.1618474 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5451746, + 50.162814850000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.545350299999999, + 50.16191445 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5452807, + 50.1607658 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3740456000000005, + 50.86143745 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5460034, + 50.159276 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5640962, + 52.9950848 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.96740535, + 50.2748423 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.537877, + 52.99543985 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5466847, + 50.159459049999995 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54822695, + 50.15882755 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.754583499999999, + 50.3344212 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.549551950000001, + 50.15823985 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54991405, + 50.15806455 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54798555, + 50.1589066 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.550598, + 50.1582158 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5506839, + 50.1586076 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54988995, + 50.1582948 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5477495, + 50.1592846 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54875805, + 50.1584701 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 13.2490917, + 52.77244085 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9456606, + 50.3058153 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.941353, + 50.2853359 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.941353, + 50.2853359 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6862027, + 50.114882 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6853782, + 50.1165911 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.69559315, + 50.1094906 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.659948499999999, + 50.105537999999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.754045600000001, + 50.331973950000005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 12.76859585, + 53.15715375 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 174.702026, + -36.8765078 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6773092, + 50.107802 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.69519405, + 50.1137454 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.688638000000001, + 50.1151145 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.683682999999998, + 50.1142431 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.684360649999999, + 50.1223254 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7578024, + 50.33270895 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6528492, + 50.1091454 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6830898, + 50.1148656 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5329098000000005, + 52.985321049999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5704241, + 53.0206216 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 10.65024765, + 44.73081185 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.677804, + 50.1272677 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348232, + 51.0401155 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6839434, + 50.1146583 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.69791175, + 50.1163602 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.68328565, + 50.114305099999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.68109755, + 50.1163472 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348299000000003, + 51.04008055 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6907608, + 50.11390175 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1993715, + 50.7445529 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6829606, + 50.11461825 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.4499186, + 49.4759151 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.2041098, + 51.5014559 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.68311665, + 50.1144909 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6846751, + 50.1158075 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.68409165, + 50.112874149999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6774814, + 50.11119025 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.687577600000001, + 50.115007750000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 12.8632879, + 52.1777432 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6917978, + 50.1152513 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6868891, + 50.1137075 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4581663, + 51.1707405 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 10.9771117, + 45.43634245 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.18929335, + 50.1980947 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1906575, + 50.1995693 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6832145, + 50.1116981 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.19187145, + 50.198229100000006 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1854334, + 50.199891 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6838824, + 50.1115399 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2011437, + 51.2002594 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1509005, + 48.7299946 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.4502941, + 49.4742454 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.45007285, + 49.47343845 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.4499562, + 49.4732868 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.4480947, + 49.4760771 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.4485105, + 49.4769189 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2532747, + 50.7435566 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2238342, + 51.2079706 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 14.0631437, + 52.0389766 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6898369, + 50.1276097 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.248831, + 50.741326 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.669955, + 50.1448601 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.668921, + 50.1439577 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6693012, + 50.1435194 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.686496049999999, + 50.1153186 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3043364, + 47.073127 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.30238595, + 47.12222705 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.14602965, + 49.840428450000005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1488433, + 49.8067305 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2376243, + 50.7366011 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2263353, + 51.2096424 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1552538, + 49.8048021 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1613773, + 49.802349050000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1612914, + 49.80233005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1612217, + 49.8024287 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.158906949999999, + 49.8059756 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.16029495, + 49.80140385 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1599798, + 49.806965649999995 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2263353, + 51.2096424 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9852071, + 50.0386577 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.985786449999999, + 50.0384269 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9840189, + 50.0397068 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9843253, + 50.0391539 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.984525999999999, + 50.03906635 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9813849, + 50.0410488 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.981173, + 50.0423011 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9811918, + 50.0423183 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1607603, + 49.8024633 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9819241, + 50.0414725 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1590598, + 49.8026295 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1597934, + 49.80452075 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.158330249999999, + 49.8028909 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1583209, + 49.80278965 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.160189, + 49.8029775 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.15700395, + 49.80288745 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1788948, + 49.7538018 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1656822, + 49.7933756 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1577482, + 49.80287535 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.156385700000001, + 49.803068350000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1579735, + 49.801326 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1626325, + 49.8023629 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1552243, + 49.8030952 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.16364795, + 49.8037963 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.25393335, + 50.725780349999994 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1671735, + 49.7998942 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1597357, + 49.80114415 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.15785955, + 49.800221 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.15853005, + 49.7999115 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1570915, + 49.800447000000005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.16274785, + 49.801279199999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1606718, + 49.8018436 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.16094545, + 49.802493600000005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1637403, + 49.802453 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.162371, + 49.8030623 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -73.2484543, + -39.8131879 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 12.75899385, + 53.15936765 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9458849, + 50.280960500000006 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5497558, + 50.1005473 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5469288, + 50.10262385 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.547218449999999, + 50.1026849 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24020775, + 51.2043448 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54247095, + 50.106960799999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5447951, + 50.10491785 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54438065, + 50.10558605 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6937454, + 50.1296435 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5340783, + 50.1146463 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5418366, + 50.10780245 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9749181, + 50.0442803 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9749449, + 50.0443302 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.975534849999999, + 50.043349199999994 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.975598049999999, + 50.043480200000005 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.97555475, + 50.043371199999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9761548, + 50.0425456 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.97722615, + 50.042217550000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9773203, + 50.0421193 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.97821595, + 50.0417998 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.97823605, + 50.042525850000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9813273, + 50.0409669 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.1704841, + 48.7253806 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6381339, + 50.1232861 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.644698, + 50.1229582 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -58.53979215, + -34.63900825 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6430378, + 50.1235416 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -58.5743771, + -34.63804115000001 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6429062, + 50.1239728 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6428607, + 50.1240037 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.64227815, + 50.12367365 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6413559, + 50.1237561 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2578433, + 51.2068582 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6404319, + 50.1237762 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6406317, + 50.1236633 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6392477, + 50.1246641 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6388749, + 50.1249341 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6351493, + 50.1237286 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.638031999999999, + 50.1219264 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.63991335, + 50.12286415 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6376545, + 50.1215962 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6375512, + 50.1214672 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.1704841, + 48.7253806 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6842887, + 50.126216 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6838555, + 50.1261567 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.685079949999999, + 50.1264748 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.64021945, + 50.125679500000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6862373, + 50.12659 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6868234, + 50.126735350000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.68669735, + 50.12670695 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6407429, + 50.1272733 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.689150399999999, + 50.1270328 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6897011, + 50.1273803 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6994321, + 50.11287299999999 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5594736, + 53.0164646 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3871451, + 50.8668183 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6866062, + 50.1146941 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.69935325, + 50.13102385 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 12.56197795, + 50.682000349999996 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22888695, + 51.206115 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -7.752205099999999, + 37.1358424 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.4623911, + 5.0312873 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.545202849999999, + 50.160830000000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5514026, + 50.159433 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.550188, + 50.1588121 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.547471349999999, + 50.16120555 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5449828, + 50.1601884 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1912836, + 50.20169705 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.93181115, + 50.1508993 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.19254185, + 50.1995891 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.545416, + 50.1595767 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.5464031, + 50.1614016 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.19272805, + 50.19846805 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.54873435, + 50.1643012 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6788216, + 50.1260216 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6791831, + 50.125971 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.67796695, + 50.12684495 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6805457, + 50.1275839 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6814415, + 50.1276836 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6816034, + 50.127716 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6805324, + 50.12763585 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.683234599999999, + 50.1282141 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -58.68838615, + -34.6586347 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6891366, + 50.1335472 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2222564, + 51.202200700000006 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.69328115, + 50.1287127 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.69003945, + 50.1276393 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39333945, + 51.20875735 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5617588, + 50.5852711 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.20237385, + 51.20223925 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2743556500000004, + 51.20955345 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2297791, + 51.20713155 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2867471999999998, + 41.6019153 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2264614, + 51.2201449 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8141441, + 43.3810326 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 14.6541279, + 52.0111969 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.43261105, + 46.9454512 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6455965, + 50.0688335 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6762497, + 50.0985021 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7027381, + 50.122315 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.71135515, + 50.0890136 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.69186135, + 50.12827765 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.659828300000001, + 50.09142095 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6641896, + 50.1069909 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.711375, + 50.0890135 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.68113615, + 50.11404075 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.71016665, + 50.089053050000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6918138, + 50.100693500000006 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6797915, + 50.11238965 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6773708, + 50.1120637 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.68431645, + 50.11610775 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.692076499999999, + 50.1306746 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6866933, + 50.1351904 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.69282015, + 50.1293519 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6980666, + 50.1287091 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.68087695, + 50.113137800000004 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6972467, + 50.1261847 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6919746, + 50.1304932 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.4303868, + 46.9522689 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.28425835, + 55.87046315 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6887285, + 50.128598 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6883402, + 50.127577 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.689585399999999, + 50.130203949999995 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5852588, + 51.1775497 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6886929, + 50.1287807 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.91373375, + 51.0149064 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -78.6966002, + 26.5307092 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -42.8143327, + -5.0923526 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -42.8404302, + -5.0966517 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 14.36533075, + 51.6749899 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.6537454, + 50.9009087 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7195112, + 50.8516306 + ] + } + }, { "type": "Feature", "geometry": { @@ -30460,8 +34650,8 @@ "geometry": { "type": "Point", "coordinates": [ - 6.5481828, - 53.0129515 + 6.546791450000001, + 53.0118218 ] } }, diff --git a/Docs/Tools/graphs/Changesets per day (line) in 2020.png b/Docs/Tools/graphs/Changesets per day (line) in 2020.png new file mode 100644 index 0000000000..748c2ca49a Binary files /dev/null and b/Docs/Tools/graphs/Changesets per day (line) in 2020.png differ diff --git a/Docs/Tools/graphs/Changesets per day (line) in 2021.png b/Docs/Tools/graphs/Changesets per day (line) in 2021.png new file mode 100644 index 0000000000..880d4fb792 Binary files /dev/null and b/Docs/Tools/graphs/Changesets per day (line) in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per day (line).png b/Docs/Tools/graphs/Changesets per day (line).png new file mode 100644 index 0000000000..e240a4901b Binary files /dev/null and b/Docs/Tools/graphs/Changesets per day (line).png differ diff --git a/Docs/Tools/graphs/Changesets per host in 2021.png b/Docs/Tools/graphs/Changesets per host in 2021.png index d4931ed56b..73c231a668 100644 Binary files a/Docs/Tools/graphs/Changesets per host in 2021.png and b/Docs/Tools/graphs/Changesets per host in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per host.png b/Docs/Tools/graphs/Changesets per host.png index c7983e02f5..f098211055 100644 Binary files a/Docs/Tools/graphs/Changesets per host.png and b/Docs/Tools/graphs/Changesets per host.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar) in 2021.png b/Docs/Tools/graphs/Changesets per theme (bar) in 2021.png index 8a594265bd..19591c777c 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) in 2021.png and b/Docs/Tools/graphs/Changesets per theme (bar) in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar).png b/Docs/Tools/graphs/Changesets per theme (bar).png index 3323885089..c72d8e9d4a 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (bar).png and b/Docs/Tools/graphs/Changesets per theme (bar).png differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie) in 2021.png b/Docs/Tools/graphs/Changesets per theme (pie) in 2021.png index d1ba2e2699..3bd7836846 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) in 2021.png and b/Docs/Tools/graphs/Changesets per theme (pie) in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie).png b/Docs/Tools/graphs/Changesets per theme (pie).png index c01c15a086..89a93074e0 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (pie).png and b/Docs/Tools/graphs/Changesets per theme (pie).png differ diff --git a/Docs/Tools/graphs/Changesets per theme in 2021.png b/Docs/Tools/graphs/Changesets per theme in 2021.png index 384126b577..593b1225eb 100644 Binary files a/Docs/Tools/graphs/Changesets per theme in 2021.png and b/Docs/Tools/graphs/Changesets per theme in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per theme.png b/Docs/Tools/graphs/Changesets per theme.png index 5bb23d1fa9..22c5028736 100644 Binary files a/Docs/Tools/graphs/Changesets per theme.png and b/Docs/Tools/graphs/Changesets per theme.png differ diff --git a/Docs/Tools/graphs/Changesets per version number in 2021.png b/Docs/Tools/graphs/Changesets per version number in 2021.png index a76e399fc4..f8d307feec 100644 Binary files a/Docs/Tools/graphs/Changesets per version number in 2021.png and b/Docs/Tools/graphs/Changesets per version number in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per version number.png b/Docs/Tools/graphs/Changesets per version number.png index 2840ba8ca9..7a66ec7306 100644 Binary files a/Docs/Tools/graphs/Changesets per version number.png and b/Docs/Tools/graphs/Changesets per version number.png differ diff --git a/Docs/Tools/graphs/Contributors per changeset count in 2021.png b/Docs/Tools/graphs/Contributors per changeset count in 2021.png index 5270f34e0a..99d3efe2fd 100644 Binary files a/Docs/Tools/graphs/Contributors per changeset count in 2021.png and b/Docs/Tools/graphs/Contributors per changeset count in 2021.png differ diff --git a/Docs/Tools/graphs/Contributors per changeset count.png b/Docs/Tools/graphs/Contributors per changeset count.png index 5682b31776..703bdae77b 100644 Binary files a/Docs/Tools/graphs/Contributors per changeset count.png and b/Docs/Tools/graphs/Contributors per changeset count.png differ diff --git a/Docs/Tools/graphs/Contributors per day in 2021.png b/Docs/Tools/graphs/Contributors per day in 2021.png index 5f7670ea63..dcfc3c35b1 100644 Binary files a/Docs/Tools/graphs/Contributors per day in 2021.png and b/Docs/Tools/graphs/Contributors per day in 2021.png differ diff --git a/Docs/Tools/graphs/Contributors per day.png b/Docs/Tools/graphs/Contributors per day.png index 08bee71c2a..a60497f8e4 100644 Binary files a/Docs/Tools/graphs/Contributors per day.png and b/Docs/Tools/graphs/Contributors per day.png differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme in 2021.png b/Docs/Tools/graphs/Deletion-changesets per theme in 2021.png index 9412e26971..00d6e3587c 100644 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme in 2021.png and b/Docs/Tools/graphs/Deletion-changesets per theme in 2021.png differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme.png b/Docs/Tools/graphs/Deletion-changesets per theme.png index 9412e26971..00d6e3587c 100644 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme.png and b/Docs/Tools/graphs/Deletion-changesets per theme.png differ diff --git a/Docs/Tools/graphs/Empty changesets by date.png b/Docs/Tools/graphs/Empty changesets by date.png index fd9beb2587..35f89c0793 100644 Binary files a/Docs/Tools/graphs/Empty changesets by date.png and b/Docs/Tools/graphs/Empty changesets by date.png differ diff --git a/Docs/Tools/stats/stats.2021-11.json b/Docs/Tools/stats/stats.2021-11.json index c9c20a8a19..3620a39a6d 100644 --- a/Docs/Tools/stats/stats.2021-11.json +++ b/Docs/Tools/stats/stats.2021-11.json @@ -1,5 +1,27947 @@ { "features": [ + { + "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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 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": 113491702, "type": "Feature", @@ -69,24 +28011,24 @@ "coordinates": [ [ [ - 6.5481828, - 53.0129515 + 6.5454001, + 53.0104826 ], [ 6.5481828, - 53.0129515 + 53.0104826 ], [ 6.5481828, - 53.0129515 + 53.013161 ], [ - 6.5481828, - 53.0129515 + 6.5454001, + 53.013161 ], [ - 6.5481828, - 53.0129515 + 6.5454001, + 53.0104826 ] ] ] @@ -105,21 +28047,23 @@ "imagery_used": "Not reported", "date": "2021-11-07T18:16:06Z", "reviewed_features": [], - "create": 1, - "modify": 2, + "create": 8, + "modify": 17, "delete": 0, - "area": 0, + "area": 0.00000745318367998207, "is_suspect": false, "harmful": null, "checked": false, "check_date": null, "metadata": { "host": "mapcomplete.osm.be", + "move": 1, "theme": "street_lighting_assen", - "answer": 8, - "create": 1, + "answer": 61, + "create": 8, "imagery": "osm", - "language": "en" + "language": "en", + "move:node/-1": "improve_accuracy" } } },