We hired some interns over the festive season to do some data capturing for us. They had to capture some addresses into a form and then centre the map on the location of the address. Needless to say, Interns being interns got this wrong and now we have some addresses that are in the wrong suburb and others in different cities. I have been tasked in finding all the addresses who Geo Co-ordinates don't match up/come close with the address.
The table I have is
Address:
Street line 1
Street line 2
Suburb
Postal Code
Town
Province
Longitude
Latitude
I don't want to do a manual audit through 1000s of records.
I had thought of doing the following:
1. Look up all the postal codes in all the records I have
2. Get the Co-ordinates for those
3. Calculate the distance between the actual postal code co-ordinate and the co ordinate we have stored
4. If distance exceeds X flag.
I have a few pondering points
1. How big must I make X. I was thinking 20 km. But it could be less.
2. Is there a smarter way to do what I am planning to do ?
Thanks
The table I have is
Address:
Street line 1
Street line 2
Suburb
Postal Code
Town
Province
Longitude
Latitude
I don't want to do a manual audit through 1000s of records.
I had thought of doing the following:
1. Look up all the postal codes in all the records I have
2. Get the Co-ordinates for those
3. Calculate the distance between the actual postal code co-ordinate and the co ordinate we have stored
4. If distance exceeds X flag.
I have a few pondering points
1. How big must I make X. I was thinking 20 km. But it could be less.
2. Is there a smarter way to do what I am planning to do ?
Thanks