How to find all (latitude,longitude) that lie inside a rectangle with known x-y coordinates on my plot?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Aditya Wahi
am 10 Jul. 2017
Bearbeitet: Aditya Wahi
am 21 Jul. 2017
I have a file that contains the latitude and longitude, of several points over a region.
How do I iterate through my lat-long file, to return all the (lat,lon) that lies within some x-y limit on my plot? The problem being that the coordinates are floating points.
Any help is highly appreciated!
0 Kommentare
Akzeptierte Antwort
KSSV
am 10 Jul. 2017
doc inpolygon .
inpolygon gives you indices of points(x,y) that lie inside the boundary points/ closed region (xb,yb). With these indices, you can select your points which lie inside the given closed region.
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!