Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Yoou can access subsets these files with the Matlab netCDF package called ncread and with the python package netcdf4-python, see our Matlab example and

python example. A Matlab simple example how to make a publication quality figure is given here

 

Code Block
%% load data (local cache), D contains data, M contains all metadata
[D,M] = nc2struct('slib_juli2007.nc')

%% load data (via opendap)
L = nc2struct('http://opendap.deltares.nl/thredds/dodsC/opendap/deltares/landboundaries/northsea.nc')

%% plot
pcolorcorcen(D.longitude,D.latitude,D.mud)
colorbarwithvtext([M.mud.long_name,'[',M.mud.units,']'])
tickmap('ll')
grid on
axislat
plot(L.lon,L.lat,'k')
set(findfont,'fontsize',8)
title({M.nc_global.institution,'NCP map mud [version jul 2007]'})
print2screensize('slib_juli2007')

 

 

 

 

View File
NCK days 2015 sprintsession north sea grain sizes.pdf
NCK days 2015 sprintsession north sea grain sizes.pdf

...