We need coordinates (long, lat) for a list of more than a thousand addresses, in order to calculate (haversine) distance between them and one other location.
At first we need to do it for this long list, but this only needs to happen once. After that we need to do it for one address regularly.
1 Like
Hey @Lavrans, if you’re using Mapbox, they have a geocoding API that might be helpful. Forward geocoding converts text into geographic coordinates (that would be your case). Reverse geocoding does the oposite, converting coordinates into a text description.
You may check out Google Maps’ Places API as well.