From 48b0a4b65f2986f7026f79c3fde6c1005d440bd5 Mon Sep 17 00:00:00 2001 From: Lionel GUEZ <guez@lmd.ens.fr> Date: Thu, 7 Sep 2023 14:55:46 +0200 Subject: [PATCH] Polish --- Trajectories/Tests/tests.json | 9 +++++---- Trajectories/cost_function.py | 4 ++-- Trajectories/trajectories.py | 12 ++++++------ 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/Trajectories/Tests/tests.json b/Trajectories/Tests/tests.json index 7beead31..4474af68 100644 --- a/Trajectories/Tests/tests.json +++ b/Trajectories/Tests/tests.json @@ -89,13 +89,14 @@ "$tests_old_dir/Greece_cost_function/segments_cost_functions.graphml" ] }, - "Draw_segments": { - "command": [ + "Draw_segments": + { + "command": + [ "$src_dir/Trajectories/draw_segments.py", "$my_data_dir/Eurec4A/Eurec4A_graph_anti/segments_cost_functions.gt", "segments.gv", - "-t", - "$my_data_dir/Eurec4A/Eurec4A_graph_anti/traj_segm.json" + "-t", "$my_data_dir/Eurec4A/Eurec4A_graph_anti/traj_segm.json" ] }, "Plot_traj": { diff --git a/Trajectories/cost_function.py b/Trajectories/cost_function.py index 3bb03ce9..8b3b428e 100755 --- a/Trajectories/cost_function.py +++ b/Trajectories/cost_function.py @@ -91,9 +91,9 @@ parser = argparse.ArgumentParser() parser.add_argument("SHPC_dir") parser.add_argument("orientation", choices = ["Anticyclones", "Cyclones"]) parser.add_argument("input_segments", help = "input graph of segments without " - "cost functions, suffix .gt (graph-tool) or .graphml") + "cost, suffix .gt (graph-tool) or .graphml") parser.add_argument("output_segments", help = "output graph of segments with " - "cost functions, suffix .gt (graph-tool) or .graphml") + "cost, suffix .gt (graph-tool) or .graphml") args = parser.parse_args() with open("e_overestim.txt") as f: e_overestim = int(f.read()) diff --git a/Trajectories/trajectories.py b/Trajectories/trajectories.py index f9537903..582e374e 100755 --- a/Trajectories/trajectories.py +++ b/Trajectories/trajectories.py @@ -25,18 +25,18 @@ traj_prop = g.new_vertex_property('int', val = - 1) # does not belong yet to any trajectory. The trajectory index is also # the index in lists traj_segm and expanded_traj. -all_cost = g.get_edges([g.edge_properties.cost_function]) -# numpy array with dtype float64 - -# Array of indices that sort on cost: -ind_cost = np.argsort(all_cost[:, 2]) - ind_traj = - 1 # initialize index of trajectory traj_segm = [] # an element of traj_segm is a trajectory, represented # by a list of segments expanded_traj = [] # an element of expanded_traj is a trajectory, # represented by a list of instantaneous eddies +all_cost = g.get_edges([g.edge_properties.cost_function]) +# numpy array with dtype float64 + +# Array of indices that sort on cost: +ind_cost = np.argsort(all_cost[:, 2]) + # Loop over edges in ascending order of cost: for i in ind_cost: source = all_cost[i, 0] -- GitLab