Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6c64125
add SHAudio SHTimeData and SHFrequencyData
tluebeck Jul 6, 2025
700bcb9
add tests
tluebeck Jul 6, 2025
67b163f
add doc and clean up
tluebeck Jul 7, 2025
d4e0556
fix typo
tluebeck Jul 7, 2025
90d05ba
fix typo
tluebeck Jul 11, 2025
40a973b
update according to review
tluebeck Jul 11, 2025
de6eaaa
update according to review
tluebeck Aug 5, 2025
490dfa8
Merge branch 'develop' into dev/spherical_harmonics_audio
tluebeck Oct 4, 2025
3424e41
adapt to new normalization names
tluebeck Oct 4, 2025
40785fa
Merge branch 'develop' into dev/spherical_harmonics_audio
tluebeck Oct 18, 2025
ef86b74
add SphericalharmonicDefinition to SHAudio Classes
tluebeck Oct 19, 2025
d991c26
ruff checks
tluebeck Oct 19, 2025
a1bf902
update according to review
tluebeck Oct 22, 2025
b3be88d
Merge branch 'develop' into dev/spherical_harmonics_audio
tluebeck Oct 22, 2025
a49f4cd
update according ot review
tluebeck Oct 23, 2025
dfd4d54
rename audio to sh_audio
tluebeck Oct 23, 2025
6666f3a
revert renaming of sh_audio
tluebeck Oct 24, 2025
2fce301
Merge branch 'develop' into dev/spherical_harmonics_audio
tluebeck Nov 19, 2025
e9c4fb0
Incorporate new SHBase class
tluebeck Nov 20, 2025
cc245e2
override time and freq setter in SHaudio
tluebeck Nov 20, 2025
001de12
Change normalization and channel_order behaiviour
tluebeck Nov 21, 2025
25dcd87
udpate according to review
tluebeck Nov 29, 2025
9348b08
add data init methods
tluebeck Dec 3, 2025
c07b683
clean up tests
tluebeck Dec 4, 2025
020af4c
update tests
tluebeck Dec 4, 2025
b05cb04
fix ruff errors
tluebeck Dec 4, 2025
5d1015b
clean up
tluebeck Dec 4, 2025
4ae1205
update according to review
tluebeck Dec 4, 2025
8276700
update according to review
tluebeck Dec 4, 2025
015e14d
update tests
tluebeck Dec 4, 2025
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 spharpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
from .classes.sh import SphericalHarmonics
from .classes.coordinates import SamplingSphere
from .classes.audio import SphericalHarmonicSignal
from .classes.audio import SphericalHarmonicTimeData
from .classes.audio import SphericalHarmonicFrequencyData
from . import spherical
from . import samplings
from . import plot
Expand All @@ -22,6 +24,8 @@
__all__ = [
'SphericalHarmonics',
'SphericalHarmonicSignal',
'SphericalHarmonicTimeData',
'SphericalHarmonicFrequencyData',
'spherical',
'samplings',
'plot',
Expand Down
4 changes: 4 additions & 0 deletions spharpy/classes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

from .audio import (
SphericalHarmonicSignal,
SphericalHarmonicTimeData,
SphericalHarmonicFrequencyData,
)

from .coordinates import (
Expand All @@ -17,5 +19,7 @@
'SphericalHarmonicDefinition',
'SphericalHarmonics',
'SphericalHarmonicSignal',
'SphericalHarmonicTimeData',
'SphericalHarmonicFrequencyData',
'SamplingSphere',
]
Loading