From db81b97264e65a6314c2eb2368b55c2863c9d1a6 Mon Sep 17 00:00:00 2001 From: Martin Opat Date: Wed, 15 Jan 2025 15:58:52 +0100 Subject: [PATCH] Fixed max temp being wrong for some reason --- src/consts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/consts.h b/src/consts.h index 80afde8..0811c7f 100644 --- a/src/consts.h +++ b/src/consts.h @@ -23,7 +23,7 @@ const float DLAT = 35.0f / VOLUME_HEIGHT; // 35 for current trimmed data set ra const float DLEV = 1000.0f / VOLUME_DEPTH; // 1000 from max pressure (hPa) but not sure here const float MIN_TEMP = 210.0f; -const float MAX_TEMP = 240.0f; +const float MAX_TEMP = 293.0f; const float MIN_SPEED = 0.0F; const float MAX_SPEED = 14.0f;