Skip to content

Commit

Permalink
Fix match_frac argument in tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
ritvje committed Jul 17, 2024
1 parent 58bd8a2 commit 6b96124
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pysteps/tracking/tdating.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ def tracking(
labels,
V1,
max_ID,
match_frac=0.4,
merge_frac=0.1,
split_frac=0.1,
output_splits_merges=False,
Expand All @@ -292,7 +293,7 @@ def tracking(
labels,
output_splits_merges=output_splits_merges,
split_frac=split_frac,
match_frac=merge_frac,
match_frac=match_frac,
)

splitted_cells = None
Expand Down

0 comments on commit 6b96124

Please sign in to comment.