From 51405971fd4e97714d1e987269e49c6edfe4e0da Mon Sep 17 00:00:00 2001 From: Liam Date: Thu, 20 Jan 2022 22:19:46 +0000 Subject: [PATCH] Fix typo --- src/image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/image.c b/src/image.c index 66b1525..21a8054 100644 --- a/src/image.c +++ b/src/image.c @@ -388,7 +388,7 @@ static double tempcal(float Ce, int satnum, tempparam_t * rgpr) { // Convert to celsius T -= 273.15; - // Rescale to 0-255 for -120°C to +40°C + // Rescale to 0-255 for -100°C to +60°C T = (T + 100.0) / 160.0 * 255.0; return T;