diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index 57f49dc4ce84b35ad3f975555e5c16088e53882c..92ff6887fb5f272751215a6be63763edc22ce418 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -79,7 +79,8 @@ train_params_day = ['cld_height_acha', 'cld_geo_thick', 'supercooled_cloud_fract
 train_params_night = ['cld_height_acha', 'cld_geo_thick', 'supercooled_cloud_fraction', 'cld_temp_acha',
                       'cld_press_acha', 'cld_reff_acha', 'cld_opd_acha', 'cloud_phase', 'cloud_mask']
 
-HALF_WIDTH = 20
+# HALF_WIDTH = 20
+HALF_WIDTH = 1
 
 # Just a wrapper for the conversion of PIREP reports to in-memory dictionary
 def setup(pirep_file=homedir+'data/pirep/pireps_20180101_20200331.csv'):
@@ -336,6 +337,15 @@ def run(pirep_dct, platform, outfile=None, outfile_l1b=None, dt_str_start=None,
                 cc = cc_a[0]
                 ll = ll_a[0]
 
+
+            # test --------------------
+            lon_grd_vals = get_grid_values(h5f, 'longitude', ll_a[0], cc_a[0], HALF_WIDTH, fill_value_name=None, range_name='valid_range', fill_value=-999.0)
+            lat_grd_vals = get_grid_values(h5f, 'latitude', ll_a[0], cc_a[0], HALF_WIDTH, fill_value_name=None, range_name='valid_range', fill_value=-999.0)
+            print(lon_grd_vals[1, 1], lon)
+            print(lat_grd_vals[1, 1], lat)
+            continue
+            # ------------------------------
+
             cnt_a = 0
             ds_lst = []
             for didx, ds_name in enumerate(ds_list):