-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NSW LG 2024: Adding loader support for overwrite_distance_thresholds(…
…) rather than the 'tweaking coordinates until they work' that we've been doing until now Done to support two polling places that are literally across the road from each other and fall wel within the old 100m limit.
- Loading branch information
1 parent
fae5694
commit f7b311a
Showing
2 changed files
with
54 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,35 @@ | ||
{ | ||
"geocoding": { | ||
"enabled": false | ||
} | ||
} | ||
}, | ||
"fix_data_issues": [ | ||
{ | ||
"field": "name", | ||
"value": "Ingleburn Public School", | ||
"overwrite": [ | ||
{ | ||
"field": "lat", | ||
"value": -34.0005437 | ||
}, | ||
{ | ||
"field": "lon", | ||
"value": 150.8655947 | ||
} | ||
] | ||
}, | ||
{ | ||
"field": "name", | ||
"value": "Thornton Public School", | ||
"overwrite": [ | ||
{ | ||
"field": "lat", | ||
"value": -32.7796597 | ||
}, | ||
{ | ||
"field": "lon", | ||
"value": 151.6408342 | ||
} | ||
] | ||
} | ||
] | ||
} |