Skip to content
Open
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
1 change: 1 addition & 0 deletions docs/api_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Classes
.. toctree::
:maxdepth: 1

classes/spharpy.sh
classes/spharpy.coordinates

Modules
Expand Down
17 changes: 17 additions & 0 deletions docs/classes/spharpy.sh.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Spherical Harmonic
----------------------

.. automodule:: spharpy.classes.sh


.. autoclass:: spharpy.SphericalHarmonics
:members:
:undoc-members:
:inherited-members:

.. autoclass:: spharpy.SphericalHarmonicSignal
:members:
:undoc-members:
:inherited-members:


66 changes: 48 additions & 18 deletions examples/spherical_harmonics.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion spharpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
__version__ = '0.6.2'

from .classes.sh import SphericalHarmonics
from .classes.sh import SphericalHarmonicSignal
from .classes.coordinates import SamplingSphere
from .classes.audio import SphericalHarmonicSignal
from . import spherical
from . import samplings
from . import plot
Expand Down
2 changes: 1 addition & 1 deletion spharpy/classes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
SphericalHarmonics
)

from .audio import (
from .sh import (
SphericalHarmonicSignal,
)

Expand Down
180 changes: 0 additions & 180 deletions spharpy/classes/audio.py

This file was deleted.

Loading