You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dev 580 hdforce v1.1.3 test metrics and forcetime (#10)
* Updates to BuildDB, SyncDB, from and to date format, and data frame output headers
* updated GetForceTime and docs pages
* update to pytest scripts and github actions workflow
* update test files
* Changes to utils.py to refine header name cleaning to match MetricDictionary and universal metric naming convention.
* Remove local data management and maintain minor patch improvements
* updated init file to correct debugging error
* Update to AuthManager and utils for orgName inclusion
* fix to lock file conflict
* correction to lock file
* Update README.md
Co-authored-by: Andrew Wales <158098925+awales-hd@users.noreply.github.com>
* updated recommendations and fixes
---------
Co-authored-by: Andrew Wales <158098925+awales-hd@users.noreply.github.com>
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | peakBrakingForce | Peak Braking Force | N | The peak instantaneous vertical ground reaction force applied to the system center of mass during the braking phase. |
40
-
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | peakRelativeBrakingForce | Peak Relative Braking Force | % | The peak instantaneous vertical ground reaction force applied to the system center of mass during the braking phase as a percentage of system weight. |
41
-
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | avgPropulsiveForce | Avg. Propulsive Force | N | The average vertical ground reaction force applied to the system center of mass during the propulsion phase. |
42
-
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | avgRelativePropulsiveForce| Avg. Relative Propulsive Force | % | The average vertical ground reaction force applied to the system center of mass during the propulsion phase as a percentage of system weight. |
43
-
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | peakPropulsiveForce | Peak Propulsive Force | N | The peak instantaneous vertical ground reaction force applied to the system center of mass during the propulsion phase. |
38
+
| canonicalTestTypeId | testTypeName | id | label | label_unit| units | description |
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | peakBrakingForce | Peak Braking Force |Peak Braking Force(N) |N | The peak instantaneous vertical ground reaction force applied to the system center of mass during the braking phase. |
41
+
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | peakRelativeBrakingForce | Peak Relative Braking Force |Peak Relative Braking Force(%) |% | The peak instantaneous vertical ground reaction force applied to the system center of mass during the braking phase as a percentage of system weight. |
42
+
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | avgPropulsiveForce | Avg. Propulsive Force |Avg. Propulsive Force(N) |N | The average vertical ground reaction force applied to the system center of mass during the propulsion phase. |
43
+
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | avgRelativePropulsiveForce| Avg. Relative Propulsive Force |Avg. Relative Propulsive Force(%) |% | The average vertical ground reaction force applied to the system center of mass during the propulsion phase as a percentage of system weight. |
44
+
| 7nNduHeM5zETPjHxvm7s | Countermovement Jump | peakPropulsiveForce | Peak Propulsive Force |Peak Propulsive Force(N) |N | The peak instantaneous vertical ground reaction force applied to the system center of mass during the propulsion phase. |
Copy file name to clipboardExpand all lines: docs/Functions/GetTests.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@ __`GetTests(from_: int = None, to_: int = None, sync: bool = False, athleteId: s
4
4
Get all test trials from an account. Allows filtering of results based on time frames, synchronization needs, and the active status of tests.
5
5
6
6
### Parameters
7
-
__`from_`__: _(int)_ Unix timestamp specifying the start time from which tests should be fetched. Default is None, which fetches tests from the beginning.
7
+
__`from_`__: _(int | str)_ Unix timestamp or string date (e.g., "YYYY-MM-DD") specifying the start time from which tests should be fetched. Default is None, which fetches tests from the beginning.
8
8
9
-
__`to_`__: _(int)_ Unix timestamp specifying the end time until which tests should be fetched. Default is None, which fetches tests up to the current time.
9
+
__`to_`__: _(int | str)_ Unix timestamp or string date (e.g., "YYYY-MM-DD") specifying the end time until which tests should be fetched. Default is None, which fetches tests up to the current time.
10
10
11
11
__`sync`__: _(bool)_ If True, the function fetches updated and newly created tests to synchronize with the database. Default is False.
0 commit comments