Skip to content
Draft
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
6 changes: 6 additions & 0 deletions docs/reference/databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ filters: ["!ISDAccessor", "!_"]
## Soundscape Attributes Translation Project (SATP)

::: soundscapy.databases.satp

## SATP Translation Testing

::: soundscapy.databases.satp_testing
options:
filters: ["!_"]
7 changes: 4 additions & 3 deletions src/soundscapy/databases/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
Soundscapy Databases Module.

This module handles connections to and operations on soundscape databases,
primarily focused on the International Soundscape Database (ISD).
primarily focused on the International Soundscape Database (ISD) and the
Soundscape Attributes Translation Project (SATP).
"""

from soundscapy.databases import isd, satp
from soundscapy.databases import isd, satp, satp_testing

__all__ = ["isd", "satp"]
__all__ = ["isd", "satp", "satp_testing"]
Loading