Skip to content
Snippets Groups Projects
Commit d37f8e24 authored by Lionel GUEZ's avatar Lionel GUEZ
Browse files

Get `e_overestim` from graph property

Instead of reading it from a separate file.
parent 9807be2a
No related branches found
No related tags found
No related merge requests found
...@@ -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": {
......
...@@ -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",
......
...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment