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

Polish

parent d734fd01
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3 #!/usr/bin/env python3
"""This script reads a Json file containing expanded trajectories. It
writes a new Json file containing truncated trajectories. Each
truncated trajectory contains only eddies before a given date.
"""
import json import json
import bisect import bisect
import sys import sys
...@@ -10,8 +16,10 @@ if len(sys.argv) != 4: ...@@ -10,8 +16,10 @@ if len(sys.argv) != 4:
sys.exit("Required arguments: last-date input-file output-file") sys.exit("Required arguments: last-date input-file output-file")
last_date = int(sys.argv[1]) last_date = int(sys.argv[1])
with open(sys.argv[2]) as f: with open(sys.argv[2]) as f:
expanded_traj = json.load(f) expanded_traj = json.load(f)
last_node = util_eddies.date_eddy_to_node( last_node = util_eddies.date_eddy_to_node(
last_date, expanded_traj["e_overestim"], expanded_traj["e_overestim"] last_date, expanded_traj["e_overestim"], expanded_traj["e_overestim"]
) )
......
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