geoplot(lat,lon) command error
Show older comments
I am trying to plot a buoy trajectory profile across the ocean surface. I have the trajectory data in an NC file that I have uploaded to MATLAB however it seems as if my geoplot command is connecting my points vertically in the water column (the buoy collects data as deep as 2,000m as it rises to the surface) instead of the buoys breaching points along the surface. I was able to create a red line running through the points once, but never again. The command I have been using after I upload the file to MATLAB is:
lat=ncread(filename,'LATITUDE')
lon=ncread(filename,'LONGITUDE')
geoplot(lat,lon,'r','LineWidth',2)
geobasemap('landcover')
I attached the pictures as a reference so that hopefully someone can understand what my issue is. I added the arrows and numbers to the map with the solid red line as a guide to the buoy trajector after the map was created. I am also confused at how I was able to do it once but not again while using the same commands.
How can I recreate the map that has the solid line running through the points?
5 Comments
VICTOR ALMEIDA
on 22 Jul 2020
KSSV
on 22 Jul 2020
You canuse plot striaght away right?
VICTOR ALMEIDA
on 22 Jul 2020
KSSV
on 22 Jul 2020
First use geobasemap and then try plot using hold on.
VICTOR ALMEIDA
on 22 Jul 2020
Accepted Answer
More Answers (1)
KSSV
on 22 Jul 2020
Try:
geoplot(lat,lon,'r-','LineWidth',2)
3 Comments
VICTOR ALMEIDA
on 22 Jul 2020
KSSV
on 22 Jul 2020
Share the poins alone here.
VICTOR ALMEIDA
on 22 Jul 2020
Categories
Find more on Geographic Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
