Skip to content

Commit 32fda01

Browse files
committed
2 parents 2c5d4b9 + 03d212e commit 32fda01

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

doc/grid_identification.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
=====================
2-
Eddies identification
3-
=====================
1+
===================
2+
Eddy identification
3+
===================
44

5-
Run an identification on a grid
6-
*******************************
5+
Run the identification process for a single day
6+
***********************************************
77

88
Activate verbose
99

1010
.. code-block:: python
1111
1212
import logging
13-
logging.getLogger().setLevel('DEBUG') # Values: ERROR, WARNING, INFO, DEBUG
13+
logging.getLogger().setLevel('DEBUG') # Available options: ERROR, WARNING, INFO, DEBUG
1414
1515
Run identification
1616

@@ -21,14 +21,14 @@ Run identification
2121
h.bessel_high_filter('adt', 500, order=3)
2222
date = datetime(2019, 2, 23)
2323
a, c = h.eddy_identification(
24-
'adt', 'ugos', 'vgos', # Variable to use for identification
24+
'adt', 'ugos', 'vgos', # Variables used for identification
2525
date, # Date of identification
2626
0.002, # step between two isolines of detection (m)
27-
pixel_limit=(5, 2000), # Min and max of pixel can be include in contour
28-
shape_error=55, # Error maximal of circle fitting over contour to be accepted
27+
pixel_limit=(5, 2000), # Min and max pixel count for valid contour
28+
shape_error=55, # Error max (%) between ratio of circle fit and contour
2929
)
3030
31-
Plot identification
31+
Plot the resulting identification
3232

3333
.. code-block:: python
3434
@@ -45,7 +45,7 @@ Plot identification
4545
4646
.. image:: ../share/png/eddies.png
4747

48-
Save identification datas
48+
Save identification data
4949

5050
.. code-block:: python
5151

0 commit comments

Comments
 (0)