Skip to content

Commit

Permalink
default updates
Browse files Browse the repository at this point in the history
  • Loading branch information
allibco committed Jan 24, 2024
1 parent 15c2d0b commit 3a4d5c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyCECT.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def main(argv):
opts_dict = {}
opts_dict['input_globs'] = ''
opts_dict['indir'] = ''
opts_dict['tslice'] = 1
opts_dict['tslice'] = 0
opts_dict['nPC'] = 50
opts_dict['sigMul'] = 2
opts_dict['verbose'] = False
Expand Down
4 changes: 2 additions & 2 deletions pyEnsLib.py
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ def generate_global_mean_for_summary_MPAS(o_files, var_cell, var_edge, var_verte
weights['vertex'] = vertex_wgt

# loop through the input file list to calculate global means
print('Examining data from files ...')
#print('Examining data from files ...')
for fcount, in_file in enumerate(o_files):
fname = nc.Dataset(in_file, 'r')
(
Expand Down Expand Up @@ -2100,7 +2100,7 @@ def pop_compare_raw_score(opts_dict, ifiles, timeslice, Var3d, Var2d):
nbin = 1
Zscore = np.zeros((len(Var3d) + len(Var2d), len(ifiles), (nbin)), dtype=np.float32)

failure_count = np.zeros((len(ifiles)), dtype=np.int)
failure_count = np.zeros((len(ifiles)), dtype=np.int32)
sum_file = nc.Dataset(opts_dict['sumfile'], 'r')
for k, v in sum_file.variables.items():
if k == 'ens_stddev2d':
Expand Down

0 comments on commit 3a4d5c7

Please sign in to comment.