plot data points on a map
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ahmad Saad
il 19 Ott 2023
Commentato: ahmad Saad
il 27 Ott 2023
i need to plot the attached figure.
where
col1: lat
col2 :long
col3: obs
6 Commenti
Risposta accettata
Akira Agata
il 20 Ott 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 Commenti
Dyuman Joshi
il 27 Ott 2023
@ahmad Saad, Please ask a new question - mention all the relevant information and provide data you are working with.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!