plot data points on a map
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ahmad Saad
el 19 de Oct. de 2023
Comentada: ahmad Saad
el 27 de Oct. de 2023
i need to plot the attached figure.
where
col1: lat
col2 :long
col3: obs
6 comentarios
Respuesta aceptada
Akira Agata
el 20 de Oct. de 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 comentarios
Dyuman Joshi
el 27 de Oct. de 2023
@ahmad Saad, Please ask a new question - mention all the relevant information and provide data you are working with.
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!