diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index 685ae33f425cf19abbf6e03f114392c5a140df75..7320817c7f6849b32d00c7ea7bff7380286117a1 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -332,7 +332,6 @@ def make_for_full_domain_predict(clvrx_file, name_list=l1b_ds_list):
     j_0 = 0
 
     for didx, ds_name in enumerate(name_list):
-        print(ds_name)
         for j in range(4, n_y-4, 1):
             j_ul = j_0 + j * w_y
             for i in range(4, n_x-4, 1):
@@ -341,7 +340,7 @@ def make_for_full_domain_predict(clvrx_file, name_list=l1b_ds_list):
 
     grd_dct = {name: None for name in name_list}
     for didx, ds_name in enumerate(name_list):
-        grd_dct[ds_name] = np.concatenate(grd_dct_n[ds_name])
+        grd_dct[ds_name] = np.stack(grd_dct_n[ds_name])
 
     return grd_dct