Merge branch 'feature/higher_resolution_temperature' into 'master'

Restore the outside temperature data to a 6 minute resolution

See merge request cara/cara!212
This commit is contained in:
Nicolas Mounet 2021-08-06 17:04:03 +00:00
commit 559ac2723f

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