diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py
index 6b3d13e90c5094d95dc718f0cb7da396f6b51cd4..7443799958869c605ceaad35ca66d44006a57ecb 100644
--- a/modules/icing/pirep_goes.py
+++ b/modules/icing/pirep_goes.py
@@ -2407,8 +2407,8 @@ def analyze(preds_file, labels, prob_avg, test_file):
     iint = np.where(iint == -1, 0, iint)
     iint = np.where(iint != 0, 1, iint)
 
-    nda[np.logical_and(nda >= 0, nda < 2500)] = 0
-    nda[np.logical_and(nda >= 2500, nda < 15000)] = 1
+    nda[np.logical_and(nda >= 0, nda < 3400)] = 0
+    nda[np.logical_and(nda >= 3400, nda < 15000)] = 1
     # nda[np.logical_and(nda >= 8000, nda < 15000)] = 2
 
     #print(np.sum(nda == 0), np.sum(nda == 1), np.sum(nda == 2))