plot data points on a map
3 次查看(过去 30 天)
显示 更早的评论
i need to plot the attached figure.
where
col1: lat
col2 :long
col3: obs
6 个评论
采纳的回答
Akira Agata
2023-10-20
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 个评论
Dyuman Joshi
2023-10-27
@ahmad Saad, Please ask a new question - mention all the relevant information and provide data you are working with.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Geographic Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!