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

Polish

parent cf983ab9
No related branches found
No related tags found
No related merge requests found
......@@ -72,14 +72,9 @@ if __name__ == "__main__":
"time steps), >= 1")
args = parser.parse_args()
with open(args.expanded_traj) as f:
expanded_traj = json.load(f)
with open(args.expanded_traj) as f: expanded_traj = json.load(f)
print("Number of trajectories:", len(expanded_traj))
with open(args.e_overestim) as f:
e_overestim = int(f.read())
with open(args.e_overestim) as f: e_overestim = int(f.read())
SHPC = util_eddies.SHPC_class(args.SHPC, def_orient = args.orientation)
src_crs = ccrs.Geodetic()
projection = ccrs.PlateCarree(central_longitude = 110)
......
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