Skip to content

Commit

Permalink
added extended borders on contour plot
Browse files Browse the repository at this point in the history
  • Loading branch information
bohlinger committed Feb 5, 2024
1 parent 370196f commit b86eea3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wavy/quicklookmod.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def quicklook(self, a=False, projection=None, **kwargs):
vmax = kwargs.get('vmax', np.nanmax(plot_var))

levels = kwargs.get('levels',
np.arange(vmin, vmax, .5))
np.arange(0, vmax+.5, .5))
#np.arange(vmin, vmax, .5))

cflevels = kwargs.get('cflevels', levels)
clevels = kwargs.get('clevels', levels)
Expand Down

0 comments on commit b86eea3

Please sign in to comment.