Ignore:
Timestamp:
Nov 25, 2011, 5:06:34 PM (13 years ago)
Author:
aslmd
Message:

GRAPHICS: cosmetic changes. corrected a bug in treating local times with two input meso files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTIL/PYTHON/myplot.py

    r422 r425  
    678678    fmtvar    =     { \
    679679             "TK":           "%.0f",\
    680 # Variables from TES ncdf format
     680             # Variables from TES ncdf format
    681681             "T_NADIR_DAY":  "%.0f",\
    682682             "T_NADIR_NIT":  "%.0f",\
    683 # Variables from tes.py ncdf format
     683             # Variables from tes.py ncdf format
    684684             "TEMP_DAY":     "%.0f",\
    685685             "TEMP_NIGHT":   "%.0f",\
    686 # Variables from MCS and mcs.py ncdf format
     686             # Variables from MCS and mcs.py ncdf format
    687687             "DTEMP":     "%.0f",\
    688688             "NTEMP":   "%.0f",\
     689             # other stuff
    689690             "TPOT":         "%.0f",\
    690691             "TSURF":        "%.0f",\
     
    726727             "HGT":          "spectral",\
    727728             "TK":           "gist_heat",\
     729             "TPOT":         "Paired",\
    728730             "TSURF":        "RdBu_r",\
    729731             "QH2O":         "PuBu",\
     
    927929# output : all indexes to be taken into account for reducing field
    928930  import numpy as np
     931  ### added by AS to treat the case of stime = - LT
     932  if saxis is not None:
     933      if saxis[0][0] < 0: saxis = - saxis
     934  ###
    929935  if ( np.array(axis).ndim == 2):
    930936      axis = axis[:,0]
Note: See TracChangeset for help on using the changeset viewer.