Changeset 989 in lmdz_wrf
- Timestamp:
- Aug 9, 2016, 2:23:26 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/nc_var_tools.py
r987 r989 16076 16076 self.vardimensions = [self.vardxn, self.vardyn, self.vardzn, self.vardtn, self.vardsn] 16077 16077 16078 def model_characteristics(values, ncfile ):16078 def model_characteristics(values, ncfile, variables): 16079 16079 """ Functino to provide major characterisitcs of a given model output 16080 16080 values= [model] 16081 16081 model: name of the model 16082 variables= i whether should the output be printed or not ('true/false') 16082 16083 ncfile= name of the file to use to check 16083 16084 """ … … 16094 16095 16095 16096 modchar = ModelChar(model,ncfile) 16096 gen.printing_class(modchar) 16097 gen.singleline_printing_class(modchar) 16097 if gen.Str_Bool(variables): 16098 gen.printing_class(modchar) 16099 gen.singleline_printing_class(modchar) 16098 16100 16099 16101 return modchar
Note: See TracChangeset
for help on using the changeset viewer.