how to create a STRUCTURE composed of variables from .NC files
조회 수: 8 (최근 30일)
이전 댓글 표시
I have a very heavy set of .NC files (ERA 5 from Copernicus) to use within other scripts. They are the data relating to the characteristics of the winds.
I would therefore like to divide the .NC files into a STRUCTURE composed of all the variables present within the files, so that I can insert that structure within the other scripts and not re-read the.NC files from scratch, but taking into consideration directly the variable that interests me within the structure.
the variables are lat, long, altitude, time, z, u, v.
Can anyone help me?
댓글 수: 2
KSSV
2022년 7월 6일
You can read the file then and there...why you want to fill the memory by reading the whole file and conevrting it into a variable?
답변 (1개)
Walter Roberson
2022년 7월 6일
source = 'something appropriate';
vars = ["lat", "long", "altitude", "time", "z", "u", "v"];
for var = vars
HeavyStruct.(var) = ncread(source, var);
end
댓글 수: 6
Walter Roberson
2022년 7월 10일
Earlier, when you gave the names of the variables, none of the names ended in "90", but you then changed so that they all end in "90". What does ncinfo say that the variable names are?
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!