How to find the border points for a set of latitude and longitude coordinates

P
Patrick · Jan 24, 2022 · 2.1K views
Question
Hi,   I am looking for the best way to approach a code that I am attempting to write, I don't have much experience using the Mapping Toolbox in Matlab and am hoping that someone else may and can point me in the right direction. I have the latitude and longitude coordinates for ~100 points in a location that is approximately 5 squares miles in area. I am looking to plot each point in that location, and then from there determine what the basic outline of that area is.   For example, I want to know which points lie on the North edge of the area, which points like on the East edge, which ones are on the South edge and which ones are on the West edge.   If anyone has any advice to help me get started that would be very appreciated.  
Expert Answer
Profile picture of Kshitij Singh
Kshitij Singh PhD Expert
Answered Aug 20, 2026
You don't actually need Mapping TB to find boundaries. You can do it with convhull or, if you have 14b, boundary.
 
But perhaps you want something even simpler than that. To get the points on the North edge, you could just do
idxNorth = (latitude == max(latitude));
northLat = latitude(idxNorth);
northLon = longitude(idxNorth);

This gets only the points that have the exact same latitude as the northernmost point. Use some other condition if that's too exacting (such as latitude > threshhold_latitude).

 

100% Run Guarantee 3-Hour Fast-Track Delivery

Need a Custom Version or Complete Simulation for This Problem?

Our 500+ PhD engineers build, debug, and optimize working MATLAB scripts and Simulink (.slx) models tailored to your exact assignment rubrics with zero plagiarism.

Tested on MATLAB R2024b / R2026a
Turnitin 0% Plagiarism Report
Free 7-Day Revisions Guarantee
Have a different question? Ask here

Get a Free Consultation or a Sample Assignment Review!