Skip to content

Commit

Permalink
update thresholds
Browse files Browse the repository at this point in the history
  • Loading branch information
tackandr committed Nov 11, 2024
1 parent 4ad9d24 commit 8bcf1ff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion himan-scripts/CB-TCU-cloud.lua
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,10 @@ for i=1, #EL500 do

res[i] = round(res[i]/10)*10
--Threshold flight level for TCU above FL70 and CB above FL80
if res[i] < 80 and res[i] > -70 then
if res[i] < 70 and res[i] > -70 then
res[i] = missing
elseif res[i] == 70 then
res[i] = -70
end
end

Expand Down

0 comments on commit 8bcf1ff

Please sign in to comment.