-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated docstrings and documentation
- Loading branch information
Sebastian Luque
committed
Oct 20, 2023
1 parent
e7805d4
commit e949de4
Showing
15 changed files
with
457 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,12 +45,36 @@ | |
calibrate | ||
dump_config_template | ||
Detect and quantify periods of major activities in a TDR record, | ||
calibrating depth readings to generate summaries of diving behaviour. These | ||
procedures include wet/dry phase detection, zero-offset correction (ZOC) of | ||
depth, detection of dives, as well as proper labelling of the latter, among | ||
others utilities for the analysis of TDR records. | ||
All core procedures are encapsulated in :class:`TDR`, and are controlled by | ||
a set of user-defined variables in a configuration file, and systematically | ||
executed systematically by function :func:`calibrate`. This function can be | ||
used as a template for custom processing using different | ||
sequences. User-defined variables can also be directly specified as a | ||
dictionary, which is a class attribute. The standard approach follows the | ||
logical processing sequence described below: | ||
1. Zero-offset correction | ||
2. Detection of wet phases | ||
3. Detection of dives | ||
4. Detection of dive phases | ||
5. Speed calibration (if required) | ||
6. Calculation of statistics | ||
Class :class:`TDR` methods implement these steps. | ||
""" | ||
|
||
from skdiveMove.tdr import TDR, calibrate | ||
from skdiveMove.calibconfig import dump_config_template | ||
|
||
__author__ = "Sebastian Luque <[email protected]>" | ||
__license__ = "AGPLv3" | ||
__version__ = "0.3.2" | ||
__version__ = "0.3.2.post1" | ||
__all__ = ["TDR", "calibrate", "dump_config_template"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.