aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rwxr-xr-xbin/reduceDuplicates.js1
-rwxr-xr-xbin/reduceOverlap.js10
-rwxr-xr-xbin/reduceRangeDuplicates.js23
-rw-r--r--test/fixtures/reduceOverlap/AndersonStreet.geojson81
5 files changed, 112 insertions, 5 deletions
diff --git a/README.md b/README.md
index 01d498a..b48a7b8 100644
--- a/README.md
+++ b/README.md
@@ -64,6 +64,8 @@ Next, drop address ranges where the range endpoints are separately mapped (see [
Even if we are lacking the intermediate address points within the range, we still drop the range as software can interpolate intermediate addresses from the two endpoints.
+Also where one of the range endpoints is mapped with `addr:flats` and the range itself has no `addr:flats` then the range is removed (for example at _116 Anderson Street, South Yarra_).
+
### Omitted addresses
Source addresses are omitted:
diff --git a/bin/reduceDuplicates.js b/bin/reduceDuplicates.js
index 0880abf..e4373c1 100755
--- a/bin/reduceDuplicates.js
+++ b/bin/reduceDuplicates.js
@@ -45,7 +45,6 @@ const index = new Transform({
}
const key = [
- // feature.properties['addr:unit:prefix'],
feature.properties['addr:unit'],
feature.properties['addr:housenumber'],
feature.properties['addr:street'],
diff --git a/bin/reduceOverlap.js b/bin/reduceOverlap.js
index 90ca036..7414241 100755
--- a/bin/reduceOverlap.js
+++ b/bin/reduceOverlap.js
@@ -1,5 +1,9 @@
#!/usr/bin/env node
+/**
+ * Reduce overlapping features which can be combined together into a single feature.
+ */
+
const fs = require('fs')
const { Readable, Transform, pipeline } = require('stream')
const ndjson = require('ndjson')
@@ -85,7 +89,7 @@ const reduce = new Transform({
// multiple features with the same geometry
// group by housenumber, street, suburb, state, postcode to reduce units into addr:flats
- // groupedFeatures all all the features at the same point
+ // groupedFeatures is all the features at the same point
const featuresGroupByNonUnit = {}
groupedFeatures.forEach(feature => {
const key = [
@@ -175,7 +179,9 @@ const reduce = new Transform({
})
/**
- * limit values
+ * Per https://wiki.openstreetmap.org/wiki/API_v0.6#Maximum_string_lengths
+ * tag values are limited to 255 characters. Because some addr:flats values can
+ * exceed this, they are split into addr:flatsN tags.
*/
let limitValuesIndex = 0
const limitValues = new Transform({
diff --git a/bin/reduceRangeDuplicates.js b/bin/reduceRangeDuplicates.js
index 89f8a11..6fac0b5 100755
--- a/bin/reduceRangeDuplicates.js
+++ b/bin/reduceRangeDuplicates.js
@@ -134,6 +134,9 @@ const reduceRange = new Transform({
let foundStart = false
let foundEnd = false
+ let matchedStart
+ let matchedEnd
+
let startNum
let endNum
let pre = ''
@@ -142,6 +145,7 @@ const reduceRange = new Transform({
for (const matchCandidate of matchCandidates) {
if (!foundStart && start === matchCandidate.properties['addr:housenumber']) {
foundStart = true
+ matchedStart = matchCandidate
const match = start.match(regexp)
if (match && match.groups) {
@@ -152,6 +156,7 @@ const reduceRange = new Transform({
}
if (!foundEnd && end === matchCandidate.properties['addr:housenumber']) {
foundEnd = true
+ matchedEnd = matchCandidate
const match = end.match(regexp)
if (match && match.groups) {
@@ -203,8 +208,22 @@ const reduceRange = new Transform({
// keep track of removed features for filter B, so we don't double remove both range and midpoints
rangesRemovedInFilterA[hash(feature)] = true
} else {
- // since not both start and end found, then still include the range
- this.push(feature)
+ // not both start and end found,
+ // if one of start or end found and that start/end has addr:flats...
+ if (foundStart || foundEnd) {
+ // ...if the range has no flats AND the non-range has addr:flats
+ if (!feature.properties['addr:flats'] && (
+ (matchedStart && matchedStart.properties['addr:flats']) || (matchedEnd && matchedEnd.properties['addr:flats'])
+ )) {
+ // drop the range, eg "112-116 Anderson Street, South Yarra"
+ } else {
+ // then still include the range
+ this.push(feature)
+ }
+ } else {
+ // then still include the range
+ this.push(feature)
+ }
}
} else {
// there are no non-ranges on this street so still include the range
diff --git a/test/fixtures/reduceOverlap/AndersonStreet.geojson b/test/fixtures/reduceOverlap/AndersonStreet.geojson
new file mode 100644
index 0000000..12df469
--- /dev/null
+++ b/test/fixtures/reduceOverlap/AndersonStreet.geojson
@@ -0,0 +1,81 @@
+{"type":"Feature","properties":{"addr:unit":"3","addr:housenumber":"2","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839026,-37.8340946]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"2","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839026,-37.8340946]}}
+{"type":"Feature","properties":{"addr:unit":"4","addr:housenumber":"2","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839026,-37.8340946]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"14","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839418,-37.833906]}}
+{"type":"Feature","properties":{"addr:unit":"5","addr:housenumber":"136-144","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849422,-37.8288766]}}
+{"type":"Feature","properties":{"addr:housenumber":"22-30","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9840072,-37.8335917]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"16-18","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839682,-37.8337713]}}
+{"type":"Feature","properties":{"addr:unit":"3","addr:housenumber":"14","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839418,-37.833906]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"30","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9840072,-37.8335917]}}
+{"type":"Feature","properties":{"addr:housenumber":"134","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849119,-37.8291331]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"14","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839418,-37.833906]}}
+{"type":"Feature","properties":{"addr:unit":"6","addr:housenumber":"134","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849119,-37.8291331]}}
+{"type":"Feature","properties":{"addr:housenumber":"12-14","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839418,-37.833906]}}
+{"type":"Feature","properties":{"addr:housenumber":"136-144","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849422,-37.8288766]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"16-18","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839682,-37.8337713]}}
+{"type":"Feature","properties":{"addr:housenumber":"118-120","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9847156,-37.8301073]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"134","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849119,-37.8291331]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"136-144","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849422,-37.8288766]}}
+{"type":"Feature","properties":{"addr:unit":"3","addr:housenumber":"134","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849119,-37.8291331]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"134","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849119,-37.8291331]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"136-144","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849422,-37.8288766]}}
+{"type":"Feature","properties":{"addr:unit":"5","addr:housenumber":"134","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849119,-37.8291331]}}
+{"type":"Feature","properties":{"addr:unit":"6","addr:housenumber":"136-144","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849422,-37.8288766]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"2","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839026,-37.8340946]}}
+{"type":"Feature","properties":{"addr:housenumber":"44-46","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9841387,-37.8329361]}}
+{"type":"Feature","properties":{"addr:unit":"4","addr:housenumber":"134","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849119,-37.8291331]}}
+{"type":"Feature","properties":{"addr:unit":"3","addr:housenumber":"16-18","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839682,-37.8337713]}}
+{"type":"Feature","properties":{"addr:housenumber":"2-10","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839026,-37.8340946]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"30","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9840072,-37.8335917]}}
+{"type":"Feature","properties":{"addr:unit":"4","addr:housenumber":"136-144","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849422,-37.8288766]}}
+{"type":"Feature","properties":{"addr:housenumber":"130-132","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9848345,-37.8294965]}}
+{"type":"Feature","properties":{"addr:unit":"4","addr:housenumber":"16-18","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839682,-37.8337713]}}
+{"type":"Feature","properties":{"addr:unit":"5","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"4","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"9","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"16","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"15","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"6","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"10","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"12","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"11","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"14","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"7","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"8","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:housenumber":"62-90","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9859246,-37.8316149]}}
+{"type":"Feature","properties":{"addr:housenumber":"86","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9859246,-37.8316149]}}
+{"type":"Feature","properties":{"addr:unit":"4","addr:housenumber":"116","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9846761,-37.8303049]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"116","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9846761,-37.8303049]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"116","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9846761,-37.8303049]}}
+{"type":"Feature","properties":{"addr:unit":"5","addr:housenumber":"116","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9846761,-37.8303049]}}
+{"type":"Feature","properties":{"addr:unit":"3","addr:housenumber":"116","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9846761,-37.8303049]}}
+{"type":"Feature","properties":{"addr:unit":"6","addr:housenumber":"116","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9846761,-37.8303049]}}
+{"type":"Feature","properties":{"addr:housenumber":"112-116","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9846761,-37.8303049]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:unit":"4","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:unit":"7","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:unit":"8","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:unit":"10","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:housenumber":"122-124","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:unit":"5","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:unit":"9","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:unit":"6","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:unit":"3","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:housenumber":"126-128","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984795,-37.8296941]}}
+{"type":"Feature","properties":{"addr:unit":"3","addr:housenumber":"136-144","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9849422,-37.8288766]}}
+{"type":"Feature","properties":{"addr:housenumber":"16-20","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9839682,-37.8337713]}}
+{"type":"Feature","properties":{"addr:housenumber":"62-108","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9859246,-37.8316149]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"122","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.984755,-37.8299192]}}
+{"type":"Feature","properties":{"addr:unit":"3","addr:housenumber":"54-60","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9842686,-37.8323056]}}
+{"type":"Feature","properties":{"addr:unit":"1","addr:housenumber":"120","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9847156,-37.8301073]}}
+{"type":"Feature","properties":{"addr:housenumber":"36","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9845175,-37.8332129]}}
+{"type":"Feature","properties":{"addr:unit":"3","addr:housenumber":"120","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9847156,-37.8301073]}}
+{"type":"Feature","properties":{"addr:unit":"4","addr:housenumber":"120","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9847156,-37.8301073]}}
+{"type":"Feature","properties":{"addr:unit":"5","addr:housenumber":"120","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9847156,-37.8301073]}}
+{"type":"Feature","properties":{"addr:unit":"2","addr:housenumber":"120","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9847156,-37.8301073]}}
+{"type":"Feature","properties":{"addr:housenumber":"36-42","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9841026,-37.8331179]}}
+{"type":"Feature","properties":{"addr:housenumber":"38","addr:street":"Anderson Street","addr:suburb":"South Yarra","addr:state":"VIC","addr:postcode":"3141"},"geometry":{"type":"Point","coordinates":[144.9841026,-37.8331179]}}