@@ -135,7 +135,7 @@ def find_segments_relative(self, obs, stopped=None, order=1):
135
135
return nw .relatives ([i_obs , i_stopped ], order = order )
136
136
137
137
def get_missing_indices (self , dt ):
138
- """Find indexes where observations are missing.
138
+ """Find indices where observations are missing.
139
139
140
140
As network have all untracked observation in tracknumber `self.NOGROUP`,
141
141
we don't compute them
@@ -215,7 +215,7 @@ def longer_than(self, nb_day_min=-1, nb_day_max=-1):
215
215
@classmethod
216
216
def from_split_network (cls , group_dataset , indexs , ** kwargs ):
217
217
"""
218
- Build a NetworkObservations object with Group dataset and indexes
218
+ Build a NetworkObservations object with Group dataset and indices
219
219
220
220
:param TrackEddiesObservations group_dataset: Group dataset
221
221
:param indexs: result from split_network
@@ -346,7 +346,7 @@ def find_link(self, i_observations, forward=True, backward=False):
346
346
where water from obs `i_observation` could come from
347
347
348
348
:param int,iterable(int) i_observation:
349
- indexes of observation. Can be
349
+ indices of observation. Can be
350
350
int, or iterable of int.
351
351
:param bool forward, backward:
352
352
if forward, search observations after obs.
@@ -496,7 +496,7 @@ def relatives(self, obs, order=2):
496
496
"""
497
497
Extract the segments at a certain order from multiple observations.
498
498
499
- :param iterable,int obs: indexes of observation for relatives computation.
499
+ :param iterable,int obs: indices of observation for relatives computation.
500
500
Can be one observation (int) or collection of observations (iterable(int))
501
501
:param int order: order of relatives wanted.
502
502
0 means only observations in obs, 1 means direct relatives (1 interaction event), ...
0 commit comments