Changeset 425 for trunk/UTIL/PYTHON/myplot.py
- Timestamp:
- Nov 25, 2011, 5:06:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTIL/PYTHON/myplot.py
r422 r425 678 678 fmtvar = { \ 679 679 "TK": "%.0f",\ 680 # Variables from TES ncdf format680 # Variables from TES ncdf format 681 681 "T_NADIR_DAY": "%.0f",\ 682 682 "T_NADIR_NIT": "%.0f",\ 683 # Variables from tes.py ncdf format683 # Variables from tes.py ncdf format 684 684 "TEMP_DAY": "%.0f",\ 685 685 "TEMP_NIGHT": "%.0f",\ 686 # Variables from MCS and mcs.py ncdf format686 # Variables from MCS and mcs.py ncdf format 687 687 "DTEMP": "%.0f",\ 688 688 "NTEMP": "%.0f",\ 689 # other stuff 689 690 "TPOT": "%.0f",\ 690 691 "TSURF": "%.0f",\ … … 726 727 "HGT": "spectral",\ 727 728 "TK": "gist_heat",\ 729 "TPOT": "Paired",\ 728 730 "TSURF": "RdBu_r",\ 729 731 "QH2O": "PuBu",\ … … 927 929 # output : all indexes to be taken into account for reducing field 928 930 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 ### 929 935 if ( np.array(axis).ndim == 2): 930 936 axis = axis[:,0]
Note: See TracChangeset
for help on using the changeset viewer.