How to define the geographic axes for multiple geoscatter data
6 ビュー (過去 30 日間)
古いコメントを表示
NUR FATIN IRDINA ZULHAMIDI
2021 年 6 月 10 日
コメント済み: NUR FATIN IRDINA ZULHAMIDI
2021 年 6 月 10 日
Hi, I have plotted two geoscatter data but the data seems not overlap. Instead of overlap it plotted on the other side of map creating two maps. How can I make the data overlap? I've tried using geolimits but it didn't work.
2 件のコメント
採用された回答
Max Heiken
2021 年 6 月 10 日
Hello, what an interesting issue.
One solution would be to wrap one of the longitudes around using modulo:
long = mod(SuperMAGstation.Var2 + 180, 360) - 180;
assuming of course that Var2 is in degrees. Otherwise replace 180 by pi and 360 by 2*pi.
その他の回答 (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!