Hello I currently have a great geocoder I built in python using googles geocoder API service. It works great, but the issue that does not work great is that it will not correctly geocode intersecting addresses that are given in the CSV file for example:
9th & Upshur St NW
Park Rd & Holmead Pl NW
14th & Girard St NW
10th & K St NW
The &
sign in the addresses are causing an issue when geocoding and resulting in random coordinates.
Is these a work around or way to read these intersecting addresses with &
sign splitting the 2 addresses?
thanks