Skip to content

Commit c376b7a

Browse files
committed
[JTH] little change in base plotting library
1 parent 804e5e4 commit c376b7a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bluemath_tk/core/plotting/base_plotting.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ def plot_line(self, ax: plt.Axes, **kwargs):
100100
ls=ls,
101101
**kwargs,
102102
)
103-
self.set_grid(ax)
104103

105104
def plot_scatter(self, ax: plt.Axes, **kwargs):
106105
c = kwargs.pop("c", self.scatter_defaults.get("color"))
@@ -112,7 +111,6 @@ def plot_scatter(self, ax: plt.Axes, **kwargs):
112111
marker=marker,
113112
**kwargs,
114113
)
115-
self.set_grid(ax)
116114

117115
def plot_bathymetry(
118116
self,
@@ -191,6 +189,7 @@ def plot_satellite(
191189
map_img,
192190
extent=extent,
193191
transform=ccrs.Mercator.GOOGLE,
192+
**kwargs,
194193
)
195194

196195

0 commit comments

Comments
 (0)