geoplot(lat,lon) command error
이전 댓글 표시
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
VICTOR ALMEIDA
2020년 7월 22일
KSSV
2020년 7월 22일
You canuse plot striaght away right?
VICTOR ALMEIDA
2020년 7월 22일
KSSV
2020년 7월 22일
First use geobasemap and then try plot using hold on.
VICTOR ALMEIDA
2020년 7월 22일
채택된 답변
추가 답변 (1개)
KSSV
2020년 7월 22일
Try:
geoplot(lat,lon,'r-','LineWidth',2)
댓글 수: 3
VICTOR ALMEIDA
2020년 7월 22일
KSSV
2020년 7월 22일
Share the poins alone here.
VICTOR ALMEIDA
2020년 7월 22일
카테고리
도움말 센터 및 File Exchange에서 Geographic Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

