Exemple #1
0
        private void processLocations()
        {
            //convert the lat lon coordinates to utm
            //and prune the path
            _path.processLocations(_locationSeperation);
            //get the reverse geocoded locations
            _addresses = new List <Address>();
            //iterate through the locations, look it up in the cache, if it is
            //found, the use it. if it is not then ask google or geonames
            Thread t = new Thread(getLocations);

            t.Start();
        }