Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix typo in doc
  • Loading branch information
ludwigVonKoopa committed Mar 19, 2021
commit d01bb3f876f19d7c689db83f52c252d59c864e19
9 changes: 6 additions & 3 deletions src/py_eddy_tracker/observations/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,12 @@ def infos(self, label=""):
def correct_close_events(self, nb_days_max=20):
"""
transform event where
segment A split to B, then A merge into B
segment A split to B, then A merge into B

to
segment A split to B, then B merge to A

segment A split to B, then B merge to A

these events are filtered with `nb_days_max`, which the event have to take place in less than `nb_days_max`

:param float nb_days_max: maximum time to search for splitting-merging event
Expand Down Expand Up @@ -334,7 +337,7 @@ def find_link(self, i_observations, forward=True, backward=False):
if backward=True, search all observation
where water from obs `i_observation` could come from

:param int, iterable(int) i_observation:
:param int,iterable(int) i_observation:
indices of observation. Can be
int, or iterable of int.
:param bool forward, backward:
Expand Down