Distances between specific points between two points
Ältere Kommentare anzeigen
With Matrix of longitudes and latitudes, I would like to set the standard point on (lat, lon) = (40 -75)
and calculate the distances (in meter) between the standard point and each point (lat and lon individually).
My code is as follows.
x0 = 0;
y0 = 0;
lat0 = 40;
lon0 = -75;
dlat = latmat - lat0;
dlon = lonmat - lon0;
dx = 110*cosd(latmat)*dlon;
dy = 110*dlat;
x = 1000* (dx + x0);
y = 1000* (dy + y0):
The problem is Distances of X are extremely larger than those of Y.....
4 Kommentare
darova
am 25 Apr. 2019
By "distance between points" you mean arc length on a sphere?

Chihiro Omori
am 27 Apr. 2019
darova
am 27 Apr. 2019

Find horde
nehad mohamed
am 7 Jan. 2021
I want a tool like a ruler to measure distances in dicom images. In cm. using matlab
Antworten (2)
Mark Sherstan
am 25 Apr. 2019
Bearbeitet: Mark Sherstan
am 25 Apr. 2019
0 Stimmen
Use this awesome function from the file exchange: https://www.mathworks.com/matlabcentral/fileexchange/38812-latlon-distance and then place it in a loop to store your results in an array or otherwise.
nehad mohamed
am 7 Jan. 2021
0 Stimmen
I want a tool like a ruler to measure distances in dicom images. In cm. using matlab
Kategorien
Mehr zu Scalar Volume Data finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!