Predict¶
This function predict the tide by first detiding a timeseries. Works if NaN are in the timeseries
Parameters¶
- magstr
Name of the column from which to extract the tide
- args: dict
- Dictionnary with the folowing keys:
minimum SNR: int folder out: str
Path to save the output
latitude: float minimum time: datetime
Time the time series start
- maximum time: datetime
Time the time series end
- dt(s): int
Time interval in seconds
Examples:¶
>>> df=tf['test1']['dataframe'].TideAnalysis.predict(mag='U',args={'latitude':-36.5, 'minimum time':datetime.datetime(2002,1,1),'maximum time':datetime.datetime(2003,1,1), 'dt(s)':3600)
>>>