Hi,
I need to determine Lat/Long from Zip Codes. I want to do this by inputting a file of Zip Codes and then adding the Lat/Long to this file. I would like to do this using Excel VBA, if possible. Does anyone know how to do this?
Thanks!
Sharon
This is a discussion on Extract Lat/Long by Zip Code within the MapPoint Desktop Discussion forums, part of the Map Forums category; Hi, I need to determine Lat/Long from Zip Codes. I want to do this by inputting a file of Zip ...
Hi,
I need to determine Lat/Long from Zip Codes. I want to do this by inputting a file of Zip Codes and then adding the Lat/Long to this file. I would like to do this using Excel VBA, if possible. Does anyone know how to do this?
Thanks!
Sharon
Hi,
To find the Lat/Long from location there are at least 3 articles here. I dont have URL at hand, but please search in the article section.Code:FindResults Results; Results = MP.ActiveMap.FindAddressResults("", "", "", "", zip, GeoCountry.geoCountryBelgium); foreach(object o in Results) { Location Loc = o as Location; if (Loc != null) { // find lat/long from Location }
rgds, Wilfried
http://www.mestdagh.biz
Hi,
Just found the article (but there are more) on finding lat/long from location object:
http://www.mp2kmag.com/a13--kohl.ext....mappoint.html
rgds, Wilfried
http://www.mestdagh.biz
There are currently 1 users browsing this thread. (0 members and 1 guests)