Skip to content
Snippets Groups Projects
Commit 4002e7e0 authored by Sabine Schröder's avatar Sabine Schröder
Browse files

Merge branch 'max_version_0.6.8' into 'master'

fixed time harmonizing, updated toarstats to 0.6.8

See merge request !20
parents 51a0a5b8 8e118a3b
No related branches found
No related tags found
1 merge request!20fixed time harmonizing, updated toarstats to 0.6.8
# Changelog
All notable changes to this project will be documented in this file.
## v0.6.8 - 2025-03-07 - bugfix in time harmonizing
## v0.6.7 - 2025-02-21 - fixed output format
### general:
......
File added
[metadata]
name = toarstats
version = 0.6.7
version = 0.6.8
author = Niklas Selke, Martin Schultz, Max Lensing
author_email = n.selke@fz-juelich.de, m.schultz@fz-juelich.de, m.lensing@fz-juelich.de
description = Collection of statistics for the TOAR community
......
......@@ -301,14 +301,13 @@ def harmonize_time(ser_list, ref, mtype, rsfreq=None):
:return: A list of series with harmonized datetime indices
"""
if mtype == "custom":
custom_index = pd.DatetimeIndex([ref.index.min().strftime("%Y-%m-%d")])
for record in ser_list:
record["ser"].index = custom_index
record["ser"].reindex([ref.index.min()])
else:
if rsfreq is None:
rsfreq = RSTAGS[mtype]
tmin = ref.index.min()
tmax = ref.index.max()
tmin = ref.index.min().strftime("%Y-%m-%d")
tmax = ref.index.max().strftime("%Y-%m-%d")
try:
newindex = pd.date_range(tmin, tmax, freq=rsfreq)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment