scatterに地図を重ねたい
8 views (last 30 days)
Show older comments
こんにちは。
添付写真のように、scatter の緯度経度のプロット図があります。
(2種類のscatterを重ねています)
これに地図を自動で表示させたいのですが、なにか方法はありますでしょうか?
geoscatterでは、値のカラー別表示ができませんでした。
0 Comments
Accepted Answer
Atsushi Ueno
on 22 Sep 2021
Edited: Atsushi Ueno
on 22 Sep 2021
上記リンク先のQAが示す通り、scatterと同様にgeoscatter同士を重ねる事が可能です。(但し、scatterとgeoscatterを重ねる事は「AxesとGeographicAxesが共存出来ない」為出来ませんでした)
見た目は違いますが「値のカラー別表示」も「2種類のgeoscatterを重ねる」も出来ます。表示する値も緯度経度の様ですし、今のプログラムのscatterをgeoscatterに変えれば良さそうに思えますが、何が問題なのか判りません。
lon = (-170:10:170);
lat1 = 50 * cosd(3*lon);
lat2 = 20 * cosd(3*lon);
geoscatter(lat1,lon,30,'blue','filled')
hold on
geoscatter(lat2,lon,50,cosd(lon),'filled')
colormap jet;
colorbar;
More Answers (0)
See Also
Categories
Find more on Scatter Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!