adding more traces to geoplot

36 次查看(过去 30 天)
Massimo Satler
Massimo Satler 2021-11-23
I would like to plot gps traces on map using geoplot function
My goal is to add traces to the plot without clearing the previous ones. Unfortunately hold on doesn't work for this kind of function.
the idea is the following one:
figure();
geoplot(lat1, long1);
hold on;
geoplot(lat2, long2);
and so on
is it possible?

回答(1 个)

Pranjal Kaura
Pranjal Kaura 2021-11-26
Hey Massimo,
Please go through the examples mentioned in the 'geoplot' documentation to know more about adding multiple lines to a plot. Could you share more details regarding the issue you are facing because the 'hold' functionlaity seems to be working for me. Here's a code snippet that I ran:
latSeattle = 47.62;
lonSeattle = -122.33;
latAnchorage = 61.20;
lonAnchorage = -149.9;
geoplot([latSeattle latAnchorage],[lonSeattle lonAnchorage],'g-*')
geolimits([45 62],[-149 -123])
hold on
geoplot([latSeattle-4 latAnchorage],[lonSeattle lonAnchorage + 1],'r-+')
If you're using 'geoglobe' and 'geoplot3' functions, you can go through this link to know more about plotting multiple 3D plots.
Hope this helps!
  1 个评论
Massimo Satler
Massimo Satler 2021-11-26
You are right, thanks for yor reply.
My problem arises form the script I wrote. Before calling geoplot, I had a figure where I abilitated hold on and in that case geoplot fails.
thanks for your help

请先登录,再进行评论。

类别

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