You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We hardly ever suggest moving an address unless it's over a kilometre away from where it should be. However, sometimes every address on a street is shifted down by a few metres.
So, we should consider moving addresses if:
LINZ has moved the address in their database; and
the current location in OSM is still ±5 metres from the gazetted location; and
the location in OSM has never been refined by another mapper since it was originally imported
This will be tricky because we need to process every week of the LINZ changelog for the past 6 years, to determine criteria (1) above.
Another issue is that the planet file doesn't have enough metadata to determine criteria (3) above. This means we need to fetch the history of every candidate address from the OSM API. There are over 2 million addresses, of which at least 100,000 have been moved at some point since 2017.
Edit: Feb. 2024: We now have a fork of the pbf2json module, which gives us access to the version number, changeset number, and the last user to edit the node. This is not quite enough info, but allows us to handle the common cases where an address has never been touched since it was imported.
The text was updated successfully, but these errors were encountered:
We hardly ever suggest moving an address unless it's over a kilometre away from where it should be. However, sometimes every address on a street is shifted down by a few metres.
So, we should consider moving addresses if:
This will be tricky because we need to process every week of the LINZ changelog for the past 6 years, to determine criteria (1) above.
Another issue is that the planet file doesn't have enough metadata to determine criteria (3) above. This means we need to fetch the history of every candidate address from the OSM API. There are over 2 million addresses, of which at least 100,000 have been moved at some point since 2017.
Edit: Feb. 2024: We now have a fork of the pbf2json module, which gives us access to the
version
number,changeset
number, and the lastuser
to edit the node. This is not quite enough info, but allows us to handle the common cases where an address has never been touched since it was imported.The text was updated successfully, but these errors were encountered: