Plot a point of my gridded map

2 Ansichten (letzte 30 Tage)
Felipe Silva
Felipe Silva am 3 Dez. 2018
Beantwortet: Chad Greene am 6 Mär. 2019
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.

Antworten (1)

Chad Greene
Chad Greene am 6 Mär. 2019
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)

Kategorien

Mehr zu Geographic Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by