Skip to content
Snippets Groups Projects
Commit c04eca58 authored by Peter Lünenschloß's avatar Peter Lünenschloß
Browse files

tiny refactoring of interpolateNANs method

parent 2c425f29
No related branches found
No related tags found
4 merge requests!193Release 1.4,!188Release 1.4,!49Dataprocessing features,!44Dataprocessing features
...@@ -364,7 +364,7 @@ def _interpolateGrid( ...@@ -364,7 +364,7 @@ def _interpolateGrid(
data = _insertGrid(data, freq) data = _insertGrid(data, freq)
data, chunk_bounds = interpolateNANs( data, chunk_bounds = interpolateNANs(
data, method, order=order, inter_limit=2, downcast_interpolation=downcast_interpolation, data, method, order=order, inter_limit=2, downgrade_interpolation=downcast_interpolation,
return_chunk_bounds=True return_chunk_bounds=True
) )
......
...@@ -165,29 +165,31 @@ def meanQC(data, max_nan_total=np.inf, max_nan_consec=np.inf): ...@@ -165,29 +165,31 @@ def meanQC(data, max_nan_total=np.inf, max_nan_consec=np.inf):
return np.nan return np.nan
def interpolateNANs(data, method, order=2, inter_limit=2, downcast_interpolation=False, return_chunk_bounds=False): def interpolateNANs(data, method, order=2, inter_limit=2, downgrade_interpolation=False, return_chunk_bounds=False):
""" """
The function interpolates nan-values (and nan-grids) in timeseries data. It can be passed all the method keywords The function interpolates nan-values (and nan-grids) in timeseries data. It can be passed all the method keywords
from the pd.Series.interpolate method and will than apply this very methods. Note, that the inter_limit keyword from the pd.Series.interpolate method and will than apply this very methods. Note, that the inter_limit keyword
really restricts the interpolation to chunks, not containing more than "inter_limit" nan entries really restricts the interpolation to chunks, not containing more than "inter_limit" nan entries
(thereby opposing the limit keyword of pd.Series.interpolate). (thereby not being identical to the "limit" keyword of pd.Series.interpolate).
:param data: pd.Series. The data series to be interpolated :param data: pd.Series or np.array. The data series to be interpolated
:param method: String. Method keyword designating interpolation method to use. :param method: String. Method keyword designating interpolation method to use.
:param order: Integer. If your desired interpolation method needs an order to be passed - :param order: Integer. If your desired interpolation method needs an order to be passed -
here you pass it. here you pass it.
:param inter_limit: Integer. Default = 2. Limit up to whitch nan - gaps in the data get interpolated. :param inter_limit: Integer. Default = 2. Limit up to which consecutive nan - values in the data get
Its default value suits an interpolation that only will apply on an inserted replaced by interpolation.
frequency grid. (regularization by interpolation) Its default value suits an interpolation that only will apply to points of an
:param downcast_interpolation: Boolean. Default False. If True: inserted frequency grid. (regularization by interpolation)
Gaps wider than "inter_limit" will NOT be interpolated at all.
:param downgrade_interpolation: Boolean. Default False. If True:
If a data chunk not contains enough values for interpolation of the order "order", If a data chunk not contains enough values for interpolation of the order "order",
the highest order possible will be selected for that chunks interpolation." the highest order possible will be selected for that chunks interpolation.
:param return_chunk_bounds: Boolean. Default False. If True: :param return_chunk_bounds: Boolean. Default False. If True:
Additionally to the interpolated data, the start and ending points of data chunks Additionally to the interpolated data, the start and ending points of data chunks
not containing no series consisting of more then "inter_limit" nan values, not containing no series consisting of more then "inter_limit" nan values,
are calculated and returned. are calculated and returned.
(This option fits requirements of the "_interpolate" functions use in the context of (This option fits requirements of the "interpolateNANs" functions use in the
saqc harmonization mainly.) context of saqc harmonization mainly.)
:return: :return:
""" """
...@@ -227,7 +229,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downcast_interpolation ...@@ -227,7 +229,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downcast_interpolation
except (NotImplementedError, ValueError): except (NotImplementedError, ValueError):
logger.warning( logger.warning(
"Interpolation with method {} is not supported at order {}. " "Interpolation with method {} is not supported at order {}. "
"Interpolation will be performed with order {}".format( "Interpolation will be performed at order {}".format(
method, str(wrap_order), str(wrap_order - 1) method, str(wrap_order), str(wrap_order - 1)
) )
) )
...@@ -235,7 +237,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downcast_interpolation ...@@ -235,7 +237,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downcast_interpolation
elif x.size < 3: elif x.size < 3:
return x return x
else: else:
if downcast_interpolation: if downgrade_interpolation:
return _interpolWrapper(x, int(x.count() - 1), wrap_method) return _interpolWrapper(x, int(x.count() - 1), wrap_method)
else: else:
return x return x
......
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