How can I label multiple routes on a geoscatter plot?

3 vues (au cours des 30 derniers jours)
Sean McPeak
Sean McPeak le 30 Juil 2022
I am generating multiple route plots using geoscatter. Each plot has its own color but I would like to label each of the plots as well. Below is the code I am using to generate the plots from various gpx files. I appreciate any suggestions for how this can be done.
fig = figure;
pos = fig.Position;
files = dir('cast*.gpx');
for i = 1:length(files)
filename = files(i).name;
route = gpxread(filename);
geoscatter(route.Latitude, route.Longitude, 50, "filled")
hold on
end

Réponse acceptée

Chunru
Chunru le 30 Juil 2022
fig = figure;
%pos = fig.Position;
%files = dir('cast*.gpx');
for i = 1:5 %length(files)
%filename = files(i).name;
%route = gpxread(filename);
route.Latitude = rand(10,1) + i;
route.Longitude = rand(10,1);
geoscatter(route.Latitude, route.Longitude, 50, "filled",'DisplayName', string(i))
hold on
end
legend

Plus de réponses (1)

Sean McPeak
Sean McPeak le 1 Août 2022
Thank you that is very helpful and is working well.

Catégories

En savoir plus sur Graphics Object Properties dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by