Plot a point of my gridded map

3 次查看(过去 30 天)
Felipe Silva
Felipe Silva 2018-12-3
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
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)

类别

Help CenterFile Exchange 中查找有关 Geographic Plots 的更多信息

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by