From 0d745fa228b2b11593926d30bdfc50e9f307fd1a Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Mon, 18 Oct 2021 12:57:01 -0500
Subject: [PATCH] minor...

---
 modules/util/util.py | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/modules/util/util.py b/modules/util/util.py
index 45565c5a..56d5abe9 100644
--- a/modules/util/util.py
+++ b/modules/util/util.py
@@ -552,16 +552,6 @@ def make_for_full_domain_predict(h5f, name_list=None, satellite='GOES16', domain
                 i_ul = i * w_x
                 grd_dct_n[ds_name].append(grd_dct[ds_name][j_ul:j_ul+w_y, i_ul:i_ul+w_x])
 
-    # TODO: replace this with numpy meshgrid and flatten
-    # ll = []
-    # cc = []
-    # for j in range(n_y-1):
-    #     j_y = j_0 + j*w_y
-    #     for i in range(n_x-1):
-    #         i_x = i_0 + i*w_x
-    #         ll.append(j_y)
-    #         cc.append(i_x)
-
     grd_dct = {name: None for name in name_list}
     for didx, ds_name in enumerate(name_list):
         grd_dct[ds_name] = np.stack(grd_dct_n[ds_name])
-- 
GitLab