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
0b2ca97a
Commit
0b2ca97a
authored
4 years ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Define functions to make an animation
parent
991af03f
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
Analysis/plot_snapshot.py
+39
-0
39 additions, 0 deletions
Analysis/plot_snapshot.py
with
39 additions
and
0 deletions
Analysis/plot_snapshot.py
+
39
−
0
View file @
0b2ca97a
...
...
@@ -25,6 +25,7 @@ import numpy as np
import
math
import
cartopy.crs
as
ccrs
from
os
import
path
from
matplotlib
import
animation
def
select_ishapes
(
k
,
k1
,
ishape_last
,
reader_extr
,
window
=
None
):
assert
k
>=
k1
...
...
@@ -140,6 +141,44 @@ def plot_grid_bb(shp_tr_dir, ax):
fill
=
False
)
ax
.
add_patch
(
rect
)
def
func
(
k
,
ax
,
ishape_lists
,
reader_extr
,
reader_outer
,
reader_m_s
,
bbox
):
ax
.
cla
()
ax
.
set_xlim
(
bbox
[
0
],
bbox
[
2
])
ax
.
set_ylim
(
bbox
[
1
],
bbox
[
3
])
ax
.
gridlines
(
draw_labels
=
True
)
ax
.
coastlines
()
snapshot
(
k
,
ax
,
ishape_lists
[
k
],
reader_extr
,
reader_outer
,
reader_m_s
)
def
bbox_union
(
b1
,
b2
):
if
b1
is
None
:
return
b2
else
:
return
[
min
(
b1
[
0
],
b2
[
0
]),
min
(
b1
[
1
],
b2
[
1
]),
max
(
b1
[
2
],
b2
[
2
]),
max
(
b1
[
3
],
b2
[
3
])]
def
compute_bbox
(
ishape_lists
,
reader_outer
):
bbox
=
None
for
ishape_list
in
ishape_lists
.
values
():
for
ishape
in
ishape_list
:
try
:
bbox
=
bbox_union
(
bbox
,
reader_outer
.
shape
(
ishape
).
bbox
)
except
AttributeError
:
pass
return
bbox
def
make_animation
(
fig
,
ax
,
k1
,
ishape_last
,
reader_extr
,
reader_outer
,
reader_m_s
,
window
,
k_min
,
k_max
):
ishape_lists
=
{
k
:
select_ishapes
(
k
,
k1
,
ishape_last
,
reader_extr
,
window
)
for
k
in
range
(
k_min
,
k_max
+
1
)}
bbox
=
compute_bbox
(
ishape_lists
,
reader_outer
)
ani
=
animation
.
FuncAnimation
(
fig
,
func
,
range
(
k_min
,
k_max
+
1
),
fargs
=
(
ax
,
ishape_lists
,
reader_extr
,
reader_outer
,
reader_m_s
,
bbox
),
interval
=
1000
,
repeat
=
False
)
return
ani
if
__name__
==
"
__main__
"
:
import
matplotlib.pyplot
as
plt
import
argparse
...
...
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