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

Remove intermediary variable `src_crs`

parent 94dd4f6f
No related branches found
No related tags found
No related merge requests found
......@@ -193,12 +193,13 @@ if __name__ == "__main__":
grid_nml = None
fig = plt.figure()
src_crs = ccrs.PlateCarree()
projection = ccrs.PlateCarree()
##projection = ccrs.NorthPolarStereo()
ax = plt.axes(projection = projection)
if args.grid: plot_grid_points(grid_nml, args.window, ax, src_crs)
if args.grid:
plot_grid_points(grid_nml, args.window, ax, ccrs.PlateCarree())
if args.window is None: plot_grid_bb(grid_nml, ax)
SHPC = util_eddies.SHPC_class(args.shpc_dir, def_orient = "Anticyclones")
......
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