Changeset 2195 in lmdz_wrf for trunk/tools/nc_var.py
- Timestamp:
- Oct 18, 2018, 6:12:36 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/nc_var.py
r2168 r2195 62 62 ## e.g. # nc_var.py -o temporal_stats -S 'Time:WRFtime:day@1@min,LTday@-3@1@min:bottom_top@ZNU,south_north@XLAT,west_east@XLONG' -f wrfout_d01_1995-01-01_00:00:00 -v T2,Q2 63 63 ## e.g. # nc_var.py -o retrieve_stations -f wrfout_d01_1995-01-01_00:00:00 -S 'tmin_percentiles.nc:stname:None:stlon:stlat:None:nearest:west_east:XLONG:south_north:XLAT:HGT:Time:WRFtime' -v T2,QVAPOR 64 ## e.g. # nc_var.py -o compute_slice2Dstats -S 'XLAT,-63.,19.,2.,HGT,250.,7000.,500.,Time|Times:west_east|XLONG:south_north|XLAT' -f wrfout_d01_1995-01-01_00:00:00 -v T2,Q2 64 65 65 66 from optparse import OptionParser … … 89 90 # compute_opervaralltime: Function to compute opervaralltime: operation of variable successible allover the time-steps 90 91 # compute_opervartimes: Function to compute opervartimes: operation of variable for a given sub-set of time-steps 92 # compute_slice2Dstats: Function to compute stats of variables of a file following slices along 2 variables 91 93 # compute_tevolboxtraj: Function to compute tevolboxtraj: temporal evolution at a given point along a box following a trajectory 92 94 # computevar_model: Function to provide the way to compute a CF-variable providing its name … … 203 205 'chgtimestep', 'chvarname', 'cleaning_varsfile', 'compute_deaccum', \ 204 206 'compute_opersvarsfiles', \ 205 'compute_opervaralltime', 'compute_opervartimes', 'compute_tevolboxtraj', \ 207 'compute_opervaralltime', 'compute_opervartimes', 'compute_slice2Dstats', \ 208 'compute_tevolboxtraj', \ 206 209 'computevar_model', 'curve_section', 'DatesFiles', \ 207 210 'DataSetSection', 'DataSetSection_multidims', 'DataSetSection_multivars', \ … … 342 345 elif oper == 'compute_opervartimes': 343 346 ncvar.compute_opervartimes(opts.values, opts.ncfile, opts.varname) 347 elif oper == 'compute_slice2Dstats': 348 ncvar.compute_slice2Dstats(opts.values, opts.ncfile, opts.varname) 344 349 elif oper == 'compute_tevolboxtraj': 345 350 ncvar.compute_tevolboxtraj(opts.values, opts.ncfile, opts.varname)
Note: See TracChangeset
for help on using the changeset viewer.