Create variables inside the field of netcdf
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi,
I am trying to create a netcdf with the variables I am having in matrix form. However, I cannot create a variable inside a field.
fid=netcdf.create([outputpath '.nc'],'NETCDF4');
latdimID = netcdf.defDim(fid,'lat',length(lat));
lat_ID = netcdf.defVar(fid,'lat','double',latdimID);
netcdf.endDef(fid);
netcdf.putVar(fid,lat_ID, latvalues);
like this way of working, I am able to create a variable but I want my variable to be inside the field of "Europe" for example.
so in the end, I intend to something like this:
lat_ID = netcdf.defVar(fid,'Europe/lat','double',latdimID);
but of course, it is not correct way to proceed. Do you know how can I put all of my variables inside one field? with the help of this, I can classify my variables.
Thanks
댓글 수: 0
채택된 답변
MJFcoNaN
2022년 7월 20일
Hello,
"Europe" will be a group name in netcdf:
GID = netcdf.defGrp(fid,'Europe');
lat_ID = netcdf.defVar(GID,'lat','double',latdimID);
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 NetCDF에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!