Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:
conda activate bluemath-tk
pip install bluemath-tk[stats]
pip install ruff
pip install plotly
pip install h5py
pip install prettytable
pip install csaps

- name: Run Ruff
run: |
Expand Down
3 changes: 1 addition & 2 deletions bluemath_tk/core/plotting/base_plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ def plot_line(self, ax: plt.Axes, **kwargs):
ls=ls,
**kwargs,
)
self.set_grid(ax)

def plot_scatter(self, ax: plt.Axes, **kwargs):
c = kwargs.pop("c", self.scatter_defaults.get("color"))
Expand All @@ -112,7 +111,6 @@ def plot_scatter(self, ax: plt.Axes, **kwargs):
marker=marker,
**kwargs,
)
self.set_grid(ax)

def plot_bathymetry(
self,
Expand Down Expand Up @@ -191,6 +189,7 @@ def plot_satellite(
map_img,
extent=extent,
transform=ccrs.Mercator.GOOGLE,
**kwargs,
)


Expand Down
Loading
Loading