diff --git a/echopype/commongrid/api.py b/echopype/commongrid/api.py index 0b1a1eb58..0d0852fa4 100644 --- a/echopype/commongrid/api.py +++ b/echopype/commongrid/api.py @@ -175,10 +175,6 @@ def compute_MVBS( "binning_mode": "physical units", "range_meter_interval": str(range_bin) + "m", "ping_time_interval": ping_time_bin, - "actual_range": [ - round(float(ds_MVBS["Sv"].min().values), 2), - round(float(ds_MVBS["Sv"].max().values), 2), - ], } ) diff --git a/echopype/commongrid/utils.py b/echopype/commongrid/utils.py index f80c5a257..716e3ae83 100644 --- a/echopype/commongrid/utils.py +++ b/echopype/commongrid/utils.py @@ -235,10 +235,6 @@ def _set_var_attrs(da, long_name, units, round_digits, standard_name=None): da.attrs = { "long_name": long_name, "units": units, - "actual_range": [ - round(float(da.min().values), round_digits), - round(float(da.max().values), round_digits), - ], } if standard_name: da.attrs["standard_name"] = standard_name