plot data points on a map
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
ahmad Saad
am 19 Okt. 2023
Kommentiert: ahmad Saad
am 27 Okt. 2023
i need to plot the attached figure.
where
col1: lat
col2 :long
col3: obs
6 Kommentare
Akzeptierte Antwort
Akira Agata
am 20 Okt. 2023
How about the following?
data = readmatrix("https://jp.mathworks.com/matlabcentral/answers/uploaded_files/1515856/plot_map2.csv");
figure
geoscatter(data(:,1), data(:,2), "m.")
geobasemap topographic
geolimits([-30 45], [-20 50])
7 Kommentare
Dyuman Joshi
am 27 Okt. 2023
@ahmad Saad, Please ask a new question - mention all the relevant information and provide data you are working with.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!