Skip to content

Commit

Permalink
allow top of weather models to calculate
Browse files Browse the repository at this point in the history
  • Loading branch information
bbuzz31 committed Jul 26, 2023
1 parent 2dcfe07 commit cef8c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/RAiDER/losreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cef8c07

Please sign in to comment.