필터 지우기
필터 지우기

Add Geoplot to cartesian plot

조회 수: 12 (최근 30일)
Ajmal Rasheeda Satheesh
Ajmal Rasheeda Satheesh 2023년 1월 25일
답변: Smit 2023년 2월 7일
I have a cartesian coordinate plot as shown below (with x and y being distances in meters), if I know the (lat,lon) of the origin (0,0), is it possible to overlay a map onto the plot?, with the limits not getting messed up?
Thank you for the help

답변 (1개)

Smit
Smit 2023년 2월 7일
Hi Ajmal,
I understand you are trying to overlay your Cartesian co-ordinate plot onto a map.
It might be possible to overlay your graph on a map instead using the “axesm” function.
An example of a map being created using the “axesm” function is as follows
coast = load('coast');
axesm('pcarree', 'Origin', 180,'MLabelParallel','south', ...
'Frame', 'on', 'Grid', 'on', 'Meridian', 'on', 'Parallel', 'on');
mapShow = geoshow(coast.lat, coast.long,'Color','black');
Then you can add your own axes to the map.
You can refer the documentation of “axesm” and “geoshow” for more information on the functions.

카테고리

Help CenterFile Exchange에서 Geographic Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by