How to find the centroid of some points on map?
11 views (last 30 days)
Show older comments
I have a set of points on map whose latitude and longitudes are known to me. Points form an L shape or cross shape to be particular. I want to know the lat-lon of the centroid of these points. How can I find that?
0 Comments
Answers (1)
Image Analyst
on 28 May 2015
Using your known latitutes and longitudes of your known set of points, you can get a spatial calibration - it's just a simple line formula if your map does not cover much curvature of the earth.
Then use ginput() to have the user select the points, and plug the x,y into your formulas to get the actual latitude and longitude. It's just simple algebra. Really.
3 Comments
Image Analyst
on 29 May 2015
Oh, okay. Why can't you just take the mean of the x and y values to get the average (centroid) location?
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!