A Python port of the MATLAB UTide package for tidal analysis and prediction of water levels and currents. Handles harmonic analysis and tidal prediction with robust handling of nodal/satellite corrections. Latest version 0.3.1, released 2023-09.
pip install utideNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic tidal analysis and prediction using utide.
Replace method='robust' with method='ols' or method='lss'.
Omit conf_int from the call; confidence intervals are handled automatically.
Convert time to hours since an arbitrary start. For example, if you have datetime array 'dt', do: t = (dt - dt[0]).total_seconds() / 3600.
Always provide a numeric latitude (e.g., lat=45.0) even if you are not interested in corrections; it changes the constituents used.
Import 'solve' directly: from utide import solve
Replace method='robust' with method='ols' or method='lss'.
Remove conf_int from the call. Confidence intervals are automatically computed when suitable.
Pass a numeric latitude, e.g., lat=45.0.
No resource links recorded.