Skip to content

Commit 196d431

Browse files
committed
Segmentation of network will provide a full dataset
1 parent 1a2dcb4 commit 196d431

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Added
2424
- Add a filter option in EddyId to be able to remove fine scale (like noise) with same filter order than high scale
2525
filter
2626
- Add **EddyQuickCompare** to have few figures about several datasets in comparison based on match function
27-
- Color field for contour in **EddyAnim** could be choose
27+
- Color and text field for contour in **EddyAnim** could be choose
2828
- Save EddyAnim in mp4
2929
- Add method to get eddy contour which enclosed obs defined with (x,y) coordinates
3030

src/py_eddy_tracker/appli/network.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ def divide_network():
5151
include_vars=("time", "track", "latitude", "longitude", *contour_name),
5252
)
5353
n = NetworkObservations.from_split_network(
54-
e, e.split_network(intern=args.intern, window=args.window)
54+
TrackEddiesObservations.load_file(args.input, raw_data=True),
55+
e.split_network(intern=args.intern, window=args.window),
5556
)
5657
n.write_file(filename=args.out)
5758

0 commit comments

Comments
 (0)