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

Use Mercator projection

parent 186f36be
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ if __name__ == "__main__": ...@@ -77,7 +77,7 @@ if __name__ == "__main__":
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) SHPC = util_eddies.SHPC_class(args.SHPC, def_orient = args.orientation)
src_crs = ccrs.Geodetic() src_crs = ccrs.Geodetic()
projection = ccrs.PlateCarree(central_longitude = 110) projection = ccrs.Mercator(central_longitude = 110)
fig, ax = plt.subplots(subplot_kw = {"projection": projection}) fig, ax = plt.subplots(subplot_kw = {"projection": projection})
random.seed(0) random.seed(0)
......
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