Best tool for analysing/altering netcdf data (beyond read-only)
5 views (last 30 days)
Show older comments
Hello,
I have a large netcdf file that I would like to do some processing on. CDO software is not adequate enough and I need to resort to using matlab. I can access the data easily with the 'ncread' commands etc but I would like to know how to apply an analysis (say, an equation using a few varibles of the dataset) on the netcdf file using matlab. For instance, can I use matlab to create a new variable in the netcdf file? I have seen the NCToolBox add on for Matlab but this is read-only.
I have a netcdf file with about 10 climate variables and I would like to implement a scheme to calculate a new variable directly within the netcdf. I can use ncread to read in the data but then I am not too sure how I keep other attributes such as time when performing the calculations. My scheme will involve a few steps as well as boolean analysis, so I am a bit confused there.
Thank you!
Hope I explained that well enough,
0 Comments
Answers (3)
Ashish Uthama
on 17 Jun 2015
Once you get the data into MATLAB using ncread, then you can leverage any of MATLAB's analysis functionality on it (its just numbers to MATLAB at this point).
4 Comments
Ashish Uthama
on 17 Jun 2015
Edited: Ashish Uthama
on 17 Jun 2015
I am not sure I understand what you mean by - "calculate a new variable directly within the netcdf... ", "keep other attributes"... "boolean analysis". My interpretation - "I want to read multiple variables from a netcdf file, do some computation using all of them and write a new variable back to the same file". Yes, this can be done with ncread, all of MATLAB and ncwrite respectively.
You might get a more helpful answer with a more specific detailed question.
Chad Greene
on 17 Jun 2015
I'm not sure what the problem is. NetCDF files contain matrices, which are well suited for Matlab (MatrixLaboratory). To get a variable like sea surface temperature,
sst = ncread('myfile.nc','sst');
Then you can do whatever analysis you want on the sst matrix. After you've used ncread the analysis part of your question has nothing to do with the fact that the matrix originally came from a NetCDF file. When you're satisfied with your analysis, use ncwrite to write a NetCDF file with whatever variables you'd like.
hafez ahmad
on 16 Jan 2020
I did in the following way.
NETCDF_File1='C:/Users/hafez/personal/GIS DATA/winds/uv201109.nc'
ncid1 = netcdf.open(NETCDF_File1,'NC_NOWRITE');
lon= netcdf.getVar(ncid1,3);
lat= netcdf.getVar(ncid1,2);
u=netcdf.getVar(ncid1,4);
v=netcdf.getVar(ncid1,5);
w=netcdf.getVar(ncid1,6);
0 Comments
See Also
Categories
Find more on NetCDF in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!