scatterに地図を重ねたい
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
こんにちは。
添付写真のように、scatter の緯度経度のプロット図があります。
(2種類のscatterを重ねています)
これに地図を自動で表示させたいのですが、なにか方法はありますでしょうか?
geoscatterでは、値のカラー別表示ができませんでした。
0 Kommentare
Akzeptierte Antwort
Atsushi Ueno
am 22 Sep. 2021
Bearbeitet: Atsushi Ueno
am 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;
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Scatter Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!