Changeset 23753
- Timestamp:
- 02/25/19 14:58:56 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test243.py
r23707 r23753 1 1 #Test Name: SquareShelfSMBGemb 2 2 import numpy as np 3 import sys 3 4 from model import * 4 5 from socket import gethostname … … 23 24 24 25 #load hourly surface forcing date from 1979 to 2009: 25 inputs = np.load('../Data/gemb_input.npy',encoding='bytes').item() 26 if sys.version_info.major == 2: 27 inputs = np.load('../Data/gemb_input.npy').item() 28 else: 29 inputs = np.load('../Data/gemb_input.npy',encoding='bytes').item() 26 30 27 31 #setup the inputs:
Note:
See TracChangeset
for help on using the changeset viewer.