Changeset 1735 in lmdz_wrf for trunk/tools/nc_var_tools.py


Ignore:
Timestamp:
Dec 16, 2017, 7:09:57 PM (7 years ago)
Author:
lfita
Message:

Using right function to get an attribute

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/nc_var_tools.py

    r1734 r1735  
    2078320783
    2078420784    if gen.searchInlist(oxpos.ncattrs(), 'units'):
    20785         xunits = oxpos.getattribute('units')
     20785        xunits = oxpos.getncattr('units')
    2078620786    else:
    2078720787        xunits = '-'
    2078820788    if gen.searchInlist(oypos.ncattrs(), 'units'):
    20789         yunits = oypos.getattribute('units')
     20789        yunits = oypos.getncattr('units')
    2079020790    else:
    2079120791        yunits = '-'
     
    2087920879            for atn in ovar.ncattrs():
    2088020880                if atn != 'fill_Value':
    20881                     atv = ovar.getattribute(atn)
     20881                    atv = ovar.getncattr(atn)
    2088220882                    set_attribute(newvar, atn, atv)
    2088320883            onewnc.sync()
     
    2088520885    # Global attributes
    2088620886    for atn in onc.ncattrs():
    20887         atv = ovar.getattribute(atn)
     20887        atv = ovar.getncattr(atn)
    2088820888        set_attribute(onewnc, atn, atv)
    2088920889    onewnc.sync()
Note: See TracChangeset for help on using the changeset viewer.