plot data points on a map
5 ビュー (過去 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!