Changeset 870 in lmdz_wrf
- Timestamp:
- Jun 18, 2016, 2:32:17 PM (9 years ago)
- Location:
- trunk/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/nc_var.py
r849 r870 37 37 'get_namelist_vars', \ 38 38 'getvalues_lonlat', 'grattr', \ 39 'grmattr', 'i gattrs', 'increaseDimvar', 'isgattrs', 'isvattrs', 'ivars', 'ivattrs',\40 ' maskvar', 'model_characteristics',\39 'grmattr', 'idims', 'igattrs', 'increaseDimvar', 'isgattrs', 'isvattrs', 'ivars', \ 40 'ivattrs', 'maskvar', 'model_characteristics', \ 41 41 'ncreplace', 'ncstepdiff', 'netcdf_concatenation', 'netcdf_fold_concatenation', \ 42 42 'Partialmap_Entiremap', 'Partialmap_EntiremapFor', 'Partialmap_EntiremapForExact', \ … … 114 114 ncvar.addvals(opts.values, opts.ncfile, opts.varname) 115 115 elif oper == 'chdimname': 116 ncvar.chdimname(opts.values, opts.ncfile , opts.varname)116 ncvar.chdimname(opts.values, opts.ncfile) 117 117 elif oper == 'changevartype': 118 118 ncvar.changevartype(opts.values, opts.ncfile, opts.varname) … … 183 183 elif oper == 'grmattr': 184 184 ncvar.grmattr(opts.values, opts.ncfile) 185 elif oper == 'idims': 186 ncvar.idims(opts.ncfile) 185 187 elif oper == 'igattrs': 186 188 ncvar.igattrs(opts.ncfile) -
trunk/tools/nc_var_tools.py
r869 r870 1590 1590 alldims='' 1591 1591 for dim in ncdims: 1592 print vdim1592 print dim 1593 1593 alldims=alldims + ':' + dim 1594 1594
Note: See TracChangeset
for help on using the changeset viewer.