Skip to content

Commit 28fe789

Browse files
committed
Add link to an example of tracking
1 parent d6164ed commit 28fe789

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

doc/run_tracking.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ It will produce 4 files by run:
4949
- A file which will contains all the short track which are shorter than **TRACK_DURATION_MIN**
5050
- A file which will contains all the long track which are longer than **TRACK_DURATION_MIN**
5151

52+
Use python module
53+
*****************
54+
55+
An example of tracking with python module is available in the gallery:
56+
:ref:`sphx_glr_python_module_08_tracking_manipulation_pet_run_a_tracking.py`
5257

5358
Choose a tracker
5459
****************

examples/02_eddy_identification/pet_interp_grid_on_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def update_axes(ax, mappable=None):
5858
a.display(ax, color="r", linewidth=0.5, label="Anticyclonic", ref=-10)
5959
c.display(ax, color="b", linewidth=0.5, label="Cyclonic", ref=-10)
6060
eke = a.interp_grid(aviso_map, "eke", method="mean", intern=False)
61-
m = ax.scatter((a.longitude + 10) % 360 - 10, a.latitude, c=eke, **eke_kwargs)
61+
ax.scatter((a.longitude + 10) % 360 - 10, a.latitude, c=eke, **eke_kwargs)
6262
eke = c.interp_grid(aviso_map, "eke", method="mean", intern=False)
6363
m = ax.scatter((c.longitude + 10) % 360 - 10, c.latitude, c=eke, **eke_kwargs)
6464
update_axes(ax, m)

0 commit comments

Comments
 (0)