From 57a34bc7074df6b4582c1a77840944d698b7b240 Mon Sep 17 00:00:00 2001
From: Lionel GUEZ <guez@lmd.ens.fr>
Date: Tue, 10 Oct 2023 15:14:28 +0200
Subject: [PATCH] Use Mercator projection

---
 Trajectories/plot_traj.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Trajectories/plot_traj.py b/Trajectories/plot_traj.py
index 61455c8c..fb98dcaa 100755
--- a/Trajectories/plot_traj.py
+++ b/Trajectories/plot_traj.py
@@ -77,7 +77,7 @@ if __name__ == "__main__":
     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)
+    projection = ccrs.Mercator(central_longitude = 110)
     fig, ax = plt.subplots(subplot_kw = {"projection": projection})
     random.seed(0)
 
-- 
GitLab