Restore the outside temperature data to a 6 minute resolution for improved smoothness of the presented results.

This commit is contained in:
Phil Elson 2021-07-08 08:34:59 +02:00
parent ad97a6b18c
commit eaefa515eb

View file

@ -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()
}