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
941be0b8
Commit
941be0b8
authored
2 years ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Check argument label in function `is_node_type`
parent
e35226da
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Overlap/plot_components.py
+3
-1
3 additions, 1 deletion
Overlap/plot_components.py
with
3 additions
and
1 deletion
Overlap/plot_components.py
+
3
−
1
View file @
941be0b8
...
...
@@ -7,6 +7,7 @@ import numpy as np
from
matplotlib
import
patches
import
cartopy.crs
as
ccrs
import
report_graph
import
sys
color_iter
=
itertools
.
cycle
((
'
#1f77b4
'
,
'
#aec7e8
'
,
'
#ff7f0e
'
,
'
#ffbb78
'
,
'
#2ca02c
'
,
'
#98df8a
'
,
...
...
@@ -40,6 +41,8 @@ def is_node_type(G, n, label):
only_date
=
True
)
==
label
[
1
]
elif
label
[
0
]
==
"
node
"
:
return
n
in
label
[
1
]
else
:
sys
.
exit
(
f
"
is_node_type: bad label:
{
label
}
"
)
def
plot_nbunch
(
G
,
nbunch
,
color
=
'
#1f78b4
'
,
label
=
None
,
ax
=
None
):
if
ax
is
None
:
ax
=
plt
.
gca
()
...
...
@@ -96,7 +99,6 @@ def animate_nbunch(G, nbunch):
if
__name__
==
"
__main__
"
:
import
argparse
import
sys
from
os
import
path
sys
.
path
.
append
(
path
.
join
(
sys
.
path
[
0
],
"
../Common
"
))
import
util_eddies
...
...
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