File tree Expand file tree Collapse file tree 4 files changed +26
-19
lines changed
src/py_eddy_tracker/appli Expand file tree Collapse file tree 4 files changed +26
-19
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,25 @@ and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0
10
10
------------
11
11
Changed
12
12
^^^^^^^
13
- - Now time will be allow second precision in storage on uint32 from 01/01/1950 to 01/01/2086
14
- new identification will be produce with this type, old file could be still loaded.
15
- If you use old identification to track use `--unraw ` option to unpack old time and store in new format.
16
- - Now amplitude is stored with .1 mm of precision, same advice than time.
13
+
14
+ - Now time allows second precision (instead of daily precision) in storage on uint32 from 01/01/1950 to 01/01/2086
15
+ New identifications are produced with this type, old files could still be loaded.
16
+ If you use old identifications for tracking use the `--unraw ` option to unpack old times and store data with the new format.
17
+ - Now amplitude is stored with .1 mm of precision (instead of 1 mm), same advice as for time.
17
18
18
19
Fixed
19
20
^^^^^
20
- - GridCollection get_next_time_step & get_previous_time_step needed more files to work in the dataset list.
21
- The loop needed explicitly self.dataset[i+-1] even when i==0, therefore indice went out of range
21
+
22
22
Added
23
23
^^^^^
24
24
25
+ [3.5.0] - 2021-06-22
26
+ --------------------
27
+
28
+ Fixed
29
+ ^^^^^
30
+ - GridCollection get_next_time_step & get_previous_time_step needed more files to work in the dataset list.
31
+ The loop needed explicitly self.dataset[i+-1] even when i==0, therefore indice went out of range
25
32
26
33
[3.4.0] - 2021-03-29
27
34
--------------------
Original file line number Diff line number Diff line change 5
5
Requirements
6
6
************
7
7
8
- Before to run tracking, you will need to run identification on every time step of the period (period of your study).
8
+ Before tracking, you will need to run identification on every time step of the period (period of your study).
9
9
10
- **Advice ** : Before to run tracking, displaying some identification file allows to learn a lot
10
+ **Advice ** : Before tracking, displaying some identification files. You will learn a lot
11
11
12
12
Default method
13
13
**************
@@ -24,9 +24,9 @@ Example of conf.yaml
24
24
FILES_PATTERN : MY_IDENTIFICATION_PATH/Anticyclonic*.nc
25
25
SAVE_DIR : MY_OUTPUT_PATH
26
26
27
- # Number of timestep for missing detection
27
+ # Number of consecutive timesteps with missing detection allowed
28
28
VIRTUAL_LENGTH_MAX : 3
29
- # Minimal number of timesteps to consider as a long track
29
+ # Minimal number of timesteps to considered as a long trajectory
30
30
TRACK_DURATION_MIN : 10
31
31
32
32
To run:
@@ -63,13 +63,13 @@ With yaml you could also select another tracker:
63
63
.. code-block :: yaml
64
64
65
65
PATHS :
66
- # Files produces with EddyIdentification
66
+ # Files produced with EddyIdentification
67
67
FILES_PATTERN : MY/IDENTIFICATION_PATH/Anticyclonic*.nc
68
68
SAVE_DIR : MY_OUTPUT_PATH
69
69
70
- # Number of timesteps for missing detection
70
+ # Number of consecutive timesteps with missing detection allowed
71
71
VIRTUAL_LENGTH_MAX : 3
72
- # Minimal number of timesteps to consider as a long track
72
+ # Minimal number of timesteps to considered as a long trajectory
73
73
TRACK_DURATION_MIN : 10
74
74
75
75
CLASS :
Original file line number Diff line number Diff line change 1
1
PATHS :
2
- # Files produces with EddyIdentification
2
+ # Files produced with EddyIdentification
3
3
FILES_PATTERN : /home/emason/toto/Anticyclonic_*.nc
4
- # Path for saving of outputs
4
+ # Path to save outputs
5
5
SAVE_DIR : ' /home/emason/toto/'
6
6
7
- # Minimal number of timesteps to consider as a long track
8
- TRACK_DURATION_MIN : 4
9
- # Number of timesteps for missing detection
7
+ # Number of consecutive timesteps with missing detection allowed
10
8
VIRTUAL_LENGTH_MAX : 0
9
+ # Minimal number of timesteps to considered as a long trajectory
10
+ TRACK_DURATION_MIN : 4
11
11
12
12
CLASS :
13
13
MODULE : py_eddy_tracker.featured_tracking.area_tracker
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ def browse_dataset_in(
281
281
dataset_list .sort (order = ["date" , "filename" ])
282
282
steps = unique (dataset_list ["date" ][1 :] - dataset_list ["date" ][:- 1 ])
283
283
if len (steps ) > 1 :
284
- raise Exception ("Several days steps in grid dataset %s" % steps )
284
+ raise Exception ("Several timesteps in grid dataset %s" % steps )
285
285
286
286
if sub_sampling_step != 1 :
287
287
logger .info ("Grid subsampling %d" , sub_sampling_step )
You can’t perform that action at this time.
0 commit comments