How to define the geographic axes for multiple geoscatter data

조회 수: 3 (최근 30일)
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
KSSV
KSSV 2021년 6월 10일
How did you plot the map and data?
NUR FATIN IRDINA ZULHAMIDI
NUR FATIN IRDINA ZULHAMIDI 2021년 6월 10일
figure
gx = geoaxes;
lat1 = Earthquake.latitude;
lat2 = Earthquake.longitude;
EQ_location = geoscatter (lat1, lat2, 'o','filled');
hold on;
lat = SuperMAGstation.Var3;
long = SuperMAGstation.Var2;
stats = SuperMAGstation.Var1;
Station = geoscatter (gx,lat, long,'^','filled');
geolimits([-75 75],[-180 180]);
geobasemap streets;
hold off;

댓글을 달려면 로그인하십시오.

채택된 답변

Max Heiken
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 CenterFile Exchange에서 Geographic Plots에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by