how to plot 3D data using NetCDF files ?

Antworten (1)

KSSV
KSSV am 28 Mai 2021

0 Stimmen

Reading ncfile is very easy in MATLAB. You need to know only very few functions. Read about ncdisp, ncread.
ncfile = 'san_diego_bay_P020_2017.nc' ;
lon = ncread(ncfile,'lon') ;
lat = ncread(ncfile,'lat') ;
B = ncread(ncfile,'Band1') ;
pcolor(lon,lat,B')
shading interp
colorbar

Produkte

Version

R2020a

Tags

Gefragt:

am 28 Mai 2021

Beantwortet:

am 28 Mai 2021

Community Treasure Hunt

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

Start Hunting!

Translated by