diff --git a/pyart/graph/__init__.py b/pyart/graph/__init__.py index 2cf9b6cd8a..49f08214ae 100644 --- a/pyart/graph/__init__.py +++ b/pyart/graph/__init__.py @@ -62,7 +62,6 @@ from .radardisplay_airborne import AirborneRadarDisplay # noqa from .radarmapdisplay import RadarMapDisplay # noqa from .radarmapdisplay_basemap import RadarMapDisplayBasemap # noqa -from . import max_cappi # noqa from .max_cappi import plot_maxcappi # noqa __all__ = [s for s in dir() if not s.startswith("_")] diff --git a/pyart/graph/max_cappi.py b/pyart/graph/max_cappi.py index 3e0015a936..25d0309f75 100644 --- a/pyart/graph/max_cappi.py +++ b/pyart/graph/max_cappi.py @@ -37,7 +37,6 @@ def plot_maxcappi( colorbar=True, range_rings=False, dpi=100, - show_progress=False, savedir=None, show_figure=True, add_slogan=False, @@ -74,8 +73,6 @@ def plot_maxcappi( Whether to include range rings at 50 km intervals. Default is True. dpi : int, optional DPI (dots per inch) for the plot. Default is 100. - show_progress : bool, optional - Whether to print progress messages. Default is False. savedir : str, optional Directory where the plot will be saved. If None, the plot is not saved. show_figure : bool, optional @@ -87,6 +84,7 @@ def plot_maxcappi( ------- None This function does not return any value. It generates and optionally displays/saves a plot. + Notes ----- Author : Hamid Ali Syed (@syedhamidali) @@ -169,13 +167,6 @@ def plot_range_rings(ax_xy, max_range): ax_xy.legend(loc="upper right", prop={"weight": "normal", "size": 8}) - if show_progress: - print("...................................") - print( - f"Plotting {title}: {ds['time'].dt.strftime('%Y%m%d %H:%M:%S').values.item()}" - ) - print("...................................\n") - def _get_projection(ds): """ Determine the central latitude and longitude from a dataset