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


Ignore:
Timestamp:
Sep 12, 2017, 10:48:20 PM (7 years ago)
Author:
lfita
Message:

Adding help documentation to very first functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/nc_var_tools.py

    r1642 r1649  
    20182018  varn = variable name
    20192019  """
     2020  fname = 'isvattrs'
     2021  if values == 'h':
     2022      print fname + '_____________________________________________________________'
     2023      print isvattrs.__doc__
     2024      quit()
    20202025
    20212026  if not os.path.isfile(ncfile):
     
    20762081  ncfile = netCDF file name
    20772082  """
     2083  fname = 'grattr'
     2084
     2085  if values == 'h':
     2086      print fname + '_____________________________________________________________'
     2087      print grattr.__doc__
     2088      quit()
     2089
    20782090  ncf = NetCDFFile(ncfile,'r')
    20792091
     
    21022114    """
    21032115    fname = 'vrattr'
     2116
     2117    if values == 'h':
     2118        print fname + '_____________________________________________________________'
     2119        print vrattr.__doc__
     2120        quit()
    21042121
    21052122    ncf = NetCDFFile(ncfile,'r')
Note: See TracChangeset for help on using the changeset viewer.