Changeset 27605
- Timestamp:
- 02/22/23 00:55:13 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/contrib/defleurian/netCDF/export_netCDF.m
r27264 r27605 88 88 disp(sprintf('===Now treating %s===',groups{i})); 89 89 end 90 if strcmp(groups{i}, 'qmu'),90 if any(strcmp(groups{i}, {'qmu'})), 91 91 disp('qmu is skipped until it is more stable'); 92 continue 93 end 94 if any(strcmp(groups{i},{'radaroverlay'})), 95 disp(sprintf('%s is skipped.',groups{i})); 92 96 continue 93 97 end … … 171 175 klass=class(md.(groups{i})); 172 176 klasstring = strcat(klass, '.',klass); 177 netcdf.putAtt(groupID,netcdf.getConstant('NC_GLOBAL'),'classgroup',groups{i}); 173 178 netcdf.putAtt(groupID,netcdf.getConstant('NC_GLOBAL'),'classtype',klasstring); 174 179 if sum(numel(Var) == size(Var)) == 0, %this is a 2D array or more (and not a vector with dimension 2 = 1)
Note:
See TracChangeset
for help on using the changeset viewer.