@@ -135,7 +135,7 @@ def find_segments_relative(self, obs, stopped=None, order=1):
135135 return nw .relatives ([i_obs , i_stopped ], order = order )
136136
137137 def get_missing_indices (self , dt ):
138- """Find indexes where observations are missing.
138+ """Find indices where observations are missing.
139139
140140 As network have all untracked observation in tracknumber `self.NOGROUP`,
141141 we don't compute them
@@ -215,7 +215,7 @@ def longer_than(self, nb_day_min=-1, nb_day_max=-1):
215215 @classmethod
216216 def from_split_network (cls , group_dataset , indexs , ** kwargs ):
217217 """
218- Build a NetworkObservations object with Group dataset and indexes
218+ Build a NetworkObservations object with Group dataset and indices
219219
220220 :param TrackEddiesObservations group_dataset: Group dataset
221221 :param indexs: result from split_network
@@ -346,7 +346,7 @@ def find_link(self, i_observations, forward=True, backward=False):
346346 where water from obs `i_observation` could come from
347347
348348 :param int,iterable(int) i_observation:
349- indexes of observation. Can be
349+ indices of observation. Can be
350350 int, or iterable of int.
351351 :param bool forward, backward:
352352 if forward, search observations after obs.
@@ -496,7 +496,7 @@ def relatives(self, obs, order=2):
496496 """
497497 Extract the segments at a certain order from multiple observations.
498498
499- :param iterable,int obs: indexes of observation for relatives computation.
499+ :param iterable,int obs: indices of observation for relatives computation.
500500 Can be one observation (int) or collection of observations (iterable(int))
501501 :param int order: order of relatives wanted.
502502 0 means only observations in obs, 1 means direct relatives (1 interaction event), ...
0 commit comments