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:
commit
559ac2723f
1 changed files with 4 additions and 3 deletions
|
|
@ -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()
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue