plot data points on a map
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
i need to plot the attached figure.
where
col1: lat
col2 :long
col3: obs
6 commentaires
Réponse acceptée
Akira Agata
le 20 Oct 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 commentaires
Dyuman Joshi
le 27 Oct 2023
@ahmad Saad, Please ask a new question - mention all the relevant information and provide data you are working with.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!