Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Detection eddies
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IPSL
LMD
DPAO
Detection eddies
Commits
74eafcad
Commit
74eafcad
authored
10 months ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Remove argument `i_slice` of `ishape_range`
Return `i_slice` instead. Since getting `i_slice` is now cheaper.
parent
24f01d07
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Common/util_eddies.py
+5
-5
5 additions, 5 deletions
Common/util_eddies.py
Inst_eddies/Analysis/plot_eddy_contours.py
+1
-1
1 addition, 1 deletion
Inst_eddies/Analysis/plot_eddy_contours.py
Inst_eddies/Analysis/write_date_range.py
+1
-1
1 addition, 1 deletion
Inst_eddies/Analysis/write_date_range.py
with
7 additions
and
7 deletions
Common/util_eddies.py
+
5
−
5
View file @
74eafcad
...
...
@@ -254,16 +254,16 @@ class SHPC_class:
return
i_slice
,
ishape
def
ishape_range
(
self
,
date
,
i_slice
,
orientation
):
def
ishape_range
(
self
,
date
,
orientation
):
"""
Returns an empty list if ishape_last was not found and could not be
created.
Crashes if i_slice is not None and date is not in i_slice.
created.
"""
i_slice
,
ishape_start
=
self
.
comp_ishape
(
date
,
1
,
orientation
,
i_slice
)
i_slice
,
ishape_start
=
self
.
comp_ishape
(
date
,
1
,
orientation
)
if
ishape_start
is
None
:
return
[]
return
i_slice
,
[]
else
:
ishape_stop
=
(
self
.
_ishape_last
[
i_slice
][
orientation
][
...
...
@@ -271,7 +271,7 @@ class SHPC_class:
]
+
1
)
return
range
(
ishape_start
,
ishape_stop
)
return
i_slice
,
range
(
ishape_start
,
ishape_stop
)
def
in_window
(
point
,
window
):
...
...
This diff is collapsed.
Click to expand it.
Inst_eddies/Analysis/plot_eddy_contours.py
+
1
−
1
View file @
74eafcad
...
...
@@ -36,7 +36,7 @@ def select_ishapes(
"""
ishape_list
=
SHPC
.
ishape_range
(
d
,
i_slice
,
orientation
)
i_slice
,
ishape_list
=
SHPC
.
ishape_range
(
d
,
orientation
)
if
window
is
None
:
ishape_list_filt
=
ishape_list
...
...
This diff is collapsed.
Click to expand it.
Inst_eddies/Analysis/write_date_range.py
+
1
−
1
View file @
74eafcad
...
...
@@ -46,7 +46,7 @@ for orientation in ["Anticyclones", "Cyclones"]:
for
my_date
in
range
(
args
.
date_start
,
date_stop
):
eddy_index
=
0
for
ishape
in
SHPC
.
ishape_range
(
my_date
,
i_slice
,
orientation
):
for
ishape
in
SHPC
.
ishape_range
(
my_date
,
orientation
)
[
1
]
:
eddy_index
+=
1
for
sr
,
w
in
zip
([
extremum
.
shapeRecord
(
ishape
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment