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
563a8991
Commit
563a8991
authored
3 years ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Bug fix: do not try to distinguish orientation
An SHPC now contains a single orientation (since after v0.12).
parent
8aeefe6f
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
Inst_eddies/Analysis/stat.py
+0
-8
0 additions, 8 deletions
Inst_eddies/Analysis/stat.py
with
0 additions
and
8 deletions
Inst_eddies/Analysis/stat.py
+
0
−
8
View file @
563a8991
...
...
@@ -9,9 +9,7 @@ parser = argparse.ArgumentParser()
parser
.
add_argument
(
"
directory
"
,
help
=
"
containing the shapefiles
"
)
args
=
parser
.
parse_args
()
n_valid_cycl
=
0
n_valid
=
0
n_minima
=
0
n_radius4
=
np
.
zeros
(
3
,
dtype
=
int
)
n_outer
=
0
n_points_valid
=
0
...
...
@@ -26,7 +24,6 @@ with shapefile.Reader(path.join(args.directory, "extremum")) as extremum, \
for
rec_extr
,
shape_rec_outer
in
zip
(
extremum
.
iterRecords
(),
outermost_contour
):
if
rec_extr
.
cyclone
==
1
:
n_minima
+=
1
l
=
len
(
shape_rec_outer
.
shape
.
points
)
n_points
+=
l
...
...
@@ -34,7 +31,6 @@ with shapefile.Reader(path.join(args.directory, "extremum")) as extremum, \
n_valid
+=
1
n_points_valid
+=
l
if
rec_extr
.
cyclone
==
1
and
rec_extr
.
valid
==
1
:
n_valid_cycl
+=
1
if
shape_rec_outer
.
record
.
r_eq_area
>=
0
:
n_outer
+=
1
if
shape_rec_outer
.
record
.
radius4
==
0
:
...
...
@@ -55,14 +51,10 @@ with shapefile.Reader(path.join(args.directory, "extremum")) as extremum, \
n_valid_speed
+=
1
print
(
"
number of extrema of SSH:
"
,
n_extr
)
print
(
"
number of minima of SSH:
"
,
n_minima
)
print
(
"
number of maxima of SSH:
"
,
n_extr
-
n_minima
)
print
()
print
(
"
number of valid eddies (outermost contour found with sufficient area):
"
,
n_valid
)
print
(
"
number of valid cyclones:
"
,
n_valid_cycl
)
print
(
"
number of valid anticyclones:
"
,
n_valid
-
n_valid_cycl
)
print
()
print
(
"
number of extrema with radius4 == 0 (no outermost contour or
"
...
...
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