adding more traces to geoplot

43 visualizaciones (últimos 30 días)
Massimo Satler
Massimo Satler el 23 de Nov. de 2021
Comentada: Massimo Satler el 26 de Nov. de 2021
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?

Respuestas (1)

Pranjal Kaura
Pranjal Kaura el 26 de Nov. de 2021
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 comentario
Massimo Satler
Massimo Satler el 26 de Nov. de 2021
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

Iniciar sesión para comentar.

Categorías

Más información sobre Geographic Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by