Hello,
I have a mat file with: lat(290x940), lon(290x940) and sst(290x940x365)
I want to plot one point with the 365 values of SST.
How can i see the exactly coordinate in the map to create a new var(1x1x365)?
Thanks.

답변 (1개)

Chad Greene
Chad Greene 2019년 3월 6일

0 개 추천

If you know the grid indices, it would just be
sst1 = squeeze(sst(row,col,:));
where the corresponding geo coordinates would be
Lat(row,col)
and
Lon(row,col)

카테고리

제품

릴리스

R2017a

질문:

2018년 12월 3일

답변:

2019년 3월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by