Changeset 438 in lmdz_wrf for trunk


Ignore:
Timestamp:
May 26, 2015, 3:35:08 PM (10 years ago)
Author:
lfita
Message:

Adding proper use of the standard name in the output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/nc_var_tools.py

    r437 r438  
    1142011420
    1142111421# center of the trajectory
    11422             newvar = objofile.createVariable('trj_' + vn, 'f', ('time','z'),       \
     11422            newvar = objofile.createVariable('trj_' + vnst, 'f', ('time','z'),     \
    1142311423              fill_value=fillValue)
    11424             newattr = basicvardef(newvar, 'trj_' + vsname, 'value along the ' +      \
     11424            newattr = basicvardef(newvar, 'trj_' + vsname, 'value along the ' +    \
    1142511425              'trajectory of '+ vn, vunits)
    1142611426            newvar[:] = statvarvals[:,:,0]
     
    1142911429            ist = 0
    1143011430            for statn in statnames:
    11431                 newvar = objofile.createVariable(statn + '_' + vn,'f',('time','z'),  \
     11431                newvar = objofile.createVariable(statn + '_' + vnst,'f',('time','z'),\
    1143211432                  fill_value=fillValue)
    1143311433                newattr = basicvardef(newvar, statn + '_' + vsname, vstlname[ist] +  \
    11434                   ' the box ('+str(boxs)+'x'+str(boxs)+') of ' + vn, vunits)
     11434                  ' the box ('+str(boxs)+'x'+str(boxs)+') of ' + vnst, vunits)
    1143511435                newvar[:] = statvarvals[:,:,ist+1]
    1143611436#                newattr = set_attributek(newvar,'_FillValue',fillValue,'npfloat')
     
    1146011460            ist = 0
    1146111461            for statn in cstatnames:
    11462                 newvar = objofile.createVariable(statn + '_' + vn,'f',('time','z'),\
     11462                newvar = objofile.createVariable(statn + '_' + vnst,'f',('time','z'),\
    1146311463                  fill_value=fillValue)
    1146411464                newattr = basicvardef(newvar, statn + '_' + vsname, vstlname[ist] +  \
    11465                   ' the circle of radius ('+ str(circler)+') of ' + vn, vunits)
     11465                  ' the circle of radius ('+ str(circler)+') of ' + vnst, vunits)
    1146611466                newvar[:] = rstatvarvals[:,:,ist+1]
    1146711467#                newattr = set_attributek(newvar,'_FillValue',fillValue,'npfloat')
     
    1165411654
    1165511655# center of the trajectory
    11656             newvar = objofile.createVariable('trj_' + vn, 'f', ('time'),           \
     11656            newvar = objofile.createVariable('trj_' + vnst, 'f', ('time'),           \
    1165711657              fill_value=fillValue)
    1165811658            newattr = basicvardef(newvar, 'trj_' + vsname, 'value along the ' +      \
    11659               'trajectory of '+ vn, vunits)
     11659              'trajectory of '+ vnst, vunits)
    1166011660            newvar[:] = statvarvals[:,0]
    1166111661
     
    1166311663            ist = 0
    1166411664            for statn in statnames:
    11665                 newvar = objofile.createVariable(statn + '_' + vn, 'f', ('time'),    \
     11665                newvar = objofile.createVariable(statn + '_' + vnst, 'f', ('time'),  \
    1166611666                  fill_value=fillValue)
    1166711667                newattr = basicvardef(newvar, statn + '_' + vsname, vstlname[ist] +  \
    11668                   ' the box ('+str(boxs)+'x'+str(boxs)+') of ' + vn, vunits)
     11668                  ' the box ('+str(boxs)+'x'+str(boxs)+') of ' + vnst, vunits)
    1166911669                newvar[:] = statvarvals[:,ist+1]
    1167011670#                newattr = set_attributek(newvar,'_FillValue',fillValue,'npfloat')
     
    1169411694            ist = 0
    1169511695            for statn in cstatnames:
    11696                 newvar = objofile.createVariable(statn + '_' + vn, 'f', ('time'),  \
     11696                newvar = objofile.createVariable(statn + '_' + vnst, 'f', ('time'),  \
    1169711697                  fill_value=fillValue)
    1169811698                newattr = basicvardef(newvar, statn + '_' + vsname, vstlname[ist] +  \
    11699                   ' the circle of radius ('+ str(circler)+') of ' + vn, vunits)
     11699                  ' the circle of radius ('+ str(circler)+') of ' + vnst, vunits)
    1170011700                newvar[:] = rstatvarvals[:,ist+1]
    1170111701#                newattr = set_attributek(newvar,'_FillValue',fillValue,'npfloat')
Note: See TracChangeset for help on using the changeset viewer.