how to plot 3D data using NetCDF files ?

8 visualizaciones (últimos 30 días)
Mario Mohomes
Mario Mohomes el 28 de Mayo de 2021
Respondida: KSSV el 28 de Mayo de 2021
I'm trying to create a 3D plot in Matlab using a NetCDF file
I'm having a hard time starting
Matlab R2020a

Respuestas (1)

KSSV
KSSV el 28 de Mayo de 2021
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

Etiquetas

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by