scatterに地図を重ねたい
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
こんにちは。
添付写真のように、scatter の緯度経度のプロット図があります。
(2種類のscatterを重ねています)
これに地図を自動で表示させたいのですが、なにか方法はありますでしょうか?
geoscatterでは、値のカラー別表示ができませんでした。
0 commentaires
Réponse acceptée
Atsushi Ueno
le 22 Sep 2021
Modifié(e) : Atsushi Ueno
le 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;
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Scatter 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!