Skip to content
Snippets Groups Projects
Commit efe91f4d authored by tomrink's avatar tomrink
Browse files

snapshot...

parent a8e10833
No related branches found
No related tags found
No related merge requests found
...@@ -46,8 +46,8 @@ def acspo_validate(oper_file, cspp_file): ...@@ -46,8 +46,8 @@ def acspo_validate(oper_file, cspp_file):
stop_idx_oper = k stop_idx_oper = k
stop_idx_cspp = np.nonzero(c_a)[0][0] stop_idx_cspp = np.nonzero(c_a)[0][0]
print(start_idx_oper, stop_idx_oper) print('oper start, stop ', start_idx_oper, stop_idx_oper)
print(start_idx_cspp, stop_idx_cspp) print('cspp start, stop ', start_idx_cspp, stop_idx_cspp)
lon_cspp = lon_cspp[start_idx_cspp:stop_idx_cspp, :].flatten() lon_cspp = lon_cspp[start_idx_cspp:stop_idx_cspp, :].flatten()
lat_cspp = lat_cspp[start_idx_cspp:stop_idx_cspp, :].flatten() lat_cspp = lat_cspp[start_idx_cspp:stop_idx_cspp, :].flatten()
...@@ -60,5 +60,10 @@ def acspo_validate(oper_file, cspp_file): ...@@ -60,5 +60,10 @@ def acspo_validate(oper_file, cspp_file):
print(np.sum(np.isclose(lon_cspp, lon_oper))) print(np.sum(np.isclose(lon_cspp, lon_oper)))
print(np.sum(np.isclose(lat_cspp, lat_oper))) print(np.sum(np.isclose(lat_cspp, lat_oper)))
sst_cspp = sst_cspp[start_idx_cspp:stop_idx_cspp, :].flatten()
sst_oper = sst_oper[start_idx_oper:stop_idx_oper, :].flatten()
print(np.sum(np.isclose(sst_cspp, sst_oper, rtol=0.01)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment