Skip to content

Commit b3f66bc

Browse files
minor corrections
sorting imports adding notebooks for binder adding kwargs to shift_files correction of new warnings done
1 parent 006adc5 commit b3f66bc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+127
-83
lines changed

examples/16_network/pet_follow_particle.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@
88
from matplotlib import colors
99
from matplotlib import pyplot as plt
1010
from matplotlib.animation import FuncAnimation
11-
from numba import njit
12-
from numba import types as nb_types
13-
from numpy import arange, meshgrid, ones, unique, where, zeros
11+
from numpy import arange, meshgrid, ones, unique, zeros
1412

1513
from py_eddy_tracker import start_logger
1614
from py_eddy_tracker.appli.gui import Anim
1715
from py_eddy_tracker.data import get_demo_path
1816
from py_eddy_tracker.dataset.grid import GridCollection
19-
from py_eddy_tracker.observations.network import NetworkObservations
2017
from py_eddy_tracker.observations.groups import particle_candidate
18+
from py_eddy_tracker.observations.network import NetworkObservations
2119
from py_eddy_tracker.poly import group_obs
2220

2321
start_logger().setLevel("ERROR")

examples/16_network/pet_ioannou_2017_case.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@
1414
from matplotlib import pyplot as plt
1515
from matplotlib.animation import FuncAnimation
1616
from matplotlib.ticker import FuncFormatter
17-
from numpy import arange, where, array, pi
17+
from numpy import arange, array, pi, where
1818

1919
from py_eddy_tracker.appli.gui import Anim
2020
from py_eddy_tracker.data import get_demo_path
21+
from py_eddy_tracker.generic import coordinates_to_local
2122
from py_eddy_tracker.gui import GUI_AXES
2223
from py_eddy_tracker.observations.network import NetworkObservations
23-
24-
from py_eddy_tracker.generic import coordinates_to_local
2524
from py_eddy_tracker.poly import fit_ellipse
2625

2726
# %%

notebooks/python_module/01_general_things/pet_storage.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
"name": "python",
231231
"nbconvert_exporter": "python",
232232
"pygments_lexer": "ipython3",
233-
"version": "3.9.2"
233+
"version": "3.7.9"
234234
}
235235
},
236236
"nbformat": 4,

notebooks/python_module/02_eddy_identification/pet_contour_circle.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"name": "python",
8383
"nbconvert_exporter": "python",
8484
"pygments_lexer": "ipython3",
85-
"version": "3.7.7"
85+
"version": "3.7.9"
8686
}
8787
},
8888
"nbformat": 4,

notebooks/python_module/02_eddy_identification/pet_display_id.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
"name": "python",
130130
"nbconvert_exporter": "python",
131131
"pygments_lexer": "ipython3",
132-
"version": "3.7.7"
132+
"version": "3.7.9"
133133
}
134134
},
135135
"nbformat": 4,

notebooks/python_module/02_eddy_identification/pet_eddy_detection.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@
291291
"name": "python",
292292
"nbconvert_exporter": "python",
293293
"pygments_lexer": "ipython3",
294-
"version": "3.7.7"
294+
"version": "3.7.9"
295295
}
296296
},
297297
"nbformat": 4,

notebooks/python_module/02_eddy_identification/pet_eddy_detection_ACC.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
"name": "python",
162162
"nbconvert_exporter": "python",
163163
"pygments_lexer": "ipython3",
164-
"version": "3.7.7"
164+
"version": "3.7.9"
165165
}
166166
},
167167
"nbformat": 4,

notebooks/python_module/02_eddy_identification/pet_eddy_detection_gulf_stream.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
"name": "python",
274274
"nbconvert_exporter": "python",
275275
"pygments_lexer": "ipython3",
276-
"version": "3.7.7"
276+
"version": "3.7.9"
277277
}
278278
},
279279
"nbformat": 4,

notebooks/python_module/02_eddy_identification/pet_filter_and_detection.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
"name": "python",
177177
"nbconvert_exporter": "python",
178178
"pygments_lexer": "ipython3",
179-
"version": "3.7.7"
179+
"version": "3.7.9"
180180
}
181181
},
182182
"nbformat": 4,

notebooks/python_module/02_eddy_identification/pet_interp_grid_on_dataset.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
"name": "python",
112112
"nbconvert_exporter": "python",
113113
"pygments_lexer": "ipython3",
114-
"version": "3.7.7"
114+
"version": "3.7.9"
115115
}
116116
},
117117
"nbformat": 4,

0 commit comments

Comments
 (0)