Some doc update
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Anne de Jong 2023-04-21 13:27:45 +02:00
parent 3844827505
commit 24de84a4f7
2 changed files with 5 additions and 1 deletions

View File

@ -46,7 +46,7 @@ in a sister repository [lasp-doc](https://code.ascee.nl/ascee/lasp-doc).
If you have any question(s), please feel free to contact us: [email](info@ascee.nl). If you have any question(s), please feel free to contact us: [email](info@ascee.nl).
# Installation # Installation - Linux (Debian-based)
## Dependencies ## Dependencies

View File

@ -58,9 +58,13 @@ class AvType(Enum):
@dataclass_json @dataclass_json
@dataclass(eq=False) @dataclass(eq=False)
class Qty: class Qty:
# Name, i.e.: Acoustic Pressure
name: str name: str
# I.e.: Pascal
unit_name: str unit_name: str
# I.e.: Pa
unit_symb: str unit_symb: str
# I.e.: ('dB SPL') <== tuple of possible level units
level_unit: object level_unit: object
# Contains a tuple of possible level names, including its reference value. # Contains a tuple of possible level names, including its reference value.
# For now, it is only able to compute for the first one. I.e.e we are not # For now, it is only able to compute for the first one. I.e.e we are not