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
d37f8e24
Commit
d37f8e24
authored
1 year ago
by
Lionel GUEZ
Browse files
Options
Downloads
Patches
Plain Diff
Get `e_overestim` from graph property
Instead of reading it from a separate file.
parent
9807be2a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Trajectories/Tests/perf_tests.json
+0
-3
0 additions, 3 deletions
Trajectories/Tests/perf_tests.json
Trajectories/Tests/tests.json
+2
-8
2 additions, 8 deletions
Trajectories/Tests/tests.json
Trajectories/cost_function.py
+5
-7
5 additions, 7 deletions
Trajectories/cost_function.py
with
7 additions
and
18 deletions
Trajectories/Tests/perf_tests.json
+
0
−
3
View file @
d37f8e24
...
@@ -16,9 +16,6 @@
...
@@ -16,9 +16,6 @@
"Anticyclones"
,
"Anticyclones"
,
"$tests_old_dir/Perf_segments/segments.gt"
,
"$tests_old_dir/Perf_segments/segments.gt"
,
"segments_cost_functions.gt"
"segments_cost_functions.gt"
],
"symlink"
:
[
"$my_data_dir/Global_1993_2021/Graph_anti/e_overestim.txt"
]
]
},
},
"Perf_trajectories"
:
{
"Perf_trajectories"
:
{
...
...
This diff is collapsed.
Click to expand it.
Trajectories/Tests/tests.json
+
2
−
8
View file @
d37f8e24
...
@@ -45,9 +45,6 @@
...
@@ -45,9 +45,6 @@
"$tests_old_dir/Segments/segments.graphml"
,
"$tests_old_dir/Segments/segments.graphml"
,
"segments_cost_functions.graphml"
"segments_cost_functions.graphml"
],
],
"symlink"
:
[
"$tests_old_dir/EGr2nd15md4/e_overestim.txt"
],
"exclude_cmp"
:
[
"exclude_cmp"
:
[
"timings.txt"
"timings.txt"
]
]
...
@@ -69,9 +66,6 @@
...
@@ -69,9 +66,6 @@
"$tests_old_dir/Greece_segments/segments.graphml"
,
"$tests_old_dir/Greece_segments/segments.graphml"
,
"segments_cost_functions.graphml"
"segments_cost_functions.graphml"
],
],
"symlink"
:
[
"$tests_old_dir/Greece_graph/e_overestim.txt"
],
"exclude_cmp"
:
[
"exclude_cmp"
:
[
"timings.txt"
"timings.txt"
]
]
...
@@ -106,7 +100,7 @@
...
@@ -106,7 +100,7 @@
"command"
:
[
"command"
:
[
"$src_dir/Trajectories/plot_traj.py"
,
"$src_dir/Trajectories/plot_traj.py"
,
"$tests_old_dir/Trajectories/expanded_traj.json"
,
"$tests_old_dir/Trajectories/expanded_traj.json"
,
"$tests_old_dir/
Cost_functions
/e_overestim.txt"
,
"$tests_old_dir/
EGr2nd15md4
/e_overestim.txt"
,
"$tests_old_dir/Extraction_eddies_region_2_noise/SHPC"
,
"$tests_old_dir/Extraction_eddies_region_2_noise/SHPC"
,
"Anticyclones"
,
"Anticyclones"
,
"--save=png"
,
"--save=png"
,
...
@@ -117,7 +111,7 @@
...
@@ -117,7 +111,7 @@
"command"
:
[
"command"
:
[
"$src_dir/Trajectories/plot_traj.py"
,
"$src_dir/Trajectories/plot_traj.py"
,
"$tests_old_dir/Greece_trajectories/expanded_traj.json"
,
"$tests_old_dir/Greece_trajectories/expanded_traj.json"
,
"$tests_old_dir/Greece_
cost_function
/e_overestim.txt"
,
"$tests_old_dir/Greece_
graph
/e_overestim.txt"
,
"$tests_old_dir/Greece/SHPC"
,
"$tests_old_dir/Greece/SHPC"
,
"Anticyclones"
,
"Anticyclones"
,
"--save=png"
,
"--save=png"
,
...
...
This diff is collapsed.
Click to expand it.
Trajectories/cost_function.py
+
5
−
7
View file @
d37f8e24
...
@@ -5,8 +5,6 @@ the non-local cost applied to edges.
...
@@ -5,8 +5,6 @@ the non-local cost applied to edges.
Input:
Input:
--
"
e_overestim.txt
"
, expected to be in the current directory;
-- the graph of segments without cost;
-- the graph of segments without cost;
-- the SHPC.
-- the SHPC.
...
@@ -95,7 +93,6 @@ parser.add_argument("input_segments", help = "input graph of segments without "
...
@@ -95,7 +93,6 @@ parser.add_argument("input_segments", help = "input graph of segments without "
parser
.
add_argument
(
"
output_segments
"
,
help
=
"
output graph of segments with
"
parser
.
add_argument
(
"
output_segments
"
,
help
=
"
output graph of segments with
"
"
cost, suffix .gt (graph-tool) or .graphml
"
)
"
cost, suffix .gt (graph-tool) or .graphml
"
)
args
=
parser
.
parse_args
()
args
=
parser
.
parse_args
()
with
open
(
"
e_overestim.txt
"
)
as
f
:
e_overestim
=
int
(
f
.
read
())
# Set some values needed for the cost function:
# Set some values needed for the cost function:
delta_cent_mean
=
3.8481
# in km
delta_cent_mean
=
3.8481
# in km
...
@@ -133,8 +130,8 @@ print("Iterating on vertices...")
...
@@ -133,8 +130,8 @@ print("Iterating on vertices...")
for
n
in
g
.
vertices
():
for
n
in
g
.
vertices
():
if
n
.
in_degree
()
!=
0
:
if
n
.
in_degree
()
!=
0
:
# Define properties for beginning of the segment:
# Define properties for beginning of the segment:
properties
=
node_to_prop
(
g
.
vp
.
inst_eddies
[
n
][:
n_days_avg
],
e_overestim
,
properties
=
node_to_prop
(
g
.
vp
.
inst_eddies
[
n
][:
n_days_avg
],
SHPC
,
args
.
orientation
)
g
.
gp
.
e_overestim
,
SHPC
,
args
.
orientation
)
g
.
vp
.
first_av_rad
[
n
],
g
.
vp
.
first_av_ros
[
n
]
\
g
.
vp
.
first_av_rad
[
n
],
g
.
vp
.
first_av_ros
[
n
]
\
=
calculate_radii_rossby
(
properties
)
=
calculate_radii_rossby
(
properties
)
g
.
vp
.
pos_first
[
n
]
=
properties
[
0
][
"
pos
"
]
# in degrees
g
.
vp
.
pos_first
[
n
]
=
properties
[
0
][
"
pos
"
]
# in degrees
...
@@ -152,7 +149,8 @@ for n in g.vertices():
...
@@ -152,7 +149,8 @@ for n in g.vertices():
# We cannot use part of properties from the beginning
# We cannot use part of properties from the beginning
# of the segment.
# of the segment.
properties
=
node_to_prop
(
g
.
vp
.
inst_eddies
[
n
][
-
n_days_avg
:],
properties
=
node_to_prop
(
g
.
vp
.
inst_eddies
[
n
][
-
n_days_avg
:],
e_overestim
,
SHPC
,
args
.
orientation
)
g
.
gp
.
e_overestim
,
SHPC
,
args
.
orientation
)
else
:
else
:
# assertion: n.in_degree() != 0 and n_days_avg <
# assertion: n.in_degree() != 0 and n_days_avg <
# len_seg < 2 * n_days_avg
# len_seg < 2 * n_days_avg
...
@@ -161,7 +159,7 @@ for n in g.vertices():
...
@@ -161,7 +159,7 @@ for n in g.vertices():
# of the segment.
# of the segment.
properties
=
properties
[
len_seg
-
n_days_avg
:]
\
properties
=
properties
[
len_seg
-
n_days_avg
:]
\
+
node_to_prop
(
g
.
vp
.
inst_eddies
[
n
][
n_days_avg
:],
+
node_to_prop
(
g
.
vp
.
inst_eddies
[
n
][
n_days_avg
:],
e_overestim
,
SHPC
,
args
.
orientation
)
g
.
gp
.
e_overestim
,
SHPC
,
args
.
orientation
)
g
.
vp
.
last_av_rad
[
n
],
g
.
vp
.
last_av_ros
[
n
]
\
g
.
vp
.
last_av_rad
[
n
],
g
.
vp
.
last_av_ros
[
n
]
\
=
calculate_radii_rossby
(
properties
)
=
calculate_radii_rossby
(
properties
)
...
...
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