Changeset 1842 in lmdz_wrf
- Timestamp:
- Mar 22, 2018, 8:00:34 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/generic_tools.py
r1841 r1842 459 459 'Y-m-d H:M:S': [YYYY]-[MM]-[DD] [HH]:[MI]:[SS] format 460 460 'Y/m/d H-M-S': [YYYY]/[MM]/[DD] [HH]-[MI]-[SS] format 461 'Y-m-dTH:M:SZ': [YYYY]-[MM]-[DD]T[HH]:[MI]:[SS]Z UNIDATA format 461 462 'WRFdatetime': [Y], [Y], [Y], [Y], '-', [M], [M], '-', [D], [D], '_', [H], 462 463 [H], ':', [M], [M], ':', [S], [S] … … 663 664 str(da).zfill(2) + ' ' + str(ho).zfill(2) + '-' + str(mi).zfill(2) + '-' + \ 664 665 str(se).zfill(2) 666 elif typeSo = 'Y-m-dTH:M:SZ': 667 dateYmdHMS = str(yr).zfill(4) + '-' + str(mo).zfill(2) + '-' + \ 668 str(da).zfill(2) + 'T' + str(ho).zfill(2) + ':' + str(mi).zfill(2) + ':' + \ 669 str(se).zfill(2) + 'Z' 665 670 elif typeSo == 'WRFdatetime': 666 671 dateYmdHMS = [] … … 12681 12686 axis: generic related axis 12682 12687 _CoordinateAxisType: generic type of axis 12683 maxrank: maximunm allowed rank of the coordinate12688 maxrank: maximunm allowed rank of the variable dimension 12684 12689 length: length of the coordinate (0: unknown, -1: unlimited) 12685 12690 >>> CFcorValues('lon')
Note: See TracChangeset
for help on using the changeset viewer.