We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae911de commit 2a0e637Copy full SHA for 2a0e637
echopype/visualize/__init__.py
@@ -3,7 +3,19 @@
3
4
**NOTE: To use this subpackage. `Matplotlib` and `cmocean` package must be installed.**
5
"""
6
+import warnings
7
from .api import create_echogram
8
from . import cm
9
10
__all__ = ["create_echogram", "cm"]
11
+
12
+warnings.warn(
13
+ (
14
+ "`echopype.visualization` is deprecated and will be removed in an upcoming release. \n"
15
+ "Use Echoshader for visualization functions instead. \n"
16
+ "Repository: https://github.com/OSOceanAcoustics/echoshader \n"
17
+ "Echogram plotting: https://echoshader.readthedocs.io/en/latest/version_0.1.0/echogram_examples.html" # noqa
18
+ ),
19
+ DeprecationWarning,
20
+ 2,
21
+)
0 commit comments