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 bd34be595..000000000
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 62419829a..60601b980 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 73e97e9a4..e4bc9b538 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 2492ca450..2568d0d85 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 000000000..748c2ca49
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 000000000..880d4fb79
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 000000000..e240a4901
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 d4931ed56..73c231a66 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 c7983e02f..f09821105 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 8a594265b..19591c777 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 332388508..c72d8e9d4 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 d1ba2e269..3bd783684 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 c01c15a08..89a93074e 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 384126b57..593b1225e 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 5bb23d1fa..22c502873 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 a76e399fc..f8d307fee 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 2840ba8ca..7a66ec730 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 5270f34e0..99d3efe2f 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 5682b3177..703bdae77 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 5f7670ea6..dcfc3c35b 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 08bee71c2..a60497f8e 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 9412e2697..00d6e3587 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 9412e2697..00d6e3587 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 fd9beb258..35f89c079 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 c9c20a8a1..3620a39a6 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"
}
}
},
diff --git a/Logic/FeatureSource/FeaturePipeline.ts b/Logic/FeatureSource/FeaturePipeline.ts
index 2effce698..1f49228c3 100644
--- a/Logic/FeatureSource/FeaturePipeline.ts
+++ b/Logic/FeatureSource/FeaturePipeline.ts
@@ -75,7 +75,7 @@ export default class FeaturePipeline {
.map(ch => ch.changes)
.filter(coor => coor["lat"] !== undefined && coor["lon"] !== undefined)
.forEach(coor => {
- state.layoutToUse.layers.forEach(l => self.localStorageSavers.get(l.id).poison(coor["lon"], coor["lat"]))
+ state.layoutToUse.layers.forEach(l => self.localStorageSavers.get(l.id)?.poison(coor["lon"], coor["lat"]))
})
})
@@ -210,7 +210,11 @@ export default class FeaturePipeline {
handleTile: tile => {
new RegisteringAllFromFeatureSourceActor(tile)
if (tile.layer.layerDef.maxAgeOfCache > 0) {
- self.localStorageSavers.get(tile.layer.layerDef.id).addTile(tile)
+ const saver = self.localStorageSavers.get(tile.layer.layerDef.id)
+ if(saver === undefined){
+ console.error("No localStorageSaver found for layer ",tile.layer.layerDef.id)
+ }
+ saver?.addTile(tile)
}
perLayerHierarchy.get(tile.layer.layerDef.id).registerTile(tile)
tile.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(tile))
@@ -223,10 +227,9 @@ export default class FeaturePipeline {
if (layer.maxAgeOfCache > 0) {
const saver = self.localStorageSavers.get(layer.id)
if(saver === undefined){
- console.warn("No local storage saver found for ", layer.id)
+ console.error("No local storage saver found for ", layer.id)
}else{
-
- saver.MarkVisited(tileId, new Date())
+ saver.MarkVisited(tileId, new Date())
}
}
self.freshnesses.get(layer.id).addTileLoad(tileId, new Date())
@@ -260,7 +263,7 @@ export default class FeaturePipeline {
maxZoomLevel: state.layoutToUse.clustering.maxZoom,
registerTile: (tile) => {
// We save the tile data for the given layer to local storage - data sourced from overpass
- self.localStorageSavers.get(tile.layer.layerDef.id).addTile(tile)
+ self.localStorageSavers.get(tile.layer.layerDef.id)?.addTile(tile)
perLayerHierarchy.get(source.layer.layerDef.id).registerTile(new RememberingSource(tile))
tile.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(tile))
@@ -422,7 +425,7 @@ export default class FeaturePipeline {
const tileIndex = Tiles.tile_index(paddedToZoomLevel, x, y)
downloadedLayers.forEach(layer => {
self.freshnesses.get(layer.id).addTileLoad(tileIndex, date)
- self.localStorageSavers.get(layer.id).MarkVisited(tileIndex, date)
+ self.localStorageSavers.get(layer.id)?.MarkVisited(tileIndex, date)
})
})
diff --git a/Models/Constants.ts b/Models/Constants.ts
index dde6bb842..e3874d3e6 100644
--- a/Models/Constants.ts
+++ b/Models/Constants.ts
@@ -2,7 +2,7 @@ import {Utils} from "../Utils";
export default class Constants {
- public static vNumber = "0.12.10";
+ public static vNumber = "0.12.11";
public static ImgurApiKey = '7070e7167f0a25a'
public static readonly mapillary_client_token_v4 = "MLY|4441509239301885|b40ad2d3ea105435bd40c7e76993ae85"
diff --git a/Models/ThemeConfig/PointRenderingConfig.ts b/Models/ThemeConfig/PointRenderingConfig.ts
index 8e047c24b..38ece18fc 100644
--- a/Models/ThemeConfig/PointRenderingConfig.ts
+++ b/Models/ThemeConfig/PointRenderingConfig.ts
@@ -47,7 +47,7 @@ export default class PointRenderingConfig extends WithContextLoader {
if (this.location.size == 0) {
throw "A pointRendering should have at least one 'location' to defined where it should be rendered. (At " + context + ".location)"
}
- this.icon = this.tr("icon", "");
+ this.icon = this.tr("icon", undefined);
this.iconBadges = (json.iconBadges ?? []).map((overlay, i) => {
let tr: TagRenderingConfig;
if (typeof overlay.then === "string" &&
@@ -65,8 +65,8 @@ export default class PointRenderingConfig extends WithContextLoader {
};
});
- const iconPath = this.icon.GetRenderValue({id: "node/-1"}).txt;
- if (iconPath.startsWith(Utils.assets_path)) {
+ const iconPath = this.icon?.GetRenderValue({id: "node/-1"})?.txt;
+ if (iconPath !== undefined && iconPath.startsWith(Utils.assets_path)) {
const iconKey = iconPath.substr(Utils.assets_path.length);
if (Svg.All[iconKey] === undefined) {
throw "Builtin SVG asset not found: " + iconPath;
@@ -200,7 +200,8 @@ export default class PointRenderingConfig extends WithContextLoader {
}
- const iconAndBadges = new Combine([this.GetSimpleIcon(tags), this.GetBadges(tags)])
+ const icon = this.GetSimpleIcon(tags)
+ const iconAndBadges = new Combine([icon, this.GetBadges(tags)])
.SetClass("block relative")
if (!options?.noSize) {
@@ -208,9 +209,21 @@ export default class PointRenderingConfig extends WithContextLoader {
} else {
iconAndBadges.SetClass("w-full h-full")
}
+
+ let label = this.GetLabel(tags)
+ let htmlEl : BaseUIElement;
+ if(icon === undefined && label === undefined){
+ htmlEl = undefined
+ }else if(icon === undefined){
+ htmlEl = label
+ }else if(label === undefined){
+ htmlEl = iconAndBadges
+ }else {
+ htmlEl = new Combine([iconAndBadges, label]).SetStyle("flex flex-col")
+ }
return {
- html: new Combine([iconAndBadges, this.GetLabel(tags)]).SetStyle("flex flex-col"),
+ html: htmlEl,
iconSize: [iconW, iconH],
iconAnchor: [anchorW, anchorH],
popupAnchor: [0, 3 - anchorH],
diff --git a/UI/AllThemesGui.ts b/UI/AllThemesGui.ts
index 0113ddbc1..3c83e2a49 100644
--- a/UI/AllThemesGui.ts
+++ b/UI/AllThemesGui.ts
@@ -8,6 +8,8 @@ import {Utils} from "../Utils";
import LanguagePicker from "./LanguagePicker";
import IndexText from "./BigComponents/IndexText";
import FeaturedMessage from "./BigComponents/FeaturedMessage";
+import Toggle from "./Input/Toggle";
+import {SubtleButton} from "./Base/SubtleButton";
export default class AllThemesGui {
constructor() {
@@ -15,16 +17,22 @@ export default class AllThemesGui {
try {
new FixedUiElement("").AttachTo("centermessage")
- const state = new UserRelatedState(undefined, undefined);
+ const state = new UserRelatedState(undefined);
const intro = new Combine([
+
LanguagePicker.CreateLanguagePicker(Translations.t.index.title.SupportedLanguages())
- .SetClass("absolute top-2 right-3"),
+
+ .SetClass("flex absolute top-2 right-3"),
new IndexText()
]);
new Combine([
intro,
new FeaturedMessage(),
new MoreScreen(state, true),
+ new Toggle(
+ undefined,
+ new SubtleButton(undefined, Translations.t.index.logIn).SetStyle("height:min-content").onClick(() => state.osmConnection.AttemptLogin()),
+ state.osmConnection.isLoggedIn),
Translations.t.general.aboutMapcomplete
.Subs({"osmcha_link": Utils.OsmChaLinkFor(7)})
.SetClass("link-underline"),
diff --git a/UI/BigComponents/BackgroundMapSwitch.ts b/UI/BigComponents/BackgroundMapSwitch.ts
index 5af1c305c..16fd17bb3 100644
--- a/UI/BigComponents/BackgroundMapSwitch.ts
+++ b/UI/BigComponents/BackgroundMapSwitch.ts
@@ -84,9 +84,16 @@ class SingleLayerSelectionButton extends Toggle {
previousLayer.setData(previousLayer.data ?? available.data)
options.currentBackground.setData(previousLayer.data)
})
+
+ options.currentBackground.addCallbackAndRunD(background => {
+ if (background.category === options.preferredType) {
+ previousLayer.setData(background)
+ }
+ })
- available.addCallbackAndRunD(availableLayer => {
+ available.addCallbackD(availableLayer => {
+ // Called whenever a better layer is available
if (previousLayer.data === undefined) {
// PreviousLayer is unset -> we definitively weren't using this category -> no need to switch
@@ -96,6 +103,11 @@ class SingleLayerSelectionButton extends Toggle {
// The previously used layer doesn't match the current layer -> no need to switch
return;
}
+
+ // Is the previous layer still valid? If so, we don't bother to switch
+ if(previousLayer.data.feature === null || GeoOperations.inside(locationControl.data, previousLayer.data.feature)){
+ return
+ }
if (availableLayer.category === options.preferredType) {
// Allright, we can set this different layer
@@ -112,12 +124,6 @@ class SingleLayerSelectionButton extends Toggle {
}
})
- options.currentBackground.addCallbackAndRunD(background => {
- if (background.category === options.preferredType) {
- previousLayer.setData(background)
- }
- })
-
this.activate = () => {
checkPreviousLayer()
if (available.data.category !== options.preferredType) {
diff --git a/UI/BigComponents/FeaturedMessage.ts b/UI/BigComponents/FeaturedMessage.ts
index aede8e416..508f1be0c 100644
--- a/UI/BigComponents/FeaturedMessage.ts
+++ b/UI/BigComponents/FeaturedMessage.ts
@@ -33,16 +33,11 @@ export default class FeaturedMessage extends Combine {
public static WelcomeMessages(): { start_date: Date, end_date: Date, message: string, featured_theme?: string }[] {
const all_messages: { start_date: Date, end_date: Date, message: string, featured_theme?: string }[] = []
- console.log("Constructing the list...", welcome_messages)
for (const i in welcome_messages) {
- console.log(i)
if (isNaN(Number(i))) {
continue
}
- console.log("> ", i)
const wm = welcome_messages[i]
- console.log(wm)
-
if (wm === null) {
continue
}
diff --git a/UI/BigComponents/ImportButton.ts b/UI/BigComponents/ImportButton.ts
index d03bfc45d..f42d0f88b 100644
--- a/UI/BigComponents/ImportButton.ts
+++ b/UI/BigComponents/ImportButton.ts
@@ -302,11 +302,10 @@ export default class ImportButton extends Toggle {
let action: OsmChangeAction & { getPreview(): Promise }
- const theme = o.state.layoutToUse.id
const changes = o.state.changes
let confirm: () => Promise
if (o.conflationSettings !== undefined) {
-
+ // Conflate the way
action = new ReplaceGeometryAction(
o.state,
o.feature,
@@ -323,6 +322,7 @@ export default class ImportButton extends Toggle {
}
} else {
+ // Upload the way to OSM
const geom = o.feature.geometry
let coordinates: [number, number][]
if (geom.type === "LineString") {
@@ -331,7 +331,6 @@ export default class ImportButton extends Toggle {
coordinates = geom.coordinates[0]
}
-
action = new CreateWayWithPointReuseAction(
o.newTags.data,
coordinates,
@@ -341,7 +340,6 @@ export default class ImportButton extends Toggle {
withinRangeOfM: 1,
ifMatches: new Tag("_is_part_of_building", "true"),
mode: "move_osm_point"
-
}]
)
@@ -364,7 +362,13 @@ export default class ImportButton extends Toggle {
})
})
- const confirmButton = new SubtleButton(o.image(), o.message)
+ const tagsExplanation = new VariableUiElement(o.newTags.map(tagsToApply => {
+ const tagsStr = tagsToApply.map(t => t.asHumanString(false, true)).join("&");
+ return Translations.t.general.add.importTags.Subs({tags: tagsStr});
+ }
+ )).SetClass("subtle")
+
+ const confirmButton = new SubtleButton(o.image(), new Combine([o.message, tagsExplanation]).SetClass("flex flex-col"))
confirmButton.onClick(async () => {
{
if (isImported.data) {
@@ -380,9 +384,7 @@ export default class ImportButton extends Toggle {
}
})
- const cancel = new SubtleButton(Svg.close_ui(), Translations.t.general.cancel).onClick(() => {
- importClicked.setData(false)
- })
+ const cancel = new SubtleButton(Svg.close_ui(), Translations.t.general.cancel).onClick(() => importClicked.setData(false))
return new Combine([confirmationMap, confirmButton, cancel]).SetClass("flex flex-col")
diff --git a/UI/DefaultGUI.ts b/UI/DefaultGUI.ts
index a4ac2ddee..ebce8f1a8 100644
--- a/UI/DefaultGUI.ts
+++ b/UI/DefaultGUI.ts
@@ -197,6 +197,7 @@ export default class DefaultGUI {
return;
}
isOpened.setData(false);
+ return true; // Unregister this caller - we only autoclose once
});
this.state.selectedElement.addCallbackAndRunD((_) => {
diff --git a/assets/layers/bike_repair_station/bike_repair_station.json b/assets/layers/bike_repair_station/bike_repair_station.json
index 58290f186..d737f8778 100644
--- a/assets/layers/bike_repair_station/bike_repair_station.json
+++ b/assets/layers/bike_repair_station/bike_repair_station.json
@@ -437,9 +437,9 @@
]
},
"render": {
- "en": "Report this bicycle pump as broken",
- "nl": "Rapporteer deze fietspomp als kapot",
- "de": "Melde diese Fahrradpumpe als kaputt"
+ "en": "Report this bicycle pump as broken",
+ "nl": "Rapporteer deze fietspomp als kapot",
+ "de": "Melde diese Fahrradpumpe als kaputt"
},
"id": "Email maintainer"
},
diff --git a/assets/layers/type_node/type_node.json b/assets/layers/type_node/type_node.json
index 4609041ed..7f9228a51 100644
--- a/assets/layers/type_node/type_node.json
+++ b/assets/layers/type_node/type_node.json
@@ -3,7 +3,8 @@
"description": "This is a priviliged meta_layer which exports _every_ point in OSM. This only works if zoomed below the point that the full tile is loaded (and not loaded via Overpass). Note that this point will also contain a property `parent_ways` which contains all the ways this node is part of as a list. This is mainly used for extremely specialized themes, which do advanced conflations. Expert use only.",
"minzoom": 18,
"source": {
- "osmTags": "id~node/.*"
+ "osmTags": "id~node/.*",
+ "maxCacheAge": 0
},
"mapRendering": null,
"name": "All OSM Nodes",
diff --git a/assets/themes/grb_import/grb.json b/assets/themes/grb_import/grb.json
index 0d6bd41bf..cccd57716 100644
--- a/assets/themes/grb_import/grb.json
+++ b/assets/themes/grb_import/grb.json
@@ -28,7 +28,6 @@
"overrideAll": {
"minzoom": 18
},
- "trackAllNodes": true,
"enableGeolocation": false,
"layers": [
{
@@ -59,14 +58,27 @@
"osmTags": "building~*",
"maxCacheAge": 0
},
+ "calculatedTags": [
+ "_grbNumber=(feat.properties.fixme?.match(/GRB thinks that this has number ([^;]+)/ ) ?? ['','none']) [1]"
+ ],
"mapRendering": [
{
"width": {
- "render": "2"
+ "render": "2",
+ "mappings": [
+ {
+ "if": "fixme~*",
+ "then": "5"
+ }
+ ]
},
"color": {
"render": "#00c",
"mappings": [
+ {
+ "if": "fixme~*",
+ "then": "#ff00ff"
+ },
{
"if": "building=house",
"then": "#a00"
@@ -90,6 +102,23 @@
}
]
}
+ },
+ {
+ "location": [
+ "point",
+ "centroid"
+ ],
+ "label": {
+ "mappings": [
+ {
+ "if": "addr:housenumber~*",
+ "then": "{addr:housenumber}
"
+ }
+ ]
+ },
+ "iconSize": {
+ "render": "40,40,center"
+ }
}
],
"title": "OSM-gebouw",
@@ -146,7 +175,135 @@
}
]
},
+ {
+ "id": "grb-housenumber",
+ "render": {
+ "nl": "Het huisnummer is {addr:housenumber}"
+ },
+ "question": {
+ "nl": "Wat is het huisnummer?"
+ },
+ "freeform": {
+ "key": "addr:housenumber"
+ },
+ "mappings": [
+ {
+ "if": {
+ "and": [
+ "not:addr:housenumber=yes",
+ "addr:housenumber="
+ ]
+ },
+ "then": {
+ "nl": "Geen huisnummer"
+ }
+ },
+ {
+ "if": {
+ "and": [
+ "addr:housenumber:={_grbNumber}",
+ "fixme="
+ ]
+ },
+ "then": "Het huisnummer is {_grbNumber}, wat overeenkomt met het GRB",
+ "hideInAnswer": {
+ "or": [
+ "_grbNumber=",
+ "_grbNumber=none",
+ "_grbNumber=no number"
+ ]
+ }
+ },
+ {
+ "if": {
+ "and": [
+ "addr:housenumber=",
+ "not:addr:housenumber=yes",
+ "fixme="
+ ]
+ },
+ "then": "Dit gebouw heeft geen nummer, net zoals in het GRB",
+ "hideInAnswer": "_grbNumber!=no number"
+ }
+ ]
+ },
+ {
+ "id": "grb-unit",
+ "question": "Wat is de wooneenheid-aanduiding?",
+ "render": {
+ "nl": "De wooneenheid-aanduiding is {addr:unit} "
+ },
+ "freeform": {
+ "key": "addr:unit"
+ },
+ "mappings": [
+ {
+ "if": "addr:unit=",
+ "then": "Geen wooneenheid-nummer"
+ }
+ ]
+ },
+ {
+ "id": "grb-street",
+ "render": {
+ "nl": "De straat is {addr:street}"
+ },
+ "freeform": {
+ "key": "addr:street"
+ },
+ "question": {
+ "nl": "Wat is de straat?"
+ }
+ },
+ {
+ "id": "grb-fixme",
+ "render": {
+ "nl": "De fixme is {fixme}"
+ },
+ "question": {
+ "nl": "Wat zegt de fixme?"
+ },
+ "freeform": {
+ "key": "fixme"
+ },
+ "mappings": [
+ {
+ "if": {
+ "and": [
+ "fixme="
+ ]
+ },
+ "then": {
+ "nl": "Geen fixme"
+ }
+ }
+ ]
+ },
+ {
+ "id": "grb-min-level",
+ "render": {
+ "nl": "Dit gebouw begint maar op de {building:min_level} verdieping"
+ },
+ "question": {
+ "nl": "Hoeveel verdiepingen ontbreken?"
+ },
+ "freeform": {
+ "key": "building:min_level",
+ "type": "pnat"
+ }
+ },
"all_tags"
+ ],
+ "filter": [
+ {
+ "id": "has-fixme",
+ "options": [
+ {
+ "osmTags": "fixme~*",
+ "question": "Heeft een FIXME"
+ }
+ ]
+ }
]
},
{
@@ -197,191 +354,6 @@
"all_tags"
]
},
- {
- "id": "osm-fixmes",
- "name": {
- "nl": "Fixmes op gebouwen"
- },
- "source": {
- "maxCacheAge": 0,
- "osmTags": {
- "and": [
- "fixme~*",
- "building~*"
- ]
- }
- },
- "calculatedTags": [
- "_grbNumber=(feat.properties.fixme?.match(/GRB thinks that this has number ([^;]+)/ ) ?? ['','none']) [1]"
- ],
- "title": {
- "render": {
- "nl": "{addr:street} {addr:housenumber}"
- },
- "mappings": [
- {
- "if": {
- "and": [
- "fixme~*"
- ]
- },
- "then": {
- "nl": "{fixme}"
- }
- }
- ]
- },
- "description": {
- "nl": "Dit gebouw heeft een foutmelding"
- },
- "tagRenderings": [
- {
- "id": "grb-housenumber",
- "render": {
- "nl": "Het huisnummer is {addr:housenumber}"
- },
- "question": {
- "nl": "Wat is het huisnummer?"
- },
- "freeform": {
- "key": "addr:housenumber"
- },
- "mappings": [
- {
- "if": {
- "and": [
- "not:addr:housenumber=yes",
- "addr:housenumber="
- ]
- },
- "then": {
- "nl": "Geen huisnummer"
- }
- },
- {
- "if": {
- "and": [
- "addr:housenumber:={_grbNumber}",
- "fixme="
- ]
- },
- "then": "Het huisnummer is {_grbNumber}, wat overeenkomt met het GRB",
- "hideInAnswer": {
- "or": [
- "_grbNumber=",
- "_grbNumber=none",
- "_grbNumber=no number"
- ]
- }
- },
- {
- "if": {
- "and": [
- "addr:housenumber=",
- "not:addr:housenumber=yes",
- "fixme="
- ]
- },
- "then": "Dit gebouw heeft geen nummer, net zoals in het GRB",
- "hideInAnswer": "_grbNumber!=no number"
- }
- ]
- },
- {
- "id": "grb-unit",
- "question": "Wat is de wooneenheid-aanduiding?",
- "render": {
- "nl": "De wooneenheid-aanduiding is {addr:unit} "
- },
- "freeform": {
- "key": "addr:unit"
- },
- "mappings": [
- {
- "if": "addr:unit=",
- "then": "Geen wooneenheid-nummer"
- }
- ]
- },
- {
- "id": "grb-street",
- "render": {
- "nl": "De straat is {addr:street}"
- },
- "freeform": {
- "key": "addr:street"
- },
- "question": {
- "nl": "Wat is de straat?"
- }
- },
- {
- "id": "grb-fixme",
- "render": {
- "nl": "De fixme is {fixme}"
- },
- "question": {
- "nl": "Wat zegt de fixme?"
- },
- "freeform": {
- "key": "fixme"
- },
- "mappings": [
- {
- "if": {
- "and": [
- "fixme="
- ]
- },
- "then": {
- "nl": "Geen fixme"
- }
- }
- ]
- },
- {
- "id": "grb-min-level",
- "render": {
- "nl": "Dit gebouw begint maar op de {building:min_level} verdieping"
- },
- "question": {
- "nl": "Hoeveel verdiepingen ontbreken?"
- },
- "freeform": {
- "key": "building:min_level",
- "type": "pnat"
- }
- }
- ],
- "mapRendering": [
- {
- "location": [
- "point",
- "centroid"
- ],
- "label": {
- "mappings": [
- {
- "if": "addr:housenumber~*",
- "then": "{addr:housenumber}
"
- }
- ]
- },
- "iconSize": {
- "render": "40,40,center"
- }
- },
- {
- "dashes": "2 2",
- "color": {
- "render": "#00f"
- },
- "width": {
- "render": "2"
- }
- }
- ]
- },
{
"id": "crab-addresses 2021-10-26",
"source": {
@@ -399,8 +371,10 @@
"point",
"centroid"
],
- "icon": "circle:#bb3322",
- "iconSize": "15,15,center"
+ "iconSize": "15,15,center",
+ "label": {
+ "render": "{HNRLABEL}
"
+ }
}
],
"calculatedTags": [
@@ -450,190 +424,6 @@
}
]
},
- {
- "id": "grb-fixmes",
- "name": {
- "nl": "Fixmes op gebouwen"
- },
- "source": {
- "maxCacheAge": 0,
- "osmTags": {
- "and": [
- "fixme~*",
- "building~*"
- ]
- }
- },
- "calculatedTags": [
- "_grbNumber=(feat.properties.fixme?.match(/GRB thinks that this has number ([^;]+)/ ) ?? ['','none']) [1]"
- ],
- "title": {
- "render": {
- "nl": "{addr:street} {addr:housenumber}"
- },
- "mappings": [
- {
- "if": {
- "and": [
- "fixme~*"
- ]
- },
- "then": {
- "nl": "{fixme}"
- }
- }
- ]
- },
- "description": {
- "nl": "Dit gebouw heeft een foutmelding"
- },
- "tagRenderings": [
- {
- "id": "grb-housenumber",
- "render": {
- "nl": "Het huisnummer is {addr:housenumber}"
- },
- "question": {
- "nl": "Wat is het huisnummer?"
- },
- "freeform": {
- "key": "addr:housenumber"
- },
- "mappings": [
- {
- "if": {
- "and": [
- "not:addr:housenumber=yes",
- "addr:housenumber="
- ]
- },
- "then": {
- "nl": "Geen huisnummer"
- }
- },
- {
- "if": {
- "and": [
- "addr:housenumber:={_grbNumber}",
- "fixme="
- ]
- },
- "then": "Het huisnummer is {_grbNumber}, wat overeenkomt met het GRB",
- "hideInAnswer": {
- "or": [
- "_grbNumber=",
- "_grbNumber=none",
- "_grbNumber=no number"
- ]
- }
- },
- {
- "if": {
- "and": [
- "addr:housenumber=",
- "not:addr:housenumber=yes",
- "fixme="
- ]
- },
- "then": "Dit gebouw heeft geen nummer, net zoals in het GRB",
- "hideInAnswer": "_grbNumber!=no number"
- }
- ]
- },
- {
- "id": "grb-unit",
- "question": "Wat is de wooneenheid-aanduiding?",
- "render": {
- "nl": "De wooneenheid-aanduiding is {addr:unit} "
- },
- "freeform": {
- "key": "addr:unit"
- },
- "mappings": [
- {
- "if": "addr:unit=",
- "then": "Geen wooneenheid-nummer"
- }
- ]
- },
- {
- "id": "grb-street",
- "render": {
- "nl": "De straat is {addr:street}"
- },
- "freeform": {
- "key": "addr:street"
- },
- "question": {
- "nl": "Wat is de straat?"
- }
- },
- {
- "id": "grb-fixme",
- "render": {
- "nl": "De fixme is {fixme}"
- },
- "question": {
- "nl": "Wat zegt de fixme?"
- },
- "freeform": {
- "key": "fixme"
- },
- "mappings": [
- {
- "if": {
- "and": [
- "fixme="
- ]
- },
- "then": {
- "nl": "Geen fixme"
- }
- }
- ]
- },
- {
- "id": "grb-min-level",
- "render": {
- "nl": "Dit gebouw begint maar op de {building:min_level} verdieping"
- },
- "question": {
- "nl": "Hoeveel verdiepingen ontbreken?"
- },
- "freeform": {
- "key": "building:min_level",
- "type": "pnat"
- }
- }
- ],
- "mapRendering": [
- {
- "location": [
- "point",
- "centroid"
- ],
- "iconSize": {
- "render": "40,40,center"
- },
- "label": {
- "mappings": [
- {
- "if": "addr:housenumber~*",
- "then": "{addr:housenumber}
"
- }
- ]
- }
- },
- {
- "width": {
- "render": "2"
- },
- "color": {
- "render": "#00f"
- }
- }
- ]
- },
{
"id": "GRB",
"source": {
@@ -691,7 +481,7 @@
},
{
"id": "Import-button",
- "render": "{import_button(OSM-buildings,building=$building; source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref, Upload this building to OpenStreetMap)}",
+ "render": "{import_button(OSM-buildings,building=$building; source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref; addr:street=$addr:street; addr:housenumber=$addr:housenumber, Upload this building to OpenStreetMap)}",
"mappings": [
{
"if": "_overlaps_with!=null",
diff --git a/langs/ca.json b/langs/ca.json
index fdd9e1a45..1648e4a92 100644
--- a/langs/ca.json
+++ b/langs/ca.json
@@ -1,162 +1,288 @@
{
- "image": {
- "addPicture": "Afegir foto",
- "uploadingPicture": "Pujant la teva imatge…",
- "uploadingMultiple": "Pujant {count} imatges…",
- "pleaseLogin": "Entra per pujar una foto",
- "willBePublished": "La teva foto serà publicada: ",
- "cco": "en domini públic",
- "ccbs": "sota llicència CC-BY-SA",
- "ccb": "sota la llicència CC-BY",
- "uploadFailed": "No s'ha pogut pujar la imatge. Tens Internet i es permeten API de tercers? El navegador Brave o UMatrix podria bloquejar-les.",
- "respectPrivacy": "Respecta la privacitat. No fotografiïs gent o matrícules. No facis servir imatges de Google Maps, Google Streetview o altres fonts amb copyright.",
- "uploadDone": "La teva imatge ha estat afegida. Gràcies per ajudar.",
- "dontDelete": "Cancel·lar",
- "doDelete": "Esborrar imatge",
- "isDeleted": "Esborrada"
- },
- "centerMessage": {
- "loadingData": "Carregant dades...",
- "zoomIn": "Amplia per veure o editar les dades",
- "ready": "Fet.",
- "retrying": "La càrrega de dades ha fallat. Tornant-ho a intentar... ({count})"
- },
- "index": {
- "#": "These texts are shown above the theme buttons when no theme is loaded",
- "intro": "MapComplete és un visor i editor d'OpenStreetMap, que et mostra informació sobre un tema específic",
- "title": "Benvingut/da a MapComplete"
- },
- "general": {
- "loginWithOpenStreetMap": "Entra a OpenStreetMap",
- "welcomeBack": "Has entrat, benvingut.",
- "loginToStart": "Entra per contestar aquesta pregunta",
- "search": {
- "search": "Cerca una ubicació",
- "searching": "Cercant...",
- "nothing": "Res trobat.",
- "error": "Alguna cosa no ha sortit bé..."
+ "image": {
+ "addPicture": "Afegir foto",
+ "uploadingPicture": "Pujant la teva imatge…",
+ "uploadingMultiple": "Pujant {count} imatges…",
+ "pleaseLogin": "Entrar per pujar una foto",
+ "willBePublished": "La teva foto serà publicada: ",
+ "cco": "en domini públic",
+ "ccbs": "sota llicència CC-BY-SA",
+ "ccb": "sota la llicència CC-BY",
+ "uploadFailed": "No s'ha pogut pujar la imatge. Tens Internet i es permeten API de tercers? El navegador Brave o UMatrix podria bloquejar-les.",
+ "respectPrivacy": "Respecta la privacitat. No fotografiïs gent o matrícules. No facis servir imatges de Google Maps, Google Streetview o altres fonts amb copyright.",
+ "uploadDone": "La teva imatge ha estat afegida. Gràcies per ajudar.",
+ "dontDelete": "Cancel·lar",
+ "doDelete": "Esborrar imatge",
+ "isDeleted": "Esborrada",
+ "uploadMultipleDone": "{count} imatges afegides. Gràcies per ajudar.",
+ "toBig": "La teva imatge és massa gran ara que medeix {actual_size}. Usa imatges de com a molt {max_size}"
},
- "returnToTheMap": "Tornar al mapa",
- "save": "Desar",
- "cancel": "Cancel·lar",
- "skip": "Saltar aquesta pregunta",
- "oneSkippedQuestion": "Has ignorat una pregunta",
- "skippedQuestions": "Has ignorat algunes preguntes",
- "number": "nombre",
- "osmLinkTooltip": "Mira aquest objecte a OpenStreetMap per veure historial i altres opcions d'edició",
- "add": {
- "addNew": "Afegir {category} aquí",
- "title": "Vols afegir un punt?",
- "intro": "Has marcat un lloc on no coneixem les dades.
",
- "pleaseLogin": "Entra per afegir un nou punt",
- "zoomInFurther": "Apropa per afegir un punt.",
- "stillLoading": "Les dades es segueixen carregant. Espera una mica abans d'afegir cap punt.",
- "confirmIntro": "Afegir {title} aquí?
El punt que estàs creant el veurà tothom. Només afegeix coses que realment existeixin. Moltes aplicacions fan servir aquestes dades.",
- "confirmButton": "Afegir {category} aquí",
- "openLayerControl": "Obrir el control de capes",
- "layerNotEnabled": "La capa {layer} no està habilitada. Fes-ho per poder afegir un punt a aquesta capa"
+ "centerMessage": {
+ "loadingData": "Carregant dades…",
+ "zoomIn": "Amplia per veure o editar les dades",
+ "ready": "Fet.",
+ "retrying": "La càrrega de dades ha fallat. Tornant-ho a intentar en ({count}) segons…"
},
- "pickLanguage": "Tria idioma: ",
- "about": "Edita facilment i afegeix punts a OpenStreetMap d'una temàtica determinada",
- "nameInlineQuestion": "{category}: El seu nom és $$$",
- "noNameCategory": "{category} sense nom",
- "questions": {
- "phoneNumberOf": "Quin és el telèfon de {category}?",
- "phoneNumberIs": "El número de telèfon de {category} és {phone}",
- "websiteOf": "Quina és la pàgina web de {category}?",
- "websiteIs": "Pàgina web: {website}",
- "emailOf": "Quina és l'adreça de correu-e de {category}?",
- "emailIs": "L'adreça de correu de {category} és {email}"
+ "index": {
+ "#": "Aquests textos es mostren sobre els botons de les peticions quan no hi ha petició carregada",
+ "intro": "MapComplete és un visor i editor d'OpenStreetMap, que et mostra informació sobre elements d'una petició específica i et permet actualitzar-los.",
+ "title": "Benvingut/da a MapComplete",
+ "featuredThemeTitle": "Destacades aquesta setmana",
+ "pickTheme": "Tria una petició de sota per començar."
},
- "openStreetMapIntro": "Un mapa obert
No seria genial si hagués un únic mapa, que tothom pogués utilitzar i editar lliurement?Un sol lloc on emmagatzemar tota la informació geogràfica? Llavors tots aquests llocs web amb mapes diferents petits i incompatibles (que sempre estaran desactulitzats) ja no serien necessaris.
OpenStreetMap és aquest mapa. Les dades del mapa es poden utilitzar de franc (amb atribució i publicació de canvis en aquestes dades). A més a més, tothom pot agregar lliurement noves dades i corregir errors. De fet, aquest lloc web també fa servir OpenStreetMap. Totes les dades provenen d'allà i les teves respostes i correccions també s'afegiran allà.
Moltes persones i aplicacions ja utilitzen OpenStreetMap: Maps.me, OsmAnd, però també els mapes de Facebook, Instagram, Apple i Bing són (en part) impulsats per OpenStreetMap. Si canvies alguna cosa aquí també es reflectirà en aquestes aplicacions en la seva propera actualització.
",
- "sharescreen": {
- "intro": "Comparteix aquest mapa
Comparteix aquest mapa copiant l'enllaç de sota i enviant-lo a amics i família:",
- "addToHomeScreen": "Afegir-lo a la pantalla d'inici
Pots afegir aquesta web a la pantalla d'inici del teu smartphone per a que es vegi més nadiu. Apreta al botó 'afegir a l'inici' a la barra d'adreces URL per fer-ho.",
- "embedIntro": "Inclou-ho a la teva pàgina web
Inclou aquest mapa dins de la teva pàgina web.
T'animem a que ho facis, no cal que demanis permís.
És de franc, i sempre ho serà. A més gent que ho faci servir més valuós serà.",
- "copiedToClipboard": "Enllaç copiat al portapapers",
- "thanksForSharing": "Gràcies per compartir",
- "editThisTheme": "Editar aquest repte",
- "editThemeDescription": "Afegir o canviar preguntes d'aquest repte",
- "fsUserbadge": "Activar el botó d'entrada",
- "fsSearch": "Activar la barra de cerca",
- "fsWelcomeMessage": "Mostra el missatge emergent de benvinguda i pestanyes associades",
- "fsLayers": "Activar el control de capes",
- "fsLayerControlToggle": "Iniciar el control de capes avançat",
- "fsAddNew": "Activar el botó d'afegir nou PDI'",
- "fsGeolocation": "Activar el botó de 'geolocalitza'm' (només mòbil)",
- "fsIncludeCurrentBackgroundMap": "Incloure l'opció de fons actual {name}",
- "fsIncludeCurrentLayers": "Incloure les opcions de capa actual",
- "fsIncludeCurrentLocation": "Incloure localització actual"
+ "general": {
+ "loginWithOpenStreetMap": "Entrar a OpenStreetMap",
+ "welcomeBack": "Has entrat, benvingut/da.",
+ "loginToStart": "Entra per contestar aquesta pregunta",
+ "search": {
+ "search": "Cerca una ubicació",
+ "searching": "Cercant…",
+ "nothing": "Res trobat…",
+ "error": "Alguna cosa no ha sortit bé…"
+ },
+ "returnToTheMap": "Tornar al mapa",
+ "save": "Desar",
+ "cancel": "Cancel·lar",
+ "skip": "Saltar aquesta pregunta",
+ "oneSkippedQuestion": "Has ignorat una pregunta",
+ "skippedQuestions": "Has ignorat algunes preguntes",
+ "number": "nombre",
+ "osmLinkTooltip": "Navega a OpenStreetMap sobre aquest objecte per veure historial i altres opcions d'edició",
+ "add": {
+ "addNew": "Afegir {category} aquí",
+ "title": "Vols afegir un punt?",
+ "intro": "Has marcat un lloc on no coneixem les dades.
",
+ "pleaseLogin": "Entra per afegir un nou punt",
+ "zoomInFurther": "Apropa per afegir un punt.",
+ "stillLoading": "Les dades es segueixen carregant. Espera una mica abans d'afegir cap punt.",
+ "confirmIntro": "Afegir {title} aquí?
El punt que estàs creant el veurà tothom. Només afegeix coses que realment existeixin. Moltes aplicacions fan servir aquestes dades.",
+ "confirmButton": "Afegir {category} aquí",
+ "openLayerControl": "Obrir el control de capes",
+ "layerNotEnabled": "La capa {layer} no està habilitada. Fes-ho per poder afegir un punt a aquesta capa",
+ "warnVisibleForEveryone": "La teva contribució serà vista per tothom",
+ "disableFilters": "Deshabilitar tots els filtres",
+ "disableFiltersExplanation": "Alguns elements s'amagaran en passar un filtre",
+ "addNewMapLabel": "Afegir nou element",
+ "presetInfo": "El nou PDI tindrà les etiquetes {tags}",
+ "zoomInMore": "Ampliar per importar aquest element",
+ "hasBeenImported": "Aquest punt ja ha estat importat"
+ },
+ "pickLanguage": "Tria idioma: ",
+ "about": "Edita facilment i afegeix punts a OpenStreetMap d'una petició determinada",
+ "nameInlineQuestion": "{category}: El seu nom és $$$",
+ "noNameCategory": "{category} sense nom",
+ "questions": {
+ "phoneNumberOf": "Quin és el telèfon de {category}?",
+ "phoneNumberIs": "El número de telèfon de {category} és {phone}",
+ "websiteOf": "Quina és la pàgina web de {category}?",
+ "websiteIs": "Pàgina web: {website}",
+ "emailOf": "Quina és l'adreça de correu-e de {category}?",
+ "emailIs": "L'adreça de correu d'aquesta {category} és {email}"
+ },
+ "openStreetMapIntro": "Un mapa obert
Un que tothom pogués utilitzar i editar lliurement. Un sol lloc on emmagatzemar tota la informació geogràfica. Llavors tots aquests llocs web amb mapes diferents petits i incompatibles (que sempre estaran desactualitzats) ja no serien necessaris.OpenStreetMap no és el mapa de l'enemic. Les dades del mapa es poden utilitzar de franc (amb atribució i publicació de canvis en aquestes dades). A més a més, tothom pot agregar lliurement noves dades i corregir errors. Aquest lloc web també fa servir OpenStreetMap. Totes les dades provenen d'allà i les teves respostes i correccions també s'afegiran allà.
Moltes persones i aplicacions ja utilitzen OpenStreetMap: Organic Maps, OsmAnd, però també els mapes de Facebook, Instagram, Apple i Bing són (en part) impulsats per OpenStreetMap. .
",
+ "sharescreen": {
+ "intro": "Comparteix aquest mapa
Comparteix aquest mapa copiant l'enllaç de sota i enviant-lo a amics i família:",
+ "addToHomeScreen": "Afegir-lo a la pantalla d'inici
Pots afegir aquesta web a la pantalla d'inici del teu smartphone per a que es vegi més nadiu. Apreta al botó 'Afegir a l'inici' a la barra d'adreces URL per fer-ho.",
+ "embedIntro": "Inclou-ho a la teva pàgina web
Inclou aquest mapa dins de la teva pàgina web.
T'animem a que ho facis, no cal que demanis permís.
És de franc, i sempre ho serà. A més gent que ho faci servir més valuós serà.",
+ "copiedToClipboard": "Enllaç copiat al portapapers",
+ "thanksForSharing": "Gràcies per compartir.",
+ "editThisTheme": "Editar aquest repte",
+ "editThemeDescription": "Afegir o canviar preguntes d'aquesta petició",
+ "fsUserbadge": "Activar el botó d'entrada",
+ "fsSearch": "Activar la barra de cerca",
+ "fsWelcomeMessage": "Mostra el missatge emergent de benvinguda i pestanyes associades",
+ "fsLayers": "Activar el control de capes",
+ "fsLayerControlToggle": "Iniciar el control de capes avançat",
+ "fsAddNew": "Activar el botó d'afegir nou PDI'",
+ "fsGeolocation": "Activar el botó de 'geolocalitza'm' (només mòbil)",
+ "fsIncludeCurrentBackgroundMap": "Incloure l'opció de fons actual {name}",
+ "fsIncludeCurrentLayers": "Incloure les opcions de capa actual",
+ "fsIncludeCurrentLocation": "Incloure localització actual"
+ },
+ "morescreen": {
+ "intro": "Més peticions
T'agrada captar dades?
Hi ha més capes disponibles.",
+ "requestATheme": "Si vols que et fem una petició pròpia , demana-la al registre d'incidències",
+ "streetcomplete": "Una altra aplicació similar és StreetComplete.",
+ "createYourOwnTheme": "Crea la teva pròpia petició completa de MapComplete des de zero",
+ "previouslyHiddenTitle": "Peticions visitades i amagades",
+ "hiddenExplanation": "Aquestes peticions només funcionen amb l'enllaç. Has descobert {hidden_discovered} de {total_hidden} peticions amagades."
+ },
+ "readYourMessages": "Llegeix tots els teus missatges d'OpenStreetMap abans d'afegir nous punts.",
+ "fewChangesBefore": "Contesta unes quantes preguntes sobre punts existents abans d'afegir-ne un de nou.",
+ "goToInbox": "Obrir missatges",
+ "getStartedLogin": "Entra a OpenStreetMap per començar",
+ "getStartedNewAccount": " o crea un nou compte",
+ "noTagsSelected": "No s'han seleccionat etiquetes",
+ "backgroundMap": "Mapa de fons",
+ "layerSelection": {
+ "zoomInToSeeThisLayer": "Amplia per veure aquesta capa",
+ "title": "Seleccionar capes"
+ },
+ "weekdays": {
+ "abbreviations": {
+ "monday": "Dil",
+ "tuesday": "Dim",
+ "wednesday": "Dic",
+ "thursday": "Dij",
+ "friday": "Div",
+ "saturday": "Dis",
+ "sunday": "Diu"
+ },
+ "monday": "Dilluns",
+ "tuesday": "Dimarts",
+ "wednesday": "Dimecres",
+ "thursday": "Dijous",
+ "friday": "Divendres",
+ "saturday": "Dissabte",
+ "sunday": "Diumenge"
+ },
+ "opening_hours": {
+ "open_during_ph": "Durant festes està",
+ "opensAt": "des de",
+ "openTill": "fins",
+ "not_all_rules_parsed": "L'horari és complex. Les normes següents seran ignorades en l'entrada:",
+ "closed_until": "Tancat fins {date}",
+ "closed_permanently": "Tancat - sense dia d'obertura conegut",
+ "ph_not_known": " ",
+ "ph_closed": "tancat",
+ "ph_open": "tancat",
+ "error_loading": "Error: no s'han pogut veure aquests horaris.",
+ "open_24_7": "Obert sobre les",
+ "ph_open_as_usual": "obert com sempre",
+ "loadingCountry": "Determinant país…"
+ },
+ "attribution": {
+ "attributionContent": "Totes les dades provenen d'OpenStreetMap, i es poden reutilitzar lliurement sota la Llicència Oberta de Base de Dades (ODbL).
",
+ "attributionTitle": "Avís d’atribució",
+ "mapContributionsByAndHidden": "Les dades mostrades tenen edicions fetes per {contributors} i {hiddenCount} col·laboradors més",
+ "mapContributionsBy": "Les dades mostrades tenen edicions fetes per {contributors}",
+ "iconAttribution": {
+ "title": "Icones utilitzades"
+ },
+ "themeBy": "Tema mantingut per {author}",
+ "codeContributionsBy": "MapComplete ha estat fet per {contributors} i {hiddenCount} més contribuïdors"
+ },
+ "pdf": {
+ "attr": "Dades del mapa © Contribuïdors d'OpenStreetMap, reutilitzable sota ODbL",
+ "attrBackground": "Capa de fons: {background}",
+ "generatedWith": "Generat amb MapComplete.osm.be",
+ "versionInfo": "v{version} - generat el {date}"
+ },
+ "loading": "Carregant...",
+ "download": {
+ "downloadAsPdf": "Baixar un PDF del mapa actual",
+ "downloadCSVHelper": "Compatible amb LibreOffice Calc, Excel, …",
+ "licenseInfo": "Avís de drets de còpia
Les dades proveïdes estan sota ODbL. Es poden reutilitzar de forma gratuïta, però - l'atribució a © Contribuïdors d'OpenStreetMap és obligatòria
- Qualsevol canvi ha de seguir la llicència
Llegeix sencer l'avís de drets de còpia per més detalls.",
+ "title": "Baixar dades visibles",
+ "downloadGeojson": "Baixar dades visibles com a GeoJSON",
+ "downloadGeoJsonHelper": "Compatible amb QGIS, ArcGIS, ESRI, …",
+ "downloadCSV": "Baixar dades visibles com a CSV",
+ "noDataLoaded": "No s'han carregat dades. La baixada estarà disponible aviat",
+ "includeMetaData": "Incloure metadades (darrer editor, valors calculats, ...)",
+ "downloadAsPdfHelper": "Ideal per imprimir el mapa actual",
+ "exporting": "Exportant…"
+ },
+ "loginOnlyNeededToEdit": "Si vols ajudar a editar el mapa",
+ "testing": "Proves - Els canvis no es desaran",
+ "customThemeIntro": "Peticions personalitzades
Aquestes són les peticions generades pels usuaris que ens han visitat abans.",
+ "wikipedia": {
+ "createNewWikidata": "Crear un ítem de Wikidata",
+ "noWikipediaPage": "Aquest ítem de Wikidata no té cap pàgina de Viquipèdia corresponent.",
+ "wikipediaboxTitle": "Viquipèdia",
+ "loading": "Carregant Viquipèdia...",
+ "doSearch": "Cerca adalt per veure els resultats",
+ "noResults": "Res trobat per {search}",
+ "searchWikidata": "Cercar a Wikidata",
+ "failed": "Ha fallat la càrrega d'entrada de la Viquipèdia"
+ },
+ "histogram": {
+ "error_loading": "No s'ha pogut carregar l'histograma"
+ },
+ "openTheMap": "Obrir el mapa",
+ "aboutMapcomplete": "Sobre MapComplete
Usa-ho per afegir informació a OpenStreetMap amb una petició. Respon preguntes i en minuts les teves contribucions estaran disponibles arreu. La persona gestionadora defineix elements, preguntes i idiomes per a fer-ho possible.
Troba més info
MapComplete sempre ofereix el següent pas per aprendre'n més sobre OpenStreetMap.
- Inclòs en una pàgina web et porta a MapComplete a pantalla completa
- Aquesta versió ofereix informació sobre OpenStreetMap
- Veure funciona sense entrar però editar o contribuir requereix un compte d'OSM.
- Si no has entrat et demanarà que ho facis.
- Responent una simple pregunta, pots afegir nous punts al mapa
- Després d'una estona es mostraran les etiquetes actuals , i després els enllaços a la wiki.
Has trobat alguna incidència? Tens alguna petició ? Vols ajudar a traduir? Vés a per accedir al codi font o al registre d'incidències.
Vols veure els teus progressos ? Segueix el recompte d'edicions a OsmCha.
"
},
- "morescreen": {
- "intro": "Més peticions
T'agrada captar dades?
Hi ha més capes disponibles.",
- "requestATheme": "Si vols que et fem una petició pròpia , demana-la aquí.",
- "streetcomplete": "Una altra aplicació similar és StreetComplete.",
- "createYourOwnTheme": "Crea la teva pròpia petició completa de MapComplete des de zero."
+ "favourite": {
+ "panelIntro": "La teva interfície personal
Activa les teves capes favorites de totes les interfícies oficials",
+ "loginNeeded": "Entrar
El disseny personalitzat només està disponible pels usuaris d'OpenstreetMap",
+ "reload": "Recarregar dades"
},
- "readYourMessages": "Llegeix tots els teus missatges d'OpenStreetMap abans d'afegir nous punts.",
- "fewChangesBefore": "Contesta unes quantes preguntes sobre punts existents abans d'afegir-ne un de nou.",
- "goToInbox": "Obrir missatges",
- "getStartedLogin": "Entra a OpenStreetMap per començar",
- "getStartedNewAccount": " o crea un nou compte",
- "noTagsSelected": "No s'han seleccionat etiquetes",
- "backgroundMap": "Mapa de fons",
- "layerSelection": {
- "zoomInToSeeThisLayer": "Amplia per veure aquesta capa"
+ "reviews": {
+ "plz_login": "Entra per deixar una revisió",
+ "write_a_comment": "Deixa una revisió…",
+ "no_reviews_yet": "No hi ha revisions encara. Sigues el primer a escriure'n una i ajuda al negoci i a les dades lliures!",
+ "name_required": "És requerit un nom per mostrar i crear revisions",
+ "title_singular": "Una revisió",
+ "title": "{count} revisions",
+ "saved": "Revisió compartida. Gràcies per compartir!",
+ "saving_review": "Desant…",
+ "no_rating": "Sense qualificació",
+ "tos": "Si crees una ressenya estàs d'acord amb els Termes de Servei i política de privacitat de Mangrove.reviews",
+ "posting_as": "Enviat com",
+ "attribution": "Les ressenyes funcionen gràcies a Mangrove Reviews i estan disponibles sota CC-BY 4.0.",
+ "i_am_affiliated": "Tinc alguna filiació amb aquest objecte
MArca-ho si n'ets cap, creador, treballador, …",
+ "affiliated_reviewer_warning": "(Ressenya afiliada)"
},
- "weekdays": {
- "abbreviations": {
- "monday": "Dil",
- "tuesday": "Dim",
- "wednesday": "Dic",
- "thursday": "Dij",
- "friday": "Div",
- "saturday": "Dis",
- "sunday": "Diu"
- },
- "monday": "Dilluns",
- "tuesday": "Dimarts",
- "wednesday": "Dimecres",
- "thursday": "Dijous",
- "friday": "Divendres",
- "saturday": "Dissabte",
- "sunday": "Diumenge"
+ "split": {
+ "split": "Tallar",
+ "loginToSplit": "Has d'entrar per poder tallar una carretera",
+ "splitTitle": "Tria al mapa on tallar aquesta carretera",
+ "hasBeenSplit": "Has tallat aquesta via",
+ "cancel": "Cancel·lar",
+ "inviteToSplit": "Talla aquesta carretera en trossos més petits. Això et permetrà afegir informacions diferents a les parts."
},
- "opening_hours": {
- "open_during_ph": "Durant festes aquest servei és",
- "opensAt": "des de",
- "openTill": "fins",
- "not_all_rules_parsed": "L'horari d'aquesta botiga és complicat. Les normes següents seran ignorades en l'entrada:",
- "closed_until": "Tancat fins {date}",
- "closed_permanently": "Tancat - sense dia d'obertura conegut",
- "ph_not_known": " ",
- "ph_closed": "tancat",
- "ph_open": "tancat"
+ "delete": {
+ "isDeleted": "Aquest element s'esborrarà",
+ "explanations": {
+ "selectReason": "Selecciona per què s'hauria d'esborrar aquest element",
+ "hardDelete": "Aquest punt s'esborrarà a OpenStreetMap. Es podria recuperar per part d'un contribuïdor experimentat",
+ "softDelete": "Aquest element s'actualitzarà i s'amagarà d'aquesta aplicació. {reason}"
+ },
+ "reasons": {
+ "test": "És una prova - l'element realment no existeix.",
+ "duplicate": "Aquest punt és un element duplicat",
+ "disused": "Aquest element ja no funciona o s'ha eliminat",
+ "notFound": "No es pot trobar l'element"
+ },
+ "readMessages": "Tens missatges sense llegir. Llegeix això abans d'esborrar un punt - algú potser t'ha escrit",
+ "safeDelete": "Aquest punt es pot esborrar amb seguretat.",
+ "cancel": "Cancel·lar",
+ "delete": "Esborrar",
+ "partOfOthers": "Aquest punt és part d'una via o relació i no es pot esborrar directament.",
+ "isntAPoint": "Només es poden esborrar punts, l'element seleccionat és una via, àrea o relació.",
+ "onlyEditedByLoggedInUser": "Aquest punt només pot ser editat per tu, el pots esborrar amb seguretat.",
+ "whyDelete": "Per què s'hauria d'esborrar aquest punt?",
+ "cannotBeDeleted": "Aquest element no pot ser esborrat",
+ "loginToDelete": "Has d'entrar per esborrar un punt",
+ "notEnoughExperience": "Aquest punt l'ha fet una altra persona.",
+ "useSomethingElse": "Utilitza un altre editor d'OpenStreetMap per esborrar-lo",
+ "loading": "Inspeccionant propietats per si aquest element pot ser esborrat."
},
- "attribution": {
- "attributionContent": "Totes les dades provenen d'OpenStreetMap, i es poden reutilitzar lliurement sota la Llicència Oberta de Base de Dades (ODbL).
",
- "attributionTitle": "Avís d’atribució",
- "mapContributionsByAndHidden": "Les dades mostrades tenen edicions fetes per {contributors} i {hiddenCount} col·laboradors més",
- "mapContributionsBy": "Les dades mostrades tenen edicions fetes per {contributors}",
- "iconAttribution": {
- "title": "Icones utilitzades"
- },
- "themeBy": "Tema mantingut per {author}"
+ "move": {
+ "inviteToMoveAgain": "Moure aquest punt un altre cop",
+ "whyMove": "Per què vols moure aquest punt?",
+ "reasons": {
+ "reasonRelocation": "L'objecte ha estat recol·locat a una localització totalment diferent",
+ "reasonInaccurate": "La localització d'aquest objecte no és ajustada i s'hauria de moure uns metres"
+ },
+ "confirmMove": "Moure aquí",
+ "isRelation": "Aquest element és una relació i no es pot moure",
+ "inviteToMove": {
+ "reasonRelocation": "Mou aquest objecte a un altre lloc perquè l'han recolocat",
+ "generic": "Moure aquest punt",
+ "reasonInaccurate": "Ajusta la situació del punt"
+ },
+ "cancel": "Cancel·lar moviment",
+ "partOfAWay": "Aquest element és part d'una altra via. Fes servir un altre editor per moure'l.",
+ "pointIsMoved": "Has mogut el punt",
+ "loginToMove": "Has d'entrar per moure aquest punt",
+ "moveTitle": "Moure aquest punt",
+ "partOfRelation": "Aquest element és part d'una relació. Fes servir un altre editor per moure'l.",
+ "isWay": "Aquest element és una via. Fes servir un altre editor d'OpenStreetMap per moure'l.",
+ "zoomInFurther": "Amplia per confirmar aquest moviment",
+ "cannotBeMoved": "Aquest element no es pot moure.",
+ "selectReason": "Per què mous aquest objecte?"
+ },
+ "multi_apply": {
+ "autoApply": "Quan canvies els atributs {attr_names}, aquests també es canviaran a d'altres {count} objectes"
}
- },
- "favourite": {
- "panelIntro": "La teva interfície personal
Activa les teves capes favorites de totes les interfícies oficials",
- "loginNeeded": "Entrar
El disseny personalizat només està disponible pels usuaris d' OpenstreetMap",
- "reload": "Recarregar dades"
- },
- "reviews": {
- "plz_login": "Entra per deixar una revisió",
- "write_a_comment": "Deixa una revisió…",
- "no_reviews_yet": "No hi ha revisions encara. Sigues el primer a escriure'n una i ajuda al negoci i a les dades lliures!",
- "name_required": "És requerit un nom per mostrar i crear revisions",
- "title_singular": "Una revisió",
- "title": "{count} revisions",
- "saved": "Revisió compartida. Gràcies per compartir!",
- "saving_review": "Desant…"
- }
}
diff --git a/langs/de.json b/langs/de.json
index 6d0addc48..6f094830a 100644
--- a/langs/de.json
+++ b/langs/de.json
@@ -1,288 +1,288 @@
{
- "image": {
- "addPicture": "Bild hinzufügen",
- "uploadingPicture": "Bild wird hochgeladen…",
- "uploadingMultiple": "{count} Bilder hochladen…",
- "pleaseLogin": "Bitte einloggen, um ein Bild hinzuzufügen",
- "willBePublished": "Ihr Bild wird veröffentlicht: ",
- "cco": "als 'Public Domain'",
- "ccbs": "unter der 'CC-BY-SA-Lizenz'",
- "ccb": "unter der 'CC-BY-Lizenz'",
- "uploadFailed": "Wir konnten Ihr Bild nicht hochladen. Haben Sie eine aktive Internetverbindung und sind APIs von Dritten erlaubt? Der Brave Browser oder UMatrix blockieren diese eventuell.",
- "respectPrivacy": "Bitte respektieren Sie die Privatsphäre. Fotografieren Sie weder Personen noch Nummernschilder. Benutzen Sie keine urheberrechtlich geschützten Quellen wie z.B. Google Maps oder Google Streetview.",
- "uploadDone": "Ihr Bild wurde hinzugefügt. Vielen Dank für Ihre Hilfe!",
- "dontDelete": "Abbrechen",
- "doDelete": "Bild entfernen",
- "isDeleted": "Gelöscht",
- "uploadMultipleDone": "{count} Bilder wurden hinzugefügt. Vielen Dank für die Hilfe!",
- "toBig": "Ihr Bild ist zu groß, da es {actual_size} ist. Bitte verwenden Sie Bilder von höchstens {max_size}"
- },
- "centerMessage": {
- "loadingData": "Daten werden geladen…",
- "zoomIn": "Ausschnitt vergrößern, um Daten anzuzeigen oder zu bearbeiten",
- "ready": "Erledigt!",
- "retrying": "Laden von Daten fehlgeschlagen. Erneuter Versuch in {count} Sekunden …"
- },
- "index": {
- "#": "Dieser Text wird über die Thema-Auswahlschaltfläche gezeigt, wenn kein Thema geladen ist",
- "title": "Willkommen bei MapComplete",
- "intro": "MapComplete ist eine OpenStreetMap-Anwendung, mit der Informationen zu Objekten eines bestimmten Themas angezeigt und angepasst werden können.",
- "pickTheme": "Wähle unten ein Thema, um zu starten.",
- "featuredThemeTitle": "Diese Woche im Blickpunkt"
- },
- "general": {
- "loginWithOpenStreetMap": "Bei OpenStreetMap anmelden",
- "welcomeBack": "Sie sind eingeloggt, willkommen zurück!",
- "loginToStart": "Anmelden, um diese Frage zu beantworten",
- "search": {
- "search": "Einen Ort suchen",
- "searching": "Suchen …",
- "nothing": "Nichts gefunden…",
- "error": "Etwas ging schief…"
+ "image": {
+ "addPicture": "Bild hinzufügen",
+ "uploadingPicture": "Bild wird hochgeladen…",
+ "uploadingMultiple": "{count} Bilder hochladen…",
+ "pleaseLogin": "Bitte einloggen, um ein Bild hinzuzufügen",
+ "willBePublished": "Ihr Bild wird veröffentlicht: ",
+ "cco": "als 'Public Domain'",
+ "ccbs": "unter der 'CC-BY-SA-Lizenz'",
+ "ccb": "unter der 'CC-BY-Lizenz'",
+ "uploadFailed": "Wir konnten Ihr Bild nicht hochladen. Haben Sie eine aktive Internetverbindung und sind APIs von Dritten erlaubt? Der Brave Browser oder UMatrix blockieren diese eventuell.",
+ "respectPrivacy": "Bitte respektieren Sie die Privatsphäre. Fotografieren Sie weder Personen noch Nummernschilder. Benutzen Sie keine urheberrechtlich geschützten Quellen wie z.B. Google Maps oder Google Streetview.",
+ "uploadDone": "Ihr Bild wurde hinzugefügt. Vielen Dank für Ihre Hilfe!",
+ "dontDelete": "Abbrechen",
+ "doDelete": "Bild entfernen",
+ "isDeleted": "Gelöscht",
+ "uploadMultipleDone": "{count} Bilder wurden hinzugefügt. Vielen Dank für die Hilfe!",
+ "toBig": "Ihr Bild ist zu groß, da es {actual_size} ist. Bitte verwenden Sie Bilder von höchstens {max_size}"
},
- "returnToTheMap": "Zurück zur Karte",
- "save": "Speichern",
- "cancel": "Abbrechen",
- "skip": "Frage überspringen",
- "oneSkippedQuestion": "Eine Frage wurde übersprungen",
- "skippedQuestions": "Einige Fragen wurden übersprungen",
- "number": "Zahl",
- "osmLinkTooltip": "Dieses Element auf OpenStreetMap durchsuchen für den Verlauf und weitere Bearbeitungsmöglichkeiten",
- "add": {
- "addNew": "Hier eine neue {category} hinzufügen",
- "title": "Punkt hinzufügen?",
- "intro": "Sie haben irgendwo geklickt, wo noch keine Daten bekannt sind.
",
- "pleaseLogin": "Bitte loggen Sie sich ein, um einen neuen Punkt hinzuzufügen",
- "zoomInFurther": "Weiter einzoomen, um einen Punkt hinzuzufügen.",
- "stillLoading": "Die Daten werden noch geladen. Bitte warten Sie etwas, bevor Sie einen neuen Punkt hinzufügen.",
- "confirmIntro": "Hier einen {title} hinzufügen?
Der Punkt, den Sie hier anlegen, wird für alle sichtbar sein. Bitte fügen Sie der Karte nur dann Dinge hinzu, wenn sie wirklich existieren. Viele Anwendungen verwenden diese Daten.",
- "confirmButton": "Fügen Sie hier eine {category} hinzu.
Ihre Ergänzung ist für alle sichtbar
",
- "openLayerControl": "Das Ebenen-Kontrollkästchen öffnen",
- "layerNotEnabled": "Die Ebene {layer} ist nicht aktiviert. Aktivieren Sie diese Ebene, um einen Punkt hinzuzufügen",
- "addNewMapLabel": "Neues Element hinzufügen",
- "presetInfo": "Der neue POI hat {tags}",
- "disableFiltersExplanation": "Einige Elemente können durch einen Filter ausgeblendet sein",
- "disableFilters": "Alle Filter deaktivieren",
- "hasBeenImported": "Dieser Punkt wurde bereits importiert",
- "zoomInMore": "Vergrößern Sie die Ansicht, um dieses Element zu importieren",
- "warnVisibleForEveryone": "Ihre Ergänzung wird für alle sichtbar sein"
+ "centerMessage": {
+ "loadingData": "Daten werden geladen…",
+ "zoomIn": "Ausschnitt vergrößern, um Daten anzuzeigen oder zu bearbeiten",
+ "ready": "Erledigt!",
+ "retrying": "Laden von Daten fehlgeschlagen. Erneuter Versuch in {count} Sekunden …"
},
- "pickLanguage": "Sprache wählen: ",
- "about": "OpenStreetMap für ein bestimmtes Thema einfach bearbeiten und hinzufügen",
- "nameInlineQuestion": "Der Name dieser {category} ist $$$",
- "noNameCategory": "{category} ohne Namen",
- "questions": {
- "phoneNumberOf": "Wie lautet die Telefonnummer der {category}?",
- "phoneNumberIs": "Die Telefonnummer der {category} lautet {phone}",
- "websiteOf": "Was ist die Website der {category}?",
- "websiteIs": "Webseite: {website}",
- "emailOf": "Wie lautet die E-Mail-Adresse der {category}?",
- "emailIs": "Die E-Mail-Adresse dieser {category} lautet {email}"
+ "index": {
+ "#": "Dieser Text wird über die Thema-Auswahlschaltfläche gezeigt, wenn kein Thema geladen ist",
+ "title": "Willkommen bei MapComplete",
+ "intro": "MapComplete ist eine OpenStreetMap-Anwendung, mit der Informationen zu Objekten eines bestimmten Themas angezeigt und angepasst werden können.",
+ "pickTheme": "Wähle unten ein Thema, um zu starten.",
+ "featuredThemeTitle": "Diese Woche im Blickpunkt"
},
- "openStreetMapIntro": "Eine offene Karte
Eine Karte, die jeder frei nutzen und bearbeiten kann. Ein einziger Ort, um alle Geoinformationen zu speichern. Unterschiedliche, kleine, inkompatible und veraltete Karten werden nirgendwo gebraucht.
OpenStreetMap ist nicht die feindliche Karte. Die Kartendaten können frei verwendet werden (mit Benennung und Veröffentlichung von Änderungen an diesen Daten). Jeder kann neue Daten hinzufügen und Fehler korrigieren. Diese Webseite nutzt OpenStreetMap. Alle Daten stammen von dort, und Ihre Antworten und Korrekturen werden überall verwendet.
Viele Menschen und Anwendungen nutzen bereits OpenStreetMap: Organic Maps, OsmAnd, aber auch die Karten bei Facebook, Instagram, Apple-maps und Bing-maps werden (teilweise) von OpenStreetMap bereichert.
",
- "sharescreen": {
- "intro": "Diese Karte teilen
Sie können diese Karte teilen, indem Sie den untenstehenden Link kopieren und an Freunde und Familie schicken:",
- "addToHomeScreen": "Zum Startbildschirm hinzufügen
Sie können diese Webseite zum Startbildschirm Ihres Smartphones hinzufügen, um ein natives Gefühl zu erhalten. Klicken Sie dazu in der Adressleiste auf die Schaltfläche 'Zum Startbildschirm hinzufügen'.",
- "embedIntro": "Auf Ihrer Website einbetten
Bitte betten Sie diese Karte in Ihre Webseite ein.
Wir ermutigen Sie, es zu tun - Sie müssen nicht einmal um Erlaubnis fragen.
Es ist kostenlos und wird es immer sein. Je mehr Leute sie benutzen, desto wertvoller wird sie.",
- "copiedToClipboard": "Link in die Zwischenablage kopiert",
- "thanksForSharing": "Danke für das Teilen!",
- "editThisTheme": "Dieses Thema bearbeiten",
- "editThemeDescription": "Fragen zu diesem Kartenthema hinzufügen oder ändern",
- "fsUserbadge": "Anmelde-Knopf aktivieren",
- "fsSearch": "Suchleiste aktivieren",
- "fsWelcomeMessage": "Popup der Begrüßungsnachricht und zugehörige Registerkarten anzeigen",
- "fsLayers": "Aktivieren der Layersteuerung",
- "fsLayerControlToggle": "Mit der erweiterten Ebenenkontrolle beginnen",
- "fsAddNew": "Schaltfläche 'neuen POI hinzufügen' aktivieren",
- "fsGeolocation": "Die Schaltfläche 'Mich geolokalisieren' aktivieren (nur für Mobil)",
- "fsIncludeCurrentBackgroundMap": "Die aktuelle Hintergrundwahl einschließen {name}",
- "fsIncludeCurrentLayers": "Die aktuelle Ebenenauswahl einbeziehen",
- "fsIncludeCurrentLocation": "Aktuelle Position einbeziehen"
+ "general": {
+ "loginWithOpenStreetMap": "Bei OpenStreetMap anmelden",
+ "welcomeBack": "Sie sind eingeloggt, willkommen zurück!",
+ "loginToStart": "Anmelden, um diese Frage zu beantworten",
+ "search": {
+ "search": "Einen Ort suchen",
+ "searching": "Suchen …",
+ "nothing": "Nichts gefunden…",
+ "error": "Etwas ging schief…"
+ },
+ "returnToTheMap": "Zurück zur Karte",
+ "save": "Speichern",
+ "cancel": "Abbrechen",
+ "skip": "Frage überspringen",
+ "oneSkippedQuestion": "Eine Frage wurde übersprungen",
+ "skippedQuestions": "Einige Fragen wurden übersprungen",
+ "number": "Zahl",
+ "osmLinkTooltip": "Dieses Element auf OpenStreetMap durchsuchen für den Verlauf und weitere Bearbeitungsmöglichkeiten",
+ "add": {
+ "addNew": "Hier eine neue {category} hinzufügen",
+ "title": "Punkt hinzufügen?",
+ "intro": "Sie haben irgendwo geklickt, wo noch keine Daten bekannt sind.
",
+ "pleaseLogin": "Bitte loggen Sie sich ein, um einen neuen Punkt hinzuzufügen",
+ "zoomInFurther": "Weiter einzoomen, um einen Punkt hinzuzufügen.",
+ "stillLoading": "Die Daten werden noch geladen. Bitte warten Sie etwas, bevor Sie einen neuen Punkt hinzufügen.",
+ "confirmIntro": "Hier einen {title} hinzufügen?
Der Punkt, den Sie hier anlegen, wird für alle sichtbar sein. Bitte fügen Sie der Karte nur dann Dinge hinzu, wenn sie wirklich existieren. Viele Anwendungen verwenden diese Daten.",
+ "confirmButton": "Fügen Sie hier eine {category} hinzu.
Ihre Ergänzung ist für alle sichtbar
",
+ "openLayerControl": "Das Ebenen-Kontrollkästchen öffnen",
+ "layerNotEnabled": "Die Ebene {layer} ist nicht aktiviert. Aktivieren Sie diese Ebene, um einen Punkt hinzuzufügen",
+ "addNewMapLabel": "Neues Element hinzufügen",
+ "presetInfo": "Der neue POI hat {tags}",
+ "disableFiltersExplanation": "Einige Elemente können durch einen Filter ausgeblendet sein",
+ "disableFilters": "Alle Filter deaktivieren",
+ "hasBeenImported": "Dieser Punkt wurde bereits importiert",
+ "zoomInMore": "Vergrößern Sie die Ansicht, um dieses Element zu importieren",
+ "warnVisibleForEveryone": "Ihre Ergänzung wird für alle sichtbar sein"
+ },
+ "pickLanguage": "Sprache wählen: ",
+ "about": "OpenStreetMap für ein bestimmtes Thema einfach bearbeiten und hinzufügen",
+ "nameInlineQuestion": "Der Name dieser {category} ist $$$",
+ "noNameCategory": "{category} ohne Namen",
+ "questions": {
+ "phoneNumberOf": "Wie lautet die Telefonnummer der {category}?",
+ "phoneNumberIs": "Die Telefonnummer der {category} lautet {phone}",
+ "websiteOf": "Was ist die Website der {category}?",
+ "websiteIs": "Webseite: {website}",
+ "emailOf": "Wie lautet die E-Mail-Adresse der {category}?",
+ "emailIs": "Die E-Mail-Adresse dieser {category} lautet {email}"
+ },
+ "openStreetMapIntro": "Eine offene Karte
Eine Karte, die jeder frei nutzen und bearbeiten kann. Ein einziger Ort, um alle Geoinformationen zu speichern. Unterschiedliche, kleine, inkompatible und veraltete Karten werden nirgendwo gebraucht.
OpenStreetMap ist nicht die feindliche Karte. Die Kartendaten können frei verwendet werden (mit Benennung und Veröffentlichung von Änderungen an diesen Daten). Jeder kann neue Daten hinzufügen und Fehler korrigieren. Diese Webseite nutzt OpenStreetMap. Alle Daten stammen von dort, und Ihre Antworten und Korrekturen werden überall verwendet.
Viele Menschen und Anwendungen nutzen bereits OpenStreetMap: Organic Maps, OsmAnd, aber auch die Karten bei Facebook, Instagram, Apple-maps und Bing-maps werden (teilweise) von OpenStreetMap bereichert.
",
+ "sharescreen": {
+ "intro": "Diese Karte teilen
Sie können diese Karte teilen, indem Sie den untenstehenden Link kopieren und an Freunde und Familie schicken:",
+ "addToHomeScreen": "Zum Startbildschirm hinzufügen
Sie können diese Webseite zum Startbildschirm Ihres Smartphones hinzufügen, um ein natives Gefühl zu erhalten. Klicken Sie dazu in der Adressleiste auf die Schaltfläche 'Zum Startbildschirm hinzufügen'.",
+ "embedIntro": "Auf Ihrer Website einbetten
Bitte betten Sie diese Karte in Ihre Webseite ein.
Wir ermutigen Sie, es zu tun - Sie müssen nicht einmal um Erlaubnis fragen.
Es ist kostenlos und wird es immer sein. Je mehr Leute sie benutzen, desto wertvoller wird sie.",
+ "copiedToClipboard": "Link in die Zwischenablage kopiert",
+ "thanksForSharing": "Danke für das Teilen!",
+ "editThisTheme": "Dieses Thema bearbeiten",
+ "editThemeDescription": "Fragen zu diesem Kartenthema hinzufügen oder ändern",
+ "fsUserbadge": "Anmelde-Knopf aktivieren",
+ "fsSearch": "Suchleiste aktivieren",
+ "fsWelcomeMessage": "Popup der Begrüßungsnachricht und zugehörige Registerkarten anzeigen",
+ "fsLayers": "Aktivieren der Layersteuerung",
+ "fsLayerControlToggle": "Mit der erweiterten Ebenenkontrolle beginnen",
+ "fsAddNew": "Schaltfläche 'neuen POI hinzufügen' aktivieren",
+ "fsGeolocation": "Die Schaltfläche 'Mich geolokalisieren' aktivieren (nur für Mobil)",
+ "fsIncludeCurrentBackgroundMap": "Die aktuelle Hintergrundwahl einschließen {name}",
+ "fsIncludeCurrentLayers": "Die aktuelle Ebenenauswahl einbeziehen",
+ "fsIncludeCurrentLocation": "Aktuelle Position einbeziehen"
+ },
+ "morescreen": {
+ "intro": "Mehr thematische Karten?
Sammeln Sie gerne Geodaten?
Es sind weitere Themen verfügbar.",
+ "requestATheme": "Wenn Sie ein benutzerdefiniertes Thema wünschen, fordern Sie es im Issue Tracker an",
+ "streetcomplete": "Eine ähnliche App ist StreetComplete.",
+ "createYourOwnTheme": "Erstellen Sie Ihr eigenes MapComplete-Thema von Grund auf neu",
+ "previouslyHiddenTitle": "Zuvor besuchte versteckte Themen",
+ "hiddenExplanation": "Diese Themen sind nur für Personen zugänglich, die einen Link erhalten haben. Sie haben {hidden_discovered} von {total_hidden} versteckten Themen entdeckt."
+ },
+ "readYourMessages": "Bitte lesen Sie alle Ihre OpenStreetMap-Nachrichten, bevor Sie einen neuen Punkt hinzufügen.",
+ "fewChangesBefore": "Bitte beantworten Sie ein paar Fragen zu bestehenden Punkten, bevor Sie einen neuen Punkt hinzufügen.",
+ "goToInbox": "Posteingang öffnen",
+ "getStartedLogin": "Bei OpenStreetMap anmelden, um loszulegen",
+ "getStartedNewAccount": " oder ein neues Konto anlegen",
+ "noTagsSelected": "Keine Tags ausgewählt",
+ "customThemeIntro": "Benutzerdefinierte Themes
Dies sind zuvor besuchte benutzergenerierte Themen.",
+ "aboutMapcomplete": "Über MapComplete
Nutzen Sie es, um OpenStreetMap-Informationen zu einem einzigen Thema hinzuzufügen. Beantworten Sie Fragen, und innerhalb weniger Minuten sind Ihre Beiträge überall verfügbar. Der Theme-Maintainer definiert Elemente, Fragen und Sprachen dafür.
Mehr erfahren
MapComplete bietet immer den nächsten Schritt, um mehr über OpenStreetMap zu erfahren.
- Wenn es in eine Website eingebettet wird, verlinkt der iframe zu einer Vollbildversion von MapComplete
- Die Vollbildversion bietet Infos über OpenStreetMap
- Das Betrachten funktioniert ohne Anmeldung, aber das Bearbeiten erfordert ein OSM-Konto.
- Wenn Sie nicht angemeldet sind, werden Sie dazu aufgefordert
- Sobald Sie eine Frage beantwortet haben, können Sie der Karte neue Punkte hinzufügen
- Nach einer Weile werden aktuelle OSM-Tags angezeigt, die später mit dem Wiki verlinkt werden
Haben Sie ein Problem bemerkt? Haben Sie einen Funktionswunsch? Möchten Sie bei der Übersetzung helfen? Besuchen Sie den Quellcode oder den Issue Tracker
Möchten Sie Ihren Fortschritt sehen? Verfolgen Sie die Anzahl der Änderungen auf OsmCha.
",
+ "backgroundMap": "Hintergrundkarte",
+ "layerSelection": {
+ "zoomInToSeeThisLayer": "Ausschnitt vergrößern, um diese Ebene anzuzeigen",
+ "title": "Ebenen auswählen"
+ },
+ "weekdays": {
+ "abbreviations": {
+ "monday": "Mo",
+ "tuesday": "Di",
+ "wednesday": "Mi",
+ "thursday": "Do",
+ "friday": "Fr",
+ "saturday": "Sa",
+ "sunday": "So"
+ },
+ "monday": "Montag",
+ "tuesday": "Dienstag",
+ "wednesday": "Mittwoch",
+ "thursday": "Donnerstag",
+ "friday": "Freitag",
+ "saturday": "Samstag",
+ "sunday": "Sonntag"
+ },
+ "opening_hours": {
+ "error_loading": "Fehler: Diese Öffnungszeiten können nicht angezeigt werden.",
+ "open_during_ph": "An Feiertagen ist hier",
+ "opensAt": "von",
+ "openTill": "bis",
+ "not_all_rules_parsed": "Die Öffnungszeiten sind kompliziert. Die folgenden Regeln werden im Eingabeelement ignoriert:",
+ "closed_until": "Geschlossen bis {date}",
+ "closed_permanently": "Geschlossen auf unbestimmte Zeit",
+ "open_24_7": "Durchgehend geöffnet",
+ "ph_not_known": " ",
+ "ph_closed": "geschlossen",
+ "ph_open": "geöffnet",
+ "loadingCountry": "Land ermitteln…",
+ "ph_open_as_usual": "geöffnet wie üblich"
+ },
+ "attribution": {
+ "mapContributionsByAndHidden": "Die aktuell sichtbaren Daten wurden editiert durch {contributors} und {hiddenCount} weitere Beitragende",
+ "mapContributionsBy": "Die aktuell sichtbaren Daten wurden editiert durch {contributors}",
+ "iconAttribution": {
+ "title": "Verwendete Icons"
+ },
+ "attributionTitle": "Danksagung",
+ "codeContributionsBy": "MapComplete wurde von {contributors} und {hiddenCount} weiteren Beitragenden erstellt",
+ "themeBy": "Thema betreut von {author}",
+ "attributionContent": "Alle Daten wurden bereitgestellt von OpenStreetMap, frei verwendbar unter der Open Database License.
"
+ },
+ "download": {
+ "downloadCSVHelper": "Kompatibel mit LibreOffice Calc, Excel, …",
+ "downloadCSV": "Sichtbare Daten als CSV herunterladen",
+ "downloadAsPdfHelper": "Ideal zum Drucken der aktuellen Karte",
+ "downloadGeoJsonHelper": "Kompatibel mit QGIS, ArcGIS, ESRI, …",
+ "downloadAsPdf": "PDF der aktuellen Karte herunterladen",
+ "downloadGeojson": "Sichtbare Daten als GeoJSON herunterladen",
+ "includeMetaData": "Metadaten übernehmen (letzter Bearbeiter, berechnete Werte, ...)",
+ "noDataLoaded": "Noch keine Daten geladen. Download ist in Kürze verfügbar",
+ "licenseInfo": "Copyright-Hinweis
Die bereitgestellten Daten sind unter ODbL verfügbar. Die Wiederverwendung ist für jeden Zweck frei, aber - die Namensnennung © OpenStreetMap contributors ist erforderlich
- Jede Änderung unter der gleichen Lizenz veröffentlicht werden
Bitte lesen Sie den vollständigen Copyright-Hinweis für weitere Details.",
+ "title": "Sichtbare Daten herunterladen",
+ "exporting": "Exportieren…"
+ },
+ "pdf": {
+ "versionInfo": "v{version} - erstellt am {date}",
+ "attr": "Kartendaten © OpenStreetMap Contributors, wiederverwendbar unter ODbL",
+ "generatedWith": "Erstellt mit MapComplete.osm.be",
+ "attrBackground": "Hintergrund-Ebene: {background}"
+ },
+ "loginOnlyNeededToEdit": "zum Bearbeiten der Karte",
+ "wikipedia": {
+ "wikipediaboxTitle": "Wikipedia",
+ "searchWikidata": "Suche auf Wikidata",
+ "loading": "Wikipedia laden...",
+ "noResults": "Nichts gefunden für {search}",
+ "doSearch": "Suche oben, um Ergebnisse zu sehen",
+ "noWikipediaPage": "Dieses Wikidata-Element hat noch keine entsprechende Wikipedia-Seite.",
+ "createNewWikidata": "Einen neuen Wikidata-Eintrag erstellen",
+ "failed": "Laden des Wikipedia-Eintrags fehlgeschlagen"
+ },
+ "testing": "Testen - Änderungen werden nicht gespeichert",
+ "openTheMap": "Karte öffnen",
+ "loading": "Laden...",
+ "histogram": {
+ "error_loading": "Das Histogramm konnte nicht geladen werden"
+ }
},
- "morescreen": {
- "intro": "Mehr thematische Karten?
Sammeln Sie gerne Geodaten?
Es sind weitere Themen verfügbar.",
- "requestATheme": "Wenn Sie ein benutzerdefiniertes Thema wünschen, fordern Sie es im Issue Tracker an",
- "streetcomplete": "Eine andere, ähnliche Anwendung ist StreetComplete.",
- "createYourOwnTheme": "Erstellen Sie Ihr eigenes MapComplete-Thema von Grund auf neu",
- "previouslyHiddenTitle": "Zuvor besuchte versteckte Themen",
- "hiddenExplanation": "Diese Themen sind nur für Personen zugänglich, die einen Link erhalten haben. Sie haben {hidden_discovered} von {total_hidden} versteckten Themen entdeckt."
+ "favourite": {
+ "panelIntro": "Ihr persönliches Thema
Aktivieren Sie Ihre Lieblingsebenen aus allen offiziellen Themen",
+ "loginNeeded": "Anmelden
Ein persönliches Layout ist nur für OpenStreetMap-Benutzer verfügbar",
+ "reload": "Daten neu laden"
},
- "readYourMessages": "Bitte lesen Sie alle Ihre OpenStreetMap-Nachrichten, bevor Sie einen neuen Punkt hinzufügen.",
- "fewChangesBefore": "Bitte beantworten Sie ein paar Fragen zu bestehenden Punkten, bevor Sie einen neuen Punkt hinzufügen.",
- "goToInbox": "Posteingang öffnen",
- "getStartedLogin": "Bei OpenStreetMap anmelden, um loszulegen",
- "getStartedNewAccount": " oder ein neues Konto anlegen",
- "noTagsSelected": "Keine Tags ausgewählt",
- "customThemeIntro": "Benutzerdefinierte Themes
Dies sind zuvor besuchte benutzergenerierte Themen.",
- "aboutMapcomplete": "Über MapComplete
Nutzen Sie es, um OpenStreetMap-Informationen zu einem einzigen Thema hinzuzufügen. Beantworten Sie Fragen, und innerhalb weniger Minuten sind Ihre Beiträge überall verfügbar. Der Theme-Maintainer definiert Elemente, Fragen und Sprachen dafür.
Mehr erfahren
MapComplete bietet immer den nächsten Schritt, um mehr über OpenStreetMap zu erfahren.
- Wenn es in eine Website eingebettet wird, verlinkt der iframe zu einer Vollbildversion von MapComplete
- Die Vollbildversion bietet Infos über OpenStreetMap
- Das Betrachten funktioniert ohne Anmeldung, aber das Bearbeiten erfordert ein OSM-Konto.
- Wenn Sie nicht angemeldet sind, werden Sie dazu aufgefordert
- Sobald Sie eine Frage beantwortet haben, können Sie der Karte neue Punkte hinzufügen
- Nach einer Weile werden aktuelle OSM-Tags angezeigt, die später mit dem Wiki verlinkt werden
Haben Sie ein Problem bemerkt? Haben Sie einen Funktionswunsch? Möchten Sie bei der Übersetzung helfen? Besuchen Sie den Quellcode oder den Issue Tracker
Möchten Sie Ihren Fortschritt sehen? Verfolgen Sie die Anzahl der Änderungen auf OsmCha.
",
- "backgroundMap": "Hintergrundkarte",
- "layerSelection": {
- "zoomInToSeeThisLayer": "Ausschnitt vergrößern, um diese Ebene anzuzeigen",
- "title": "Ebenen auswählen"
+ "reviews": {
+ "title": "{count} Rezensionen",
+ "title_singular": "Eine Rezension",
+ "name_required": "Der Name des Objekts ist notwendig, um eine Bewertung erstellen zu können",
+ "no_reviews_yet": "Es gibt noch keine Bewertungen. Hilf mit der ersten Bewertung dem Geschäft und der Open Data Bewegung!",
+ "write_a_comment": "Schreibe einen Kommentar…",
+ "no_rating": "Keine Bewertung vorhanden",
+ "posting_as": "Angemeldet als",
+ "i_am_affiliated": "Ich bin angehörig
Überprüfe, ob du Eigentümer, Ersteller, Angestellter etc. bist",
+ "saving_review": "Speichern…",
+ "saved": "Bewertung gespeichert. Danke fürs Teilen!",
+ "tos": "Mit deiner Bewertung stimmst du den AGB und den Datenschutzrichtlinien von Mangrove.reviews zu",
+ "plz_login": "Anmelden, um eine Bewertung abzugeben",
+ "affiliated_reviewer_warning": "(Partner-Rezension)",
+ "attribution": "Rezensionen werden bereitgestellt von Mangrove Reviews und sind unter CC-BY 4.0 verfügbar."
},
- "weekdays": {
- "abbreviations": {
- "monday": "Mo",
- "tuesday": "Di",
- "wednesday": "Mi",
- "thursday": "Do",
- "friday": "Fr",
- "saturday": "Sa",
- "sunday": "So"
- },
- "monday": "Montag",
- "tuesday": "Dienstag",
- "wednesday": "Mittwoch",
- "thursday": "Donnerstag",
- "friday": "Freitag",
- "saturday": "Samstag",
- "sunday": "Sonntag"
+ "delete": {
+ "explanations": {
+ "selectReason": "Bitte wähle aus, warum dieses Element gelöscht werden soll",
+ "hardDelete": "Dieser Punkt wird in OpenStreetMap gelöscht. Er kann von einem erfahrenen Mitwirkenden wiederhergestellt werden",
+ "softDelete": "Dieses Element wird aktualisiert und in dieser Anwendung ausgeblendet. {reason}"
+ },
+ "reasons": {
+ "test": "Dies war ein Testpunkt - das Element war nie wirklich vorhanden",
+ "notFound": "Dieses Element konnte nicht gefunden werden",
+ "disused": "Dieses Element wird nicht mehr verwendet oder entfernt",
+ "duplicate": "Dieser Punkt ist ein Duplikat eines anderen Elements"
+ },
+ "readMessages": "Du hast ungelesene Nachrichten. Bitte beachte diese, bevor Du einen Punkt löschst - vielleicht hat jemand eine Rückmeldung",
+ "loginToDelete": "Sie müssen angemeldet sein, um einen Punkt zu löschen",
+ "useSomethingElse": "Verwenden Sie zum Löschen stattdessen einen anderen OpenStreetMap-Editor",
+ "partOfOthers": "Dieser Punkt ist Teil eines Weges oder einer Relation und kann nicht direkt gelöscht werden.",
+ "loading": "Untersuchung der Eigenschaften, um zu prüfen, ob dieses Element gelöscht werden kann.",
+ "onlyEditedByLoggedInUser": "Dieser Punkt wurde nur von Ihnen selbst bearbeitet, Sie können ihn sicher löschen.",
+ "isntAPoint": "Es können nur Punkte gelöscht werden, das ausgewählte Element ist ein Weg, eine Fläche oder eine Relation.",
+ "cannotBeDeleted": "Dieses Element kann nicht gelöscht werden",
+ "delete": "Löschen",
+ "isDeleted": "Dieses Element wurde gelöscht",
+ "whyDelete": "Warum sollte dieser Punkt gelöscht werden?",
+ "cancel": "Abbrechen",
+ "safeDelete": "Dieser Punkt kann sicher gelöscht werden.",
+ "notEnoughExperience": "Dieser Punkt wurde von jemand anderem erstellt."
},
- "opening_hours": {
- "error_loading": "Fehler: Diese Öffnungszeiten können nicht angezeigt werden.",
- "open_during_ph": "An Feiertagen ist diese Einrichtung",
- "opensAt": "von",
- "openTill": "bis",
- "not_all_rules_parsed": "Die Öffnungszeiten dieses Geschäfts sind abweichend. Die folgenden Regeln werden im Eingabeelement ignoriert:",
- "closed_until": "Geschlossen bis {date}",
- "closed_permanently": "Geschlossen auf unbestimmte Zeit",
- "open_24_7": "Durchgehend geöffnet",
- "ph_not_known": " ",
- "ph_closed": "geschlossen",
- "ph_open": "geöffnet",
- "loadingCountry": "Land ermitteln…",
- "ph_open_as_usual": "geöffnet wie üblich"
+ "move": {
+ "inviteToMove": {
+ "reasonRelocation": "Dieses Element an einen anderen Ort verschieben, weil es sich verlagert hat",
+ "generic": "Verschiebe diesen Punkt",
+ "reasonInaccurate": "Genauigkeit dieses Punktes verbessern"
+ },
+ "partOfAWay": "Dieses Element ist Teil eines anderen Weges. Verwenden Sie einen anderen Editor, um es zu verschieben.",
+ "cannotBeMoved": "Dieses Element kann nicht verschoben werden.",
+ "cancel": "Verschieben abbrechen",
+ "whyMove": "Warum wollen Sie diesen Punkt verschieben?",
+ "pointIsMoved": "Der Punkt wurde verschoben",
+ "reasons": {
+ "reasonRelocation": "Das Element wurde an einen völlig anderen Ort verlegt",
+ "reasonInaccurate": "Der Standort dieses Elements ist ungenau und sollte um einige Meter verschoben werden"
+ },
+ "loginToMove": "Sie müssen eingeloggt sein, um einen Punkt zu verschieben",
+ "zoomInFurther": "Weiter vergrößern, um die Verschiebung zu bestätigen",
+ "selectReason": "Warum verschieben Sie dieses Element?",
+ "inviteToMoveAgain": "Diesen Punkt erneut verschieben",
+ "moveTitle": "Diesen Punkt verschieben",
+ "confirmMove": "Hierhin verschieben",
+ "partOfRelation": "Dieses Element ist Teil einer Relation. Verwenden Sie einen anderen Editor, um es zu verschieben.",
+ "isWay": "Dieses Element ist ein Weg. Verwenden Sie einen anderen OpenStreetMap-Editor, um ihn zu verschieben.",
+ "isRelation": "Dieses Element ist eine Relation und kann nicht verschoben werden"
},
- "attribution": {
- "mapContributionsByAndHidden": "Die aktuell sichtbaren Daten wurden editiert durch {contributors} und {hiddenCount} weitere Beitragende",
- "mapContributionsBy": "Die aktuell sichtbaren Daten wurden editiert durch {contributors}",
- "iconAttribution": {
- "title": "Verwendete Icons"
- },
- "attributionTitle": "Danksagung",
- "codeContributionsBy": "MapComplete wurde von {contributors} und {hiddenCount} weiteren Beitragenden erstellt",
- "themeBy": "Thema betreut von {author}",
- "attributionContent": "Alle Daten wurden bereitgestellt von OpenStreetMap, frei verwendbar unter der Open Database License.
"
+ "split": {
+ "split": "Teilen",
+ "cancel": "Abbrechen",
+ "loginToSplit": "Sie müssen angemeldet sein, um eine Straße aufzuteilen",
+ "splitTitle": "Wählen Sie auf der Karte aus, wo die Straße geteilt werden soll",
+ "hasBeenSplit": "Dieser Weg wurde geteilt",
+ "inviteToSplit": "Teilen Sie diese Straße in kleinere Segmente auf. Dies ermöglicht es, Straßenabschnitten unterschiedliche Eigenschaften zu geben."
},
- "download": {
- "downloadCSVHelper": "Kompatibel mit LibreOffice Calc, Excel, …",
- "downloadCSV": "Sichtbare Daten als CSV herunterladen",
- "downloadAsPdfHelper": "Ideal zum Drucken der aktuellen Karte",
- "downloadGeoJsonHelper": "Kompatibel mit QGIS, ArcGIS, ESRI, …",
- "downloadAsPdf": "PDF der aktuellen Karte herunterladen",
- "downloadGeojson": "Sichtbare Daten als GeoJSON herunterladen",
- "includeMetaData": "Metadaten übernehmen (letzter Bearbeiter, berechnete Werte, ...)",
- "noDataLoaded": "Noch keine Daten geladen. Download ist in Kürze verfügbar",
- "licenseInfo": "Copyright-Hinweis
Die bereitgestellten Daten sind unter ODbL verfügbar. Die Wiederverwendung ist für jeden Zweck frei, aber - die Namensnennung © OpenStreetMap contributors ist erforderlich
- Jede Änderung unter der gleichen Lizenz veröffentlicht werden
Bitte lesen Sie den vollständigen Copyright-Hinweis für weitere Details.",
- "title": "Sichtbare Daten herunterladen",
- "exporting": "Exportieren…"
- },
- "pdf": {
- "versionInfo": "v{version} - erstellt am {date}",
- "attr": "Kartendaten © OpenStreetMap Contributors, wiederverwendbar unter ODbL",
- "generatedWith": "Erstellt mit MapComplete.osm.be",
- "attrBackground": "Hintergrund-Ebene: {background}"
- },
- "loginOnlyNeededToEdit": "zum Bearbeiten der Karte",
- "wikipedia": {
- "wikipediaboxTitle": "Wikipedia",
- "searchWikidata": "Suche auf Wikidata",
- "loading": "Wikipedia laden...",
- "noResults": "Nichts gefunden für {search}",
- "doSearch": "Suche oben, um Ergebnisse zu sehen",
- "noWikipediaPage": "Dieses Wikidata-Element hat noch keine entsprechende Wikipedia-Seite.",
- "createNewWikidata": "Einen neuen Wikidata-Eintrag erstellen",
- "failed": "Laden des Wikipedia-Eintrags fehlgeschlagen"
- },
- "testing": "Testen - Änderungen werden nicht gespeichert",
- "openTheMap": "Karte öffnen",
- "loading": "Laden...",
- "histogram": {
- "error_loading": "Das Histogramm konnte nicht geladen werden"
+ "multi_apply": {
+ "autoApply": "Wenn Sie die Attribute {attr_names} ändern, werden diese Attribute automatisch auch auf {count} anderen Objekten geändert"
}
- },
- "favourite": {
- "panelIntro": "Ihr persönliches Thema
Aktivieren Sie Ihre Lieblingsebenen aus allen offiziellen Themen",
- "loginNeeded": "Anmelden
Ein persönliches Layout ist nur für OpenStreetMap-Benutzer verfügbar",
- "reload": "Daten neu laden"
- },
- "reviews": {
- "title": "{count} Rezensionen",
- "title_singular": "Eine Rezension",
- "name_required": "Der Name des Objekts ist notwendig, um eine Bewertung erstellen zu können",
- "no_reviews_yet": "Es gibt noch keine Bewertungen. Hilf mit der ersten Bewertung dem Geschäft und der Open Data Bewegung!",
- "write_a_comment": "Schreibe einen Kommentar…",
- "no_rating": "Keine Bewertung vorhanden",
- "posting_as": "Angemeldet als",
- "i_am_affiliated": "Ich bin angehörig
Überprüfe, ob du Eigentümer, Ersteller, Angestellter etc. bist",
- "saving_review": "Speichern…",
- "saved": "Bewertung gespeichert. Danke fürs Teilen!",
- "tos": "Mit deiner Rezension stimmst du den AGB und den Datenschutzrichtlinien von Mangrove.reviews zu",
- "plz_login": "Anmelden, um eine Bewertung abzugeben",
- "affiliated_reviewer_warning": "(Partner-Rezension)",
- "attribution": "Rezensionen werden bereitgestellt von Mangrove Reviews und sind unter CC-BY 4.0 verfügbar."
- },
- "delete": {
- "explanations": {
- "selectReason": "Bitte wähle aus, warum dieses Element gelöscht werden soll",
- "hardDelete": "Dieser Punkt wird in OpenStreetMap gelöscht. Er kann von einem erfahrenen Mitwirkenden wiederhergestellt werden",
- "softDelete": "Dieses Element wird aktualisiert und in dieser Anwendung ausgeblendet. {reason}"
- },
- "reasons": {
- "test": "Dies war ein Testpunkt - das Element war nie wirklich vorhanden",
- "notFound": "Dieses Element konnte nicht gefunden werden",
- "disused": "Dieses Element wird nicht mehr verwendet oder entfernt",
- "duplicate": "Dieser Punkt ist ein Duplikat eines anderen Elements"
- },
- "readMessages": "Du hast ungelesene Nachrichten. Bitte beachte diese, bevor Du einen Punkt löschst - vielleicht hat jemand eine Rückmeldung",
- "loginToDelete": "Sie müssen angemeldet sein, um einen Punkt zu löschen",
- "useSomethingElse": "Verwenden Sie zum Löschen stattdessen einen anderen OpenStreetMap-Editor",
- "partOfOthers": "Dieser Punkt ist Teil eines Weges oder einer Relation und kann nicht direkt gelöscht werden.",
- "loading": "Untersuchung der Eigenschaften, um zu prüfen, ob dieses Element gelöscht werden kann.",
- "onlyEditedByLoggedInUser": "Dieser Punkt wurde nur von Ihnen selbst bearbeitet, Sie können ihn sicher löschen.",
- "isntAPoint": "Es können nur Punkte gelöscht werden, das ausgewählte Element ist ein Weg, eine Fläche oder eine Relation.",
- "cannotBeDeleted": "Dieses Element kann nicht gelöscht werden",
- "delete": "Löschen",
- "isDeleted": "Dieses Element wurde gelöscht",
- "whyDelete": "Warum sollte dieser Punkt gelöscht werden?",
- "cancel": "Abbrechen",
- "safeDelete": "Dieser Punkt kann sicher gelöscht werden.",
- "notEnoughExperience": "Dieser Punkt wurde von jemand anderem erstellt."
- },
- "move": {
- "inviteToMove": {
- "reasonRelocation": "Dieses Element an einen anderen Ort verschieben, weil es sich verlagert hat",
- "generic": "Verschiebe diesen Punkt",
- "reasonInaccurate": "Genauigkeit dieses Punktes verbessern"
- },
- "partOfAWay": "Dieses Element ist Teil eines anderen Weges. Verwenden Sie einen anderen Editor, um es zu verschieben.",
- "cannotBeMoved": "Dieses Element kann nicht verschoben werden.",
- "cancel": "Verschieben abbrechen",
- "whyMove": "Warum wollen Sie diesen Punkt verschieben?",
- "pointIsMoved": "Der Punkt wurde verschoben",
- "reasons": {
- "reasonRelocation": "Das Element wurde an einen völlig anderen Ort verlegt",
- "reasonInaccurate": "Der Standort dieses Elements ist ungenau und sollte um einige Meter verschoben werden"
- },
- "loginToMove": "Sie müssen eingeloggt sein, um einen Punkt zu verschieben",
- "zoomInFurther": "Weiter vergrößern, um die Verschiebung zu bestätigen",
- "selectReason": "Warum verschieben Sie dieses Element?",
- "inviteToMoveAgain": "Diesen Punkt erneut verschieben",
- "moveTitle": "Diesen Punkt verschieben",
- "confirmMove": "Hierhin verschieben",
- "partOfRelation": "Dieses Element ist Teil einer Relation. Verwenden Sie einen anderen Editor, um es zu verschieben.",
- "isWay": "Dieses Element ist ein Weg. Verwenden Sie einen anderen OpenStreetMap-Editor, um ihn zu verschieben.",
- "isRelation": "Dieses Element ist eine Relation und kann nicht verschoben werden"
- },
- "split": {
- "split": "Teilen",
- "cancel": "Abbrechen",
- "loginToSplit": "Sie müssen angemeldet sein, um eine Straße aufzuteilen",
- "splitTitle": "Wählen Sie auf der Karte aus, wo die Straße geteilt werden soll",
- "hasBeenSplit": "Dieser Weg wurde geteilt",
- "inviteToSplit": "Teilen Sie diese Straße in kleinere Segmente auf. Dies ermöglicht es, Straßenabschnitten unterschiedliche Eigenschaften zu geben."
- },
- "multi_apply": {
- "autoApply": "Wenn Sie die Attribute {attr_names} ändern, werden diese Attribute automatisch auch auf {count} anderen Objekten geändert"
- }
-}
\ No newline at end of file
+}
diff --git a/langs/en.json b/langs/en.json
index b6088e213..c26f2cc07 100644
--- a/langs/en.json
+++ b/langs/en.json
@@ -28,7 +28,8 @@
"title": "Welcome to MapComplete",
"featuredThemeTitle": "Featured this week",
"intro": "MapComplete is an OpenStreetMap-viewer and editor, which shows you information about features of a specific theme and allows to update it.",
- "pickTheme": "Pick a theme below to get started."
+ "pickTheme": "Pick a theme below to get started.",
+ "logIn": "Log in to see other themes you previously visited"
},
"split": {
"split": "Split",
@@ -108,6 +109,7 @@
"openLayerControl": "Open the layer control box",
"layerNotEnabled": "The layer {layer} is not enabled. Enable this layer to add a point",
"hasBeenImported": "This point has already been imported",
+ "importTags": "The element will receive {tags}",
"zoomInMore": "Zoom in more to import this feature",
"wrongType": "This element is not a point or a way and can not be imported"
},
diff --git a/langs/layers/de.json b/langs/layers/de.json
index 7563b8c09..20dad97d0 100644
--- a/langs/layers/de.json
+++ b/langs/layers/de.json
@@ -260,8 +260,15 @@
"mappings": {
"1": {
"then": "Stehbank"
+ },
+ "0": {
+ "then": "Hier gibt es eine normale Sitzbank"
+ },
+ "2": {
+ "then": "Hier gibt es keine Bank"
}
- }
+ },
+ "question": "Was ist das für eine Bank?"
},
"bench_at_pt-name": {
"render": "{name}"
@@ -433,6 +440,38 @@
}
},
"render": "Fahrrad-Reinigungsdienst"
+ },
+ "tagRenderings": {
+ "bike_cleaning-charge": {
+ "mappings": {
+ "0": {
+ "then": "Kostenloser Reinigungsservice"
+ },
+ "2": {
+ "then": "Der Reinigungsservice ist kostenpflichtig"
+ },
+ "1": {
+ "then": "Kostenlose Nutzung"
+ }
+ },
+ "question": "Wie viel kostet die Nutzung des Reinigungsdienstes?",
+ "render": "Die Nutzung des Reinigungsdienstes kostet {charge}"
+ },
+ "bike_cleaning-service:bicycle:cleaning:charge": {
+ "mappings": {
+ "1": {
+ "then": "Kostenlose Nutzung"
+ },
+ "0": {
+ "then": "Der Reinigungsservice ist kostenlos"
+ },
+ "2": {
+ "then": "Der Reinigungsdienst ist kostenpflichtig, aber der Betrag ist nicht bekannt"
+ }
+ },
+ "question": "Wie viel kostet die Nutzung des Reinigungsdienstes?",
+ "render": "Nutzung des Reinigungsservice kostet {service:bicycle:cleaning:charge}"
+ }
}
},
"bike_parking": {
@@ -563,7 +602,7 @@
},
"tagRenderings": {
"Email maintainer": {
- "render": "Melde diese Fahrradpumpe als kaputt"
+ "render": "Melde diese Fahrradpumpe als kaputt"
},
"Operational status": {
"mappings": {
@@ -2872,5 +2911,37 @@
},
"watermill": {
"name": "Wassermühle"
+ },
+ "charging_station": {
+ "filter": {
+ "0": {
+ "options": {
+ "2": {
+ "question": "Ladestation für Autos"
+ },
+ "0": {
+ "question": "Alle Fahrzeugtypen"
+ },
+ "1": {
+ "question": "Ladestation für Fahrräder"
+ }
+ }
+ },
+ "1": {
+ "options": {
+ "0": {
+ "question": "Nur funktionierende Ladestationen"
+ }
+ }
+ },
+ "2": {
+ "options": {
+ "0": {
+ "question": "Alle Anschlüsse"
+ }
+ }
+ }
+ },
+ "description": "Eine Ladestation"
}
-}
\ No newline at end of file
+}
diff --git a/langs/layers/en.json b/langs/layers/en.json
index 8b47118b0..61e89af2d 100644
--- a/langs/layers/en.json
+++ b/langs/layers/en.json
@@ -602,7 +602,7 @@
},
"tagRenderings": {
"Email maintainer": {
- "render": "Report this bicycle pump as broken"
+ "render": "Report this bicycle pump as broken"
},
"Operational status": {
"mappings": {
diff --git a/langs/layers/nl.json b/langs/layers/nl.json
index 4cc651bd3..c2d7a8800 100644
--- a/langs/layers/nl.json
+++ b/langs/layers/nl.json
@@ -563,7 +563,7 @@
},
"tagRenderings": {
"Email maintainer": {
- "render": "Rapporteer deze fietspomp als kapot"
+ "render": "Rapporteer deze fietspomp als kapot"
},
"Operational status": {
"mappings": {
diff --git a/langs/layers/pt.json b/langs/layers/pt.json
index 022b6cf8c..57cf3c6ee 100644
--- a/langs/layers/pt.json
+++ b/langs/layers/pt.json
@@ -12,6 +12,64 @@
}
},
"render": "Obra de arte"
+ },
+ "description": "Diversas obras de arte",
+ "name": "Obras de arte",
+ "tagRenderings": {
+ "artwork-artist_name": {
+ "question": "Que artista criou isto?",
+ "render": "Criado por {artist_name}"
+ },
+ "artwork-artwork_type": {
+ "mappings": {
+ "0": {
+ "then": "Arquitetura"
+ },
+ "1": {
+ "then": "Mural"
+ },
+ "2": {
+ "then": "Pintura"
+ },
+ "3": {
+ "then": "Escultura"
+ },
+ "4": {
+ "then": "Estátua"
+ },
+ "5": {
+ "then": "Busto"
+ },
+ "6": {
+ "then": "Pedra"
+ },
+ "7": {
+ "then": "Instalação"
+ },
+ "8": {
+ "then": "Graffiti"
+ },
+ "9": {
+ "then": "Relevo"
+ },
+ "10": {
+ "then": "Azulejo (azulejo decorativo espanhol e português)"
+ },
+ "11": {
+ "then": "Ladrilhos"
+ }
+ },
+ "question": "Qual é o tipo desta obra de arte?",
+ "render": "Isto é um(a) {artwork_type}"
+ },
+ "artwork-website": {
+ "question": "Existe um site com mais informações sobre esta obra de arte?",
+ "render": "Mais informações neste site"
+ },
+ "artwork-wikidata": {
+ "question": "Que entrada no Wikidata corresponde a esta obra de arte?",
+ "render": "Corresponde a {wikidata}"
+ }
}
},
"bench": {
@@ -544,4 +602,4 @@
}
}
}
-}
\ No newline at end of file
+}
diff --git a/langs/layers/ru.json b/langs/layers/ru.json
index 2373e2b2c..31eed5a9a 100644
--- a/langs/layers/ru.json
+++ b/langs/layers/ru.json
@@ -1410,5 +1410,42 @@
},
"watermill": {
"name": "Водяная мельница"
+ },
+ "charging_station": {
+ "units": {
+ "0": {
+ "applicableUnits": {
+ "0": {
+ "humanSingular": " минута",
+ "human": " минут"
+ },
+ "1": {
+ "human": " часов",
+ "humanSingular": " час"
+ },
+ "2": {
+ "human": " дней",
+ "humanSingular": " день"
+ }
+ }
+ },
+ "1": {
+ "applicableUnits": {
+ "0": {
+ "human": "Вольт"
+ }
+ }
+ },
+ "3": {
+ "applicableUnits": {
+ "0": {
+ "human": "киловатт"
+ },
+ "1": {
+ "human": "мегаватт"
+ }
+ }
+ }
+ }
}
-}
\ No newline at end of file
+}
diff --git a/langs/ru.json b/langs/ru.json
index 33513f764..f93dbfee4 100644
--- a/langs/ru.json
+++ b/langs/ru.json
@@ -1,175 +1,182 @@
{
- "general": {
- "questions": {
- "emailIs": "Адрес электронной почты у {category}: {email}",
- "phoneNumberIs": "Телефонный номер {category}: {phone}",
- "emailOf": "Какой адрес электронной почты у {category}?",
- "websiteIs": "Сайт: {website}",
- "websiteOf": "Какой сайт у {category}?",
- "phoneNumberOf": "Какой номер телефона у {category}?"
+ "general": {
+ "questions": {
+ "emailIs": "Адрес электронной почты у {category}: {email}",
+ "phoneNumberIs": "Телефонный номер {category}: {phone}",
+ "emailOf": "Какой адрес электронной почты у {category}?",
+ "websiteIs": "Сайт: {website}",
+ "websiteOf": "Какой сайт у {category}?",
+ "phoneNumberOf": "Какой номер телефона у {category}?"
+ },
+ "nameInlineQuestion": "Название {category} — $$$",
+ "noNameCategory": "{category} без имени",
+ "about": "С лёгкостью редактируйте и дополняйте OpenStreetMap на определённую тему",
+ "pickLanguage": "Выберите язык: ",
+ "add": {
+ "layerNotEnabled": "Слой {layer} не включён. Включите этот слой чтобы добавить точку",
+ "openLayerControl": "Открыть панель управления слоями",
+ "confirmButton": "Добавить {category} сюда.
Ваш вклад будет виден каждому
",
+ "confirmIntro": "Добавить {title} сюда?
Точка будет видна всем. Пожалуйста, добавляйте только то, что действительно существует. Много приложений используют эти данные.",
+ "stillLoading": "Данные ещё загружаются. Пожалуйста, немного подождите прежде чем добавлять новую точку.",
+ "zoomInFurther": "Приблизьте ещё чтобы добавить точку.",
+ "pleaseLogin": "Пожалуйста, войдите чтобы добавить новую точку",
+ "intro": "Вы нажали туда, где ещё нет данных.
",
+ "title": "Добавить новую точку?",
+ "addNew": "Добавить новую {category} здесь"
+ },
+ "osmLinkTooltip": "Посмотрите этот объект на OpenStreetMap чтобы увидеть его историю или отредактировать",
+ "number": "номер",
+ "skippedQuestions": "Несколько вопросов пропущены",
+ "oneSkippedQuestion": "Вопрос пропущен",
+ "skip": "Пропустить вопрос",
+ "cancel": "Отмена",
+ "save": "Сохранить",
+ "returnToTheMap": "Вернуться на карту",
+ "search": {
+ "error": "Что-то пошло не так…",
+ "nothing": "Ничего не найдено…",
+ "searching": "Поиск…",
+ "search": "Найти место"
+ },
+ "loginToStart": "Войдите, чтобы ответить на этот вопрос",
+ "welcomeBack": "Вы вошли, с возвращением!",
+ "loginWithOpenStreetMap": "Войти с помощью OpenStreetMap",
+ "opening_hours": {
+ "ph_not_known": " ",
+ "ph_open": "открыта",
+ "ph_closed": "закрыта",
+ "open_during_ph": "В праздничные дни эта точка",
+ "open_24_7": "Открыто круглосуточно",
+ "closed_permanently": "Закрыто на неизвестный срок",
+ "closed_until": "Закрыто до {date}",
+ "not_all_rules_parsed": "Часы работы этого магазина сложны. В элементе ввода игнорируются следующие правила:",
+ "openTill": "до",
+ "opensAt": "с",
+ "error_loading": "Ошибка: не удалось визуализировать эти часы работы."
+ },
+ "weekdays": {
+ "sunday": "Воскресенье",
+ "saturday": "Суббота",
+ "friday": "Пятница",
+ "thursday": "Четверг",
+ "wednesday": "Среда",
+ "tuesday": "Вторник",
+ "monday": "Понедельник",
+ "abbreviations": {
+ "sunday": "Вс",
+ "saturday": "Сб",
+ "friday": "Пт",
+ "thursday": "Чт",
+ "wednesday": "Ср",
+ "tuesday": "Вт",
+ "monday": "Пн"
+ }
+ },
+ "layerSelection": {
+ "title": "Выберите слои",
+ "zoomInToSeeThisLayer": "Увеличьте масштаб, чтобы увидеть этот слой"
+ },
+ "backgroundMap": "Фоновая карта",
+ "aboutMapcomplete": "О MapComplete
С помощью MapComplete вы можете обогатить OpenStreetMap информацией по одной теме. Ответьте на несколько вопросов, и через несколько минут ваши материалы будут доступны по всему миру! Сопровождающий темы определяет элементы, вопросы и языки для темы.
Узнайте больше
MapComplete всегда предлагает следующий шаг, чтобы узнать больше об OpenStreetMap.
- При встраивании в веб-сайт iframe ссылается на полноэкранную версию MapComplete
- Полноэкранная версия предлагает информацию об OpenStreetMap
- Просмотр работает без входа, но для редактирования требуется вход в OSM.
- Если вы не вошли в систему, вас попросят войти
- Ответив на один вопрос, вы можете добавлять новые точки на карту
- Через некоторое время отображаются актуальные OSM-метки с последующей ссылкой на вики
Вы заметили проблему? У вас есть запрос на функциональность? Хотите помочь с переводом? Зайдите на репозиторий с исходным кодом или трекер проблем.
Хотите увидеть свой прогресс? Следите за количеством правок на OsmCha.
",
+ "customThemeIntro": "Пользовательские темы
Это ранее просмотренные темы, созданные пользователями.",
+ "noTagsSelected": "Теги не выбраны",
+ "getStartedNewAccount": " или создать новую учетную запись",
+ "getStartedLogin": "Войти с помощью OpenStreetMap, чтобы начать работу",
+ "goToInbox": "Открыть входящие сообщения",
+ "fewChangesBefore": "Пожалуйста, ответьте на несколько вопросов о существующих точках, прежде чем добавить новую точку.",
+ "readYourMessages": "Пожалуйста, прочитайте все ваши сообщения на сайте OpenStreetMap перед тем как добавлять новую точку.",
+ "morescreen": {
+ "createYourOwnTheme": "Создать собственную тему MapComplete с чистого листа",
+ "streetcomplete": "Другое, похожее приложение — StreetComplete.",
+ "requestATheme": "Если вам нужен особенный квест, запросите его в issue-трекере",
+ "intro": "Больше тематических карт?
Нравится собирать геоданные?
Можете посмотреть другие темы."
+ },
+ "sharescreen": {
+ "fsIncludeCurrentLocation": "Включить текущее местоположение карты",
+ "fsIncludeCurrentLayers": "Включить текущие выбранные слои",
+ "fsIncludeCurrentBackgroundMap": "Включить текущий фоновый слой {name}",
+ "fsGeolocation": "Включить кнопку \"найди меня\" (только в мобильной версии)",
+ "fsSearch": "Включить строку поиска",
+ "fsUserbadge": "Включить кнопку входа в систему",
+ "fsWelcomeMessage": "Показать всплывающее окно с приветствием и соответствующие вкладки",
+ "fsLayers": "Включить выбор слоя карты",
+ "fsAddNew": "Включить кнопку \"добавить новую точку интереса\"",
+ "fsLayerControlToggle": "Открыть панель выбора слоя",
+ "editThemeDescription": "Добавить или изменить вопросы к этой теме карты",
+ "editThisTheme": "Редактировать эту тему",
+ "thanksForSharing": "Спасибо, что поделились!",
+ "copiedToClipboard": "Ссылка скопирована в буфер обмена",
+ "embedIntro": "Встроить на свой сайт
Пожалуйста, вставьте эту карту на свой сайт.
Мы призываем вас сделать это - вам даже не нужно спрашивать разрешения.
Карта бесплатна и всегда будет бесплатной. Чем больше людей пользуются ею, тем более ценной она становится.",
+ "addToHomeScreen": "Добавить на домашний экран
Вы можете легко добавить этот сайт на домашний экран вашего смартфона. Для этого нажмите кнопку \"Добавить на главный экран\" в строке URL.",
+ "intro": "Поделиться этой картой
Поделитесь этой картой, скопировав ссылку ниже и отправив её друзьям и близким:"
+ },
+ "attribution": {
+ "codeContributionsBy": "MapComplete был создан {contributors} и ещё {hiddenCount} соавторами ",
+ "mapContributionsByAndHidden": "Текущие видимые данные имеют правки, сделанные {contributors} и ещё {hiddenCount} пользователями",
+ "mapContributionsBy": "Текущие видимые данные имеют правки, сделанные {contributors}",
+ "iconAttribution": {
+ "title": "Используемые значки"
+ },
+ "themeBy": "Тема поддерживается {author}",
+ "attributionContent": "Все данные предоставлены OpenStreetMap, свободное повторное использование согласно Open DataBase License.
",
+ "attributionTitle": "Уведомление об авторстве"
+ },
+ "openStreetMapIntro": "Свободная карта
Было бы здорово если бы была одна карта, которую каждый может свободно использовать и редактировать? Использовать как общее хранилище для всей гео-информации? Тогда, все сайты с разной, неполной и несовместимой информацией (которая обычно устарела) будут больше не нужны.
OpenStreetMap такая карта. Данные карты могу быть свободно использованы (с аннотацией и публикацией изменений к данным). Более того, каждый может свободно добавлять информацию и исправлять ошибки. Этот сайт также использует OpenStreetMap. Все данные берутся оттуда, а ваши ответы и исправления отправляются обратно туда.
Огромное количество людей уже использует OpenStreetMap: Organic Maps, OsmAnd, а также карты в Facebook, Instagram, Apple-карты и Bing-карты (частично) используют OpenStreetMap. Если вы что-то измените здесь, это также будет отражено в этих приложениях - после их следующего обновления!
"
},
- "nameInlineQuestion": "Название {category} — $$$",
- "noNameCategory": "{category} без имени",
- "about": "С лёгкостью редактируйте и дополняйте OpenStreetMap на определённую тему",
- "pickLanguage": "Выберите язык: ",
- "add": {
- "layerNotEnabled": "Слой {layer} не включён. Включите этот слой чтобы добавить точку",
- "openLayerControl": "Открыть панель управления слоями",
- "confirmButton": "Добавить {category} сюда.
Ваш вклад будет виден каждому
",
- "confirmIntro": "Добавить {title} сюда?
Точка будет видна всем. Пожалуйста, добавляйте только то, что действительно существует. Много приложений используют эти данные.",
- "stillLoading": "Данные ещё загружаются. Пожалуйста, немного подождите прежде чем добавлять новую точку.",
- "zoomInFurther": "Приблизьте ещё чтобы добавить точку.",
- "pleaseLogin": "Пожалуйста, войдите чтобы добавить новую точку",
- "intro": "Вы нажали туда, где ещё нет данных.
",
- "title": "Добавить новую точку?",
- "addNew": "Добавить новую {category} здесь"
+ "index": {
+ "pickTheme": "Выберите тему ниже, чтобы начать.",
+ "#": "Эти надписи отображаются над кнопками тем, когда тема не загружена",
+ "intro": "MapComplete - это редактор OpenStreetMap, который показывает информацию с разделением по темам.",
+ "title": "Добро пожаловать в MapComplete"
},
- "osmLinkTooltip": "Посмотрите этот объект на OpenStreetMap чтобы увидеть его историю или отредактировать",
- "number": "номер",
- "skippedQuestions": "Несколько вопросов пропущены",
- "oneSkippedQuestion": "Вопрос пропущен",
- "skip": "Пропустить вопрос",
- "cancel": "Отмена",
- "save": "Сохранить",
- "returnToTheMap": "Вернуться на карту",
- "search": {
- "error": "Что-то пошло не так…",
- "nothing": "Ничего не найдено…",
- "searching": "Поиск…",
- "search": "Найти место"
+ "centerMessage": {
+ "retrying": "Не удалось загрузить данные. Попробуем ещё раз через {count} секунд…",
+ "ready": "Готово!",
+ "zoomIn": "Приблизьте чтобы посмотреть или изменить данные",
+ "loadingData": "Загружаются данные…"
},
- "loginToStart": "Войдите, чтобы ответить на этот вопрос",
- "welcomeBack": "Вы вошли, с возвращением!",
- "loginWithOpenStreetMap": "Войти с помощью OpenStreetMap",
- "opening_hours": {
- "ph_not_known": " ",
- "ph_open": "открыта",
- "ph_closed": "закрыта",
- "open_during_ph": "В праздничные дни эта точка",
- "open_24_7": "Открыто круглосуточно",
- "closed_permanently": "Закрыто на неизвестный срок",
- "closed_until": "Закрыто до {date}",
- "not_all_rules_parsed": "Часы работы этого магазина сложны. В элементе ввода игнорируются следующие правила:",
- "openTill": "до",
- "opensAt": "с",
- "error_loading": "Ошибка: не удалось визуализировать эти часы работы."
+ "image": {
+ "isDeleted": "Удалено",
+ "doDelete": "Удалить изображение",
+ "dontDelete": "Отмена",
+ "uploadDone": "Ваше изображение добавлено. Спасибо за помощь!",
+ "respectPrivacy": "Не фотографируйте людей и номерные знаки. Не загружайте снимки Google Maps, Google Street View и иные источники с закрытой лицензией.",
+ "uploadFailed": "Не удалось загрузить изображение. Проверьте, есть ли у вас доступ в Интернет и разрешены ли сторонние API? Браузеры Brave и UMatrix могут блокировать их.",
+ "ccb": "под лицензией CC-BY",
+ "ccbs": "под лицензией CC-BY-SA",
+ "cco": "в открытом доступе",
+ "willBePublished": "Ваше изображение будет опубликовано: ",
+ "pleaseLogin": "Пожалуйста, войдите в систему, чтобы добавить изображение",
+ "uploadingMultiple": "Загружаем {count} изображений…",
+ "uploadingPicture": "Загружаем изображение…",
+ "addPicture": "Добавить изображение"
},
- "weekdays": {
- "sunday": "Воскресенье",
- "saturday": "Суббота",
- "friday": "Пятница",
- "thursday": "Четверг",
- "wednesday": "Среда",
- "tuesday": "Вторник",
- "monday": "Понедельник",
- "abbreviations": {
- "sunday": "Вс",
- "saturday": "Сб",
- "friday": "Пт",
- "thursday": "Чт",
- "wednesday": "Ср",
- "tuesday": "Вт",
- "monday": "Пн"
- }
+ "reviews": {
+ "plz_login": "Войдите, чтобы оставить отзыв",
+ "attribution": "Отзывы созданы на основе Mangrove Reviews и доступны под лицензией CC-BY 4.0.",
+ "tos": "Создавая отзыв, вы соглашаетесь с TOS и политикой конфиденциальности Mangrove.reviews ",
+ "saved": " Отзыв сохранен. Спасибо, что поделились! ",
+ "saving_review": "Сохранение…",
+ "affiliated_reviewer_warning": "(Отзыв лица, связанного с заведением)",
+ "i_am_affiliated": "Я связан с этим объектом
Отметьте если вы создатель, владелец, работник, …",
+ "posting_as": "Публикация от имени",
+ "no_rating": "Нет рейтинга",
+ "write_a_comment": "Оставить отзыв…",
+ "no_reviews_yet": "Пока нет отзывов. Оставьте первый отзыв и помогите открытым данным и бизнесу!",
+ "name_required": "Необходимо название, чтобы просматривать и создавать отзывы",
+ "title_singular": "Один отзыв",
+ "title": "{count} отзыв(-ов)"
},
- "layerSelection": {
- "title": "Выберите слои",
- "zoomInToSeeThisLayer": "Увеличьте масштаб, чтобы увидеть этот слой"
+ "favourite": {
+ "reload": "Обновить данные",
+ "loginNeeded": "Вход
Личная раскладка доступна только пользователям OpenStreetMap",
+ "panelIntro": "Ваша личная тема
Активируйте свои любимые слои из официальных тем"
},
- "backgroundMap": "Фоновая карта",
- "aboutMapcomplete": "О MapComplete
С помощью MapComplete вы можете обогатить OpenStreetMap информацией по одной теме. Ответьте на несколько вопросов, и через несколько минут ваши материалы будут доступны по всему миру! Сопровождающий темы определяет элементы, вопросы и языки для темы.
Узнайте больше
MapComplete всегда предлагает следующий шаг, чтобы узнать больше об OpenStreetMap.
- При встраивании в веб-сайт iframe ссылается на полноэкранную версию MapComplete
- Полноэкранная версия предлагает информацию об OpenStreetMap
- Просмотр работает без входа, но для редактирования требуется вход в OSM.
- Если вы не вошли в систему, вас попросят войти
- Ответив на один вопрос, вы можете добавлять новые точки на карту
- Через некоторое время отображаются актуальные OSM-метки с последующей ссылкой на вики
Вы заметили проблему? У вас есть запрос на функциональность? Хотите помочь с переводом? Зайдите на репозиторий с исходным кодом или трекер проблем.
Хотите увидеть свой прогресс? Следите за количеством правок на OsmCha.
",
- "customThemeIntro": "Пользовательские темы
Это ранее просмотренные темы, созданные пользователями.",
- "noTagsSelected": "Теги не выбраны",
- "getStartedNewAccount": " или создать новую учетную запись",
- "getStartedLogin": "Войти с помощью OpenStreetMap, чтобы начать работу",
- "goToInbox": "Открыть входящие сообщения",
- "fewChangesBefore": "Пожалуйста, ответьте на несколько вопросов о существующих точках, прежде чем добавить новую точку.",
- "readYourMessages": "Пожалуйста, прочитайте все ваши сообщения на сайте OpenStreetMap перед тем как добавлять новую точку.",
- "morescreen": {
- "createYourOwnTheme": "Создать собственную тему MapComplete с чистого листа",
- "streetcomplete": "Другое, похожее приложение — StreetComplete.",
- "requestATheme": "Если вам нужен особенный квест, запросите его в issue-трекере",
- "intro": "Больше тематических карт?
Нравится собирать геоданные?
Можете посмотреть другие темы."
+ "delete": {
+ "delete": "Удалить",
+ "cancel": "Отмена"
},
- "sharescreen": {
- "fsIncludeCurrentLocation": "Включить текущее местоположение карты",
- "fsIncludeCurrentLayers": "Включить текущие выбранные слои",
- "fsIncludeCurrentBackgroundMap": "Включить текущий фоновый слой {name}",
- "fsGeolocation": "Включить кнопку \"найди меня\" (только в мобильной версии)",
- "fsSearch": "Включить строку поиска",
- "fsUserbadge": "Включить кнопку входа в систему",
- "fsWelcomeMessage": "Показать всплывающее окно с приветствием и соответствующие вкладки",
- "fsLayers": "Включить выбор слоя карты",
- "fsAddNew": "Включить кнопку \"добавить новую точку интереса\"",
- "fsLayerControlToggle": "Открыть панель выбора слоя",
- "editThemeDescription": "Добавить или изменить вопросы к этой теме карты",
- "editThisTheme": "Редактировать эту тему",
- "thanksForSharing": "Спасибо, что поделились!",
- "copiedToClipboard": "Ссылка скопирована в буфер обмена",
- "embedIntro": "Встроить на свой сайт
Пожалуйста, вставьте эту карту на свой сайт.
Мы призываем вас сделать это - вам даже не нужно спрашивать разрешения.
Карта бесплатна и всегда будет бесплатной. Чем больше людей пользуются ею, тем более ценной она становится.",
- "addToHomeScreen": "Добавить на домашний экран
Вы можете легко добавить этот сайт на домашний экран вашего смартфона. Для этого нажмите кнопку \"Добавить на главный экран\" в строке URL.",
- "intro": "Поделиться этой картой
Поделитесь этой картой, скопировав ссылку ниже и отправив её друзьям и близким:"
- },
- "attribution": {
- "codeContributionsBy": "MapComplete был создан {contributors} и ещё {hiddenCount} соавторами ",
- "mapContributionsByAndHidden": "Текущие видимые данные имеют правки, сделанные {contributors} и ещё {hiddenCount} пользователями",
- "mapContributionsBy": "Текущие видимые данные имеют правки, сделанные {contributors}",
- "iconAttribution": {
- "title": "Используемые значки"
- },
- "themeBy": "Тема поддерживается {author}",
- "attributionContent": "Все данные предоставлены OpenStreetMap, свободное повторное использование согласно Open DataBase License.
",
- "attributionTitle": "Уведомление об авторстве"
- },
- "openStreetMapIntro": "Свободная карта
Было бы здорово если бы была одна карта, которую каждый может свободно использовать и редактировать? Использовать как общее хранилище для всей гео-информации? Тогда, все сайты с разной, неполной и несовместимой информацией (которая обычно устарела) будут больше не нужны.
OpenStreetMap такая карта. Данные карты могу быть свободно использованы (с аннотацией и публикацией изменений к данным). Более того, каждый может свободно добавлять информацию и исправлять ошибки. Этот сайт также использует OpenStreetMap. Все данные берутся оттуда, а ваши ответы и исправления отправляются обратно туда.
Огромное количество людей уже использует OpenStreetMap: Organic Maps, OsmAnd, а также карты в Facebook, Instagram, Apple-карты и Bing-карты (частично) используют OpenStreetMap. Если вы что-то измените здесь, это также будет отражено в этих приложениях - после их следующего обновления!
"
- },
- "index": {
- "pickTheme": "Выберите тему ниже, чтобы начать.",
- "#": "Эти надписи отображаются над кнопками тем, когда тема не загружена",
- "intro": "MapComplete - это редактор OpenStreetMap, который показывает информацию с разделением по темам.",
- "title": "Добро пожаловать в MapComplete"
- },
- "centerMessage": {
- "retrying": "Не удалось загрузить данные. Попробуем ещё раз через {count} секунд…",
- "ready": "Готово!",
- "zoomIn": "Приблизьте чтобы посмотреть или изменить данные",
- "loadingData": "Загружаются данные…"
- },
- "image": {
- "isDeleted": "Удалено",
- "doDelete": "Удалить изображение",
- "dontDelete": "Отмена",
- "uploadDone": "Ваше изображение добавлено. Спасибо за помощь!",
- "respectPrivacy": "Не фотографируйте людей и номерные знаки. Не загружайте снимки Google Maps, Google Street View и иные источники с закрытой лицензией.",
- "uploadFailed": "Не удалось загрузить изображение. Проверьте, есть ли у вас доступ в Интернет и разрешены ли сторонние API? Браузеры Brave и UMatrix могут блокировать их.",
- "ccb": "под лицензией CC-BY",
- "ccbs": "под лицензией CC-BY-SA",
- "cco": "в открытом доступе",
- "willBePublished": "Ваше изображение будет опубликовано: ",
- "pleaseLogin": "Пожалуйста, войдите в систему, чтобы добавить изображение",
- "uploadingMultiple": "Загружаем {count} изображений…",
- "uploadingPicture": "Загружаем изображение…",
- "addPicture": "Добавить изображение"
- },
- "reviews": {
- "plz_login": "Войдите, чтобы оставить отзыв",
- "attribution": "Отзывы созданы на основе Mangrove Reviews и доступны под лицензией CC-BY 4.0.",
- "tos": "Создавая отзыв, вы соглашаетесь с TOS и политикой конфиденциальности Mangrove.reviews ",
- "saved": " Отзыв сохранен. Спасибо, что поделились! ",
- "saving_review": "Сохранение…",
- "affiliated_reviewer_warning": "(Отзыв лица, связанного с заведением)",
- "i_am_affiliated": "Я связан с этим объектом
Отметьте если вы создатель, владелец, работник, …",
- "posting_as": "Публикация от имени",
- "no_rating": "Нет рейтинга",
- "write_a_comment": "Оставить отзыв…",
- "no_reviews_yet": "Пока нет отзывов. Оставьте первый отзыв и помогите открытым данным и бизнесу!",
- "name_required": "Необходимо название, чтобы просматривать и создавать отзывы",
- "title_singular": "Один отзыв",
- "title": "{count} отзыв(-ов)"
- },
- "favourite": {
- "reload": "Обновить данные",
- "loginNeeded": "Вход
Личная раскладка доступна только пользователям OpenStreetMap",
- "panelIntro": "Ваша личная тема
Активируйте свои любимые слои из официальных тем"
- }
+ "split": {
+ "cancel": "Отмена"
+ }
}
diff --git a/langs/shared-questions/ca.json b/langs/shared-questions/ca.json
index 0967ef424..0d2249f07 100644
--- a/langs/shared-questions/ca.json
+++ b/langs/shared-questions/ca.json
@@ -1 +1,116 @@
-{}
+{
+ "undefined": {
+ "level": {
+ "question": "A quina planta està situat aquest element?",
+ "mappings": {
+ "3": {
+ "then": "Situat a primera planta"
+ },
+ "2": {
+ "then": "Situat a planta zero"
+ },
+ "1": {
+ "then": "Situat a planta zero"
+ },
+ "0": {
+ "then": "Situat a planta subterrani"
+ }
+ },
+ "render": "Situat a la planta {level}"
+ },
+ "email": {
+ "question": "Quina és l'adreça de correu electrònic de {name}?"
+ },
+ "dog-access": {
+ "question": "S'accepten gossos en aquest negoci?",
+ "mappings": {
+ "3": {
+ "then": "S'accepten gossos lliures"
+ },
+ "2": {
+ "then": "S'accepten gossos però lligats"
+ },
+ "1": {
+ "then": "No s'accepten gossos"
+ },
+ "0": {
+ "then": "S'accepten gossos"
+ }
+ }
+ },
+ "description": {
+ "question": "Hi ha quelcom rellevant que no t'hem preguntat? Afegeix-ho aquí.
No repeteixis informació que ja hi és"
+ },
+ "phone": {
+ "question": "Quin és el telèfon de {name}?"
+ },
+ "payment-options": {
+ "question": "Quins mètodes de pagament s'accepten aquí?",
+ "mappings": {
+ "1": {
+ "then": "S'accepten targetes de crèdit"
+ },
+ "0": {
+ "then": "S'accepten diners"
+ }
+ }
+ },
+ "opening_hours": {
+ "render": "Horari d'obertura
{opening_hours_table(opening_hours)}",
+ "question": "Quin és l'horari d'obertura de {name}?"
+ },
+ "service:electricity": {
+ "mappings": {
+ "2": {
+ "then": "No hi ha endolls disponibles per als clients però es pot carregar si es demana als responsables"
+ },
+ "1": {
+ "then": "Hi ha aslguns endolls disponibles per als clients de dins, on es poden carregar els aparells electrònics"
+ },
+ "0": {
+ "then": "Està ple d'endolls pels clients de dins, on es poden carregar els aparells electrònics"
+ },
+ "3": {
+ "then": "No hi ha endolls disponibles per als clients"
+ }
+ },
+ "question": "Aquest servei té endolls elèctrics, disponibles pels clients quan hi són dins?"
+ },
+ "wheelchair-access": {
+ "mappings": {
+ "1": {
+ "then": "És facilment arribable amb cadira de rodes"
+ },
+ "0": {
+ "then": "Aquest lloc està especialment adaptat per a les cadires de rodes"
+ },
+ "3": {
+ "then": "Aquest lloc no és accessible amb cadira de rodes"
+ },
+ "2": {
+ "then": "És possible fer servir cadira de rodes a aquest lloc però no és fàcil"
+ }
+ },
+ "question": "Aquest lloc és accessible amb cadira de rodes?"
+ },
+ "website": {
+ "question": "Quina és la web de {name}?"
+ },
+ "wikipedialink": {
+ "mappings": {
+ "0": {
+ "then": "No enllaçat amb Viquipèdia"
+ }
+ },
+ "question": "Quin és l'ítem a Viquipèdia?"
+ },
+ "wikipedia": {
+ "question": "Quina és la correspondent entitat a Wikidata?",
+ "mappings": {
+ "0": {
+ "then": "No hi ha cap enllaça a Viquipèdia encara"
+ }
+ }
+ }
+ }
+}
diff --git a/langs/shared-questions/de.json b/langs/shared-questions/de.json
index 24b5582b6..27cb65e94 100644
--- a/langs/shared-questions/de.json
+++ b/langs/shared-questions/de.json
@@ -94,6 +94,23 @@
}
},
"question": "Was ist der entsprechende Artikel auf Wikipedia?"
+ },
+ "service:electricity": {
+ "mappings": {
+ "0": {
+ "then": "Für Kunden stehen im Innenraum viele Steckdosen zur Verfügung, an denen sie ihre Geräte laden können"
+ },
+ "1": {
+ "then": "Für Kunden stehen im Innenraum wenig Steckdosen zur Verfügung, an denen sie ihre Geräte laden können"
+ },
+ "2": {
+ "then": "Für Kunden stehen im Innenraum keine Steckdosen zur Verfügung, aber Laden von Geräte könnte möglich sein, wenn das Personal gefragt wird"
+ },
+ "3": {
+ "then": "Für Kunden stehen im Innenraum keine Steckdosen zur Verfügung"
+ }
+ },
+ "question": "Gibt es an dieser Einrichtung Steckdosen, an denen Kunden ihre Geräte laden können?"
}
}
-}
\ No newline at end of file
+}
diff --git a/langs/shared-questions/ru.json b/langs/shared-questions/ru.json
index ace53f5cd..cbafd61c4 100644
--- a/langs/shared-questions/ru.json
+++ b/langs/shared-questions/ru.json
@@ -33,6 +33,13 @@
},
"website": {
"question": "Какой сайт у {name}?"
+ },
+ "dog-access": {
+ "mappings": {
+ "0": {
+ "then": "Собаки разрешены"
+ }
+ }
}
}
-}
\ No newline at end of file
+}
diff --git a/langs/themes/de.json b/langs/themes/de.json
index ff1dd3d63..07f704334 100644
--- a/langs/themes/de.json
+++ b/langs/themes/de.json
@@ -581,6 +581,25 @@
"shortDescription": "Eine Karte zum Ansehen und Bearbeiten verschiedener Elementen der Fahrradinfrastruktur.",
"title": "Fahrradinfrastruktur"
},
+ "cyclenodes": {
+ "description": "Diese Karte zeigt Knotenpunktnetzwerke für Radfahrer und erlaubt auch neue Knoten zu mappen",
+ "layers": {
+ "1": {
+ "presets": {
+ "0": {
+ "title": "Knotenpunkt"
+ },
+ "1": {
+ "title": "Knotenpunkt im Netzwerk Spree-Neiße"
+ }
+ },
+ "title": {
+ "render": "Knotenpunkt"
+ }
+ }
+ },
+ "title": "Fahrrad-Knotenpunktnetzwerke"
+ },
"cyclestreets": {
"description": "Eine Fahrradstraße ist eine Straße, auf der motorisierter Verkehr Radfahrer nicht überholen darf. Sie sind durch ein spezielles Verkehrsschild gekennzeichnet. Fahrradstraßen gibt es in den Niederlanden und Belgien, aber auch in Deutschland und Frankreich. ",
"layers": {
diff --git a/langs/themes/en.json b/langs/themes/en.json
index 84ceba6a3..66355eefc 100644
--- a/langs/themes/en.json
+++ b/langs/themes/en.json
@@ -609,6 +609,45 @@
"shortDescription": "A map where you can view and edit things related to the bicycle infrastructure.",
"title": "Bicycle infrastructure"
},
+ "cyclenodes": {
+ "description": "This map shows cycle node networks and allows you to add new nodes easily",
+ "layers": {
+ "0": {
+ "name": "node to node links",
+ "tagRenderings": {
+ "node2node-survey:date": {
+ "question": "When was this node to node link last surveyed?",
+ "render": "This node to node link was last surveyed on {survey:date}"
+ }
+ },
+ "title": {
+ "mappings": {
+ "0": {
+ "then": "node to node link {ref}"
+ }
+ },
+ "render": "node to node link"
+ }
+ },
+ "1": {
+ "name": "nodes",
+ "tagRenderings": {
+ "node-expected_rcn_route_relations": {
+ "question": "How many other cycle nodes does this node link to?",
+ "render": "This node links to {expected_rcn_route_relations} other cycle nodes."
+ },
+ "node-survey:date": {
+ "question": "When was this cycle node last surveyed?",
+ "render": "This cycle node was last surveyed on {survey:date}"
+ }
+ },
+ "title": {
+ "render": "cycle node {rcn_ref}"
+ }
+ }
+ },
+ "title": "Cycle Node Networks"
+ },
"cyclestreets": {
"description": "A cyclestreet is is a street where motorized traffic is not allowed to overtake cyclists. They are signposted by a special traffic sign. Cyclestreets can be found in the Netherlands and Belgium, but also in Germany and France. ",
"layers": {
diff --git a/langs/themes/nl.json b/langs/themes/nl.json
index 583b80ef4..d69c60b79 100644
--- a/langs/themes/nl.json
+++ b/langs/themes/nl.json
@@ -753,9 +753,7 @@
"grb": {
"description": "GRB Fixup",
"layers": {
- "3": {
- "description": "Dit gebouw heeft een foutmelding",
- "name": "Fixmes op gebouwen",
+ "1": {
"tagRenderings": {
"grb-fixme": {
"mappings": {
@@ -786,57 +784,6 @@
"grb-unit": {
"render": "De wooneenheid-aanduiding is {addr:unit} "
}
- },
- "title": {
- "mappings": {
- "0": {
- "then": "{fixme}"
- }
- },
- "render": "{addr:street} {addr:housenumber}"
- }
- },
- "5": {
- "description": "Dit gebouw heeft een foutmelding",
- "name": "Fixmes op gebouwen",
- "tagRenderings": {
- "grb-fixme": {
- "mappings": {
- "0": {
- "then": "Geen fixme"
- }
- },
- "question": "Wat zegt de fixme?",
- "render": "De fixme is {fixme}"
- },
- "grb-housenumber": {
- "mappings": {
- "0": {
- "then": "Geen huisnummer"
- }
- },
- "question": "Wat is het huisnummer?",
- "render": "Het huisnummer is {addr:housenumber}"
- },
- "grb-min-level": {
- "question": "Hoeveel verdiepingen ontbreken?",
- "render": "Dit gebouw begint maar op de {building:min_level} verdieping"
- },
- "grb-street": {
- "question": "Wat is de straat?",
- "render": "De straat is {addr:street}"
- },
- "grb-unit": {
- "render": "De wooneenheid-aanduiding is {addr:unit} "
- }
- },
- "title": {
- "mappings": {
- "0": {
- "then": "{fixme}"
- }
- },
- "render": "{addr:street} {addr:housenumber}"
}
}
},
diff --git a/langs/themes/ru.json b/langs/themes/ru.json
index 692300526..c50d57664 100644
--- a/langs/themes/ru.json
+++ b/langs/themes/ru.json
@@ -4,7 +4,7 @@
"title": "Открытая карта АВД (Автоматизированных внешних дефибрилляторов)"
},
"artwork": {
- "description": "Добро пожаловать на Open Artwork Map, карту статуй, бюстов, граффити и других произведений искусства по всему миру",
+ "description": "Добро пожаловать на открытую карта произведений искусства - карту статуй, бюстов, граффити и других произведений искусства по всему миру",
"title": "Открытая карта произведений искусства"
},
"benches": {
@@ -217,7 +217,9 @@
"title": "Кемпинги"
},
"charging_stations": {
- "description": "На этой карте вы можно найти и отметить информацию о зарядных станциях"
+ "description": "На этой карте вы можно найти и отметить информацию о зарядных станциях",
+ "title": "Зарядные станции",
+ "shortDescription": "Карта зарядных станций по всему миру"
},
"climbing": {
"description": "На этой карте вы найдете различные возможности для скалолазания, такие как скалодромы, залы для боулдеринга и скалы на природе.",
@@ -291,6 +293,15 @@
}
}
}
+ },
+ "units+": {
+ "0": {
+ "applicableUnits": {
+ "0": {
+ "human": " метр"
+ }
+ }
+ }
}
},
"title": "Открытая карта скалолазания"
@@ -302,6 +313,9 @@
"title": {
"render": "Улица"
}
+ },
+ "0": {
+ "name": "Cyclestreets"
}
}
},
@@ -375,10 +389,10 @@
"hydrant-state": {
"mappings": {
"0": {
- "then": "Гидрант (полностью или частично) в рабочем состоянии."
+ "then": "Гидрант (полностью или частично) в рабочем состоянии"
},
"2": {
- "then": "Гидрант демонтирован."
+ "then": "Гидрант демонтирован"
}
}
},
@@ -485,7 +499,7 @@
"title": "Карта карт"
},
"personal": {
- "description": "Создать персональную тему на основе доступных слоёв тем"
+ "description": "Создать персональную тему на основе доступных слоёв тем. Чтобы отобразить некоторые данные, откройте выбор слоя"
},
"playgrounds": {
"description": "На этой карте можно найти игровые площадки и добавить дополнительную информацию",
@@ -507,5 +521,152 @@
"description": "Нанесите все деревья на карту!",
"shortDescription": "Карта деревьев",
"title": "Деревья"
+ },
+ "hackerspaces": {
+ "layers": {
+ "0": {
+ "name": "Хакерспейс",
+ "tagRenderings": {
+ "hackerspaces-opening_hours": {
+ "mappings": {
+ "0": {
+ "then": "Открыто 24/7"
+ }
+ },
+ "render": "{opening_hours_table()}"
+ }
+ },
+ "presets": {
+ "0": {
+ "title": "Хакерспейс"
+ }
+ },
+ "title": {
+ "mappings": {
+ "0": {
+ "then": " {name}"
+ }
+ },
+ "render": "Хакерспейс"
+ },
+ "description": "Хакерспейс"
+ }
+ },
+ "title": "Хакерспейсы"
+ },
+ "openwindpowermap": {
+ "layers": {
+ "0": {
+ "title": {
+ "mappings": {
+ "0": {
+ "then": "{name}"
+ }
+ }
+ },
+ "units": {
+ "0": {
+ "applicableUnits": {
+ "0": {
+ "human": " мегаватт"
+ },
+ "1": {
+ "human": " киловатт"
+ },
+ "2": {
+ "human": " ватт"
+ },
+ "3": {
+ "human": " гигаватт"
+ }
+ }
+ },
+ "1": {
+ "applicableUnits": {
+ "0": {
+ "human": " метр"
+ }
+ }
+ }
+ }
+ }
+ },
+ "title": "Открытая карта ветроэнергетики"
+ },
+ "postboxes": {
+ "layers": {
+ "1": {
+ "name": "Почтовые отделения",
+ "tagRenderings": {
+ "OH": {
+ "render": "Часы работы: {opening_hours_table()}"
+ }
+ },
+ "title": {
+ "render": "Почтовое отделение"
+ },
+ "presets": {
+ "0": {
+ "title": "Почтовое отделение"
+ }
+ }
+ },
+ "0": {
+ "presets": {
+ "0": {
+ "title": "почтовый ящик"
+ }
+ },
+ "name": "Почтовые ящики",
+ "title": {
+ "render": "Почтовый ящик"
+ }
+ }
+ }
+ },
+ "cafes_and_pubs": {
+ "title": "Кафе и пабы"
+ },
+ "cycle_infra": {
+ "title": "Велосипедная дорожка"
+ },
+ "parkings": {
+ "title": "Парковка"
+ },
+ "sidewalks": {
+ "layers": {
+ "0": {
+ "title": {
+ "render": "{name}"
+ },
+ "name": "Тротуары"
+ }
+ },
+ "title": "Тротуары",
+ "description": "Экспериментальная тема"
+ },
+ "street_lighting": {
+ "layers": {
+ "2": {
+ "name": "Все улицы",
+ "title": {
+ "render": "Улица"
+ }
+ }
+ },
+ "title": "Уличное освещение"
+ },
+ "uk_addresses": {
+ "layers": {
+ "2": {
+ "description": "Адреса"
+ }
+ }
+ },
+ "etymology": {
+ "title": "Открытая этимологическая карта"
+ },
+ "observation_towers": {
+ "title": "Смотровые башни"
}
-}
\ No newline at end of file
+}