From cef8c07f2630406072093f2f22248ff36e1c2558 Mon Sep 17 00:00:00 2001 From: Brett Buzzanga Date: Wed, 26 Jul 2023 16:38:19 -0700 Subject: [PATCH] allow top of weather models to calculate --- tools/RAiDER/losreader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/RAiDER/losreader.py b/tools/RAiDER/losreader.py index 62daded84..421e2d00f 100644 --- a/tools/RAiDER/losreader.py +++ b/tools/RAiDER/losreader.py @@ -748,7 +748,7 @@ def build_ray(model_zs, ht, xyz, LOS, MAX_TROPO_HEIGHT=_ZREF): # If high_ht < height of point - no contribution to integral # If low_ht > max_tropo_height - no contribution to integral - if (high_ht <= ht) or (low_ht >= MAX_TROPO_HEIGHT): + if (high_ht < ht) or (low_ht >= MAX_TROPO_HEIGHT): continue # If low_ht < requested height, start integral at requested height