Fixed max temp being wrong for some reason

This commit is contained in:
Martin Opat 2025-01-15 15:58:52 +01:00
parent a1869aba02
commit db81b97264
1 changed files with 1 additions and 1 deletions

View File

@ -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 DLEV = 1000.0f / VOLUME_DEPTH; // 1000 from max pressure (hPa) but not sure here
const float MIN_TEMP = 210.0f; 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 MIN_SPEED = 0.0F;
const float MAX_SPEED = 14.0f; const float MAX_SPEED = 14.0f;