-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfce224
commit 4c3eda7
Showing
2 changed files
with
22 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"namespace": "org.radarcns.passive.polar", | ||
"type": "record", | ||
"name": "PolarPpg", | ||
"doc": "Data from PPG channels.", | ||
"fields": [ | ||
{ "name": "deviceName", "type": "string", "doc": "Polar device name" }, | ||
{ "name": "time", "type": "long", "doc": "Device timestamp in UTC (ns)." }, | ||
{ "name": "timeReceived", "type": "double", "doc": "Device receiver timestamp in UTC (s)." } , | ||
{ "name": "ppg0", "type": "int", "doc": "PPG0." }, | ||
{ "name": "ppg1", "type": "int", "doc": "PPG1." }, | ||
{ "name": "ppg2", "type": "int", "doc": "PPG2." }, | ||
{ "name": "ambient", "type": "int", "doc": "Ambient channel representing the background noise caused by other light sources, so it can be used to remove the background noise from ppg channels." } | ||
] | ||
} |
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