Skip to content

Commit

Permalink
fixed default show grid lines,coastline, land (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
ifenty committed Oct 30, 2020
1 parent 5bea0cd commit c79ccd4
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions ecco_v4_py/tile_plot_proj.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def plot_proj_to_latlon_grid(lons, lats, data,
show_colorbar = False,
show_grid_lines = True,
show_grid_labels = True,
show_coastline =True,
show_coastline = True,
show_land = True,
grid_linewidth = 1,
grid_linestyle = '--',
Expand Down Expand Up @@ -270,26 +270,24 @@ def plot_proj_to_latlon_grid(lons, lats, data,
sm._A = []
cbar = plt.colorbar(sm,ax=ax)



#%%
return f, ax, p, cbar, new_grid_lon, new_grid_lat, data_latlon_projection
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%




def plot_pstereo(xx,yy, data,
data_projection_code, \
lat_lim,
cmin, cmax, ax,
plot_type = 'pcolormesh',
show_colorbar=False,
circle_boundary = False,
circle_boundary = False,
grid_linewidth = 1,
grid_linestyle = '--',
cmap=None,
show_grid_lines=False,
show_grid_lines = False,
show_coastline = True,
show_land = True,
custom_background = False,
background_name = [],
background_resolution = [],
Expand Down

0 comments on commit c79ccd4

Please sign in to comment.