From eaefa515eb0acf6693326b449aa9cff19200f916 Mon Sep 17 00:00:00 2001 From: Phil Elson Date: Thu, 8 Jul 2021 08:34:59 +0200 Subject: [PATCH] Restore the outside temperature data to a 6 minute resolution for improved smoothness of the presented results. --- cara/data.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cara/data.py b/cara/data.py index ff89c165..8e844dae 100644 --- a/cara/data.py +++ b/cara/data.py @@ -40,9 +40,10 @@ GenevaTemperatures_hourly = { ) for month, temperatures in Geneva_hourly_temperatures_celsius_per_hour.items() } -# Same temperatures on a finer temperature mesh. + + +# Same temperatures on a finer temperature mesh (every 6 minutes). GenevaTemperatures = { - month: GenevaTemperatures_hourly[month].refine(refine_factor=4) + month: GenevaTemperatures_hourly[month].refine(refine_factor=10) for month, temperatures in Geneva_hourly_temperatures_celsius_per_hour.items() } -