distance from us location to canada border
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Daniel Pinto
le 17 Sep 2019
Réponse apportée : Ted Shultz
le 17 Sep 2019
Is there any matlab functionality or tool that allows me to find the minimal distance of a location to the border with canada , having as inputs the zipcode and lat/long of the location?
0 commentaires
Réponse acceptée
Ted Shultz
le 17 Sep 2019
I don’t know of a direct function to measure distance from a country, but I did need to do something very similar. This is how I did it:
1) I found a map file that gave the lat/lon of the county of interest. You can find help for Canada here:
2) I interpolated the segments that that no segment was too far apart from each other (“too far apart” is driven by your accuracy requirements). More points = more accurate at short distances
3) I calculated the distance from my input point to all these points using the distance function. The shortest value is your answer.
A more elegant solution may be to compare your input point against all the line segments rather than just the points defining your country outline.
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!