Matlab Mapping ToolBox GPS Cordinates Timestamp

2 views (last 30 days)
SharBar
SharBar on 27 Aug 2020
Edited: SharBar on 27 Aug 2020
Hi Everyone!
I'm trying to plot multiple gps paths of several devices on the same map with a time stamp next to each gps cordinate.
So far I've managed to plot the routes using:
latitude(1,i) = table2array(NewSet(i, 3));
longitude(1,i) = table2array(NewSet(i, 4));
%%
wm = webmap('World Imagery');
s = geoshape(latitude,longitude);
wmline(s,'Color', 'red', 'Width', 3);
But how do I add my timestamp array to the plot?
Thanks!

Answers (0)

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!