Python module for reading GT3X/AGDC file format data
Project description
pygt3x
Python module for reading GT3X/AGDC file format data generated by ActiGraph devices.
Example Usage
To read calibrated accelerometer data, you can use the code snippet below:
from pygt3x.reader import FileReader
# Read raw data and calibrate, then export to pandas data frame
with FileReader("FILENAME") as reader:
was_idle_sleep_mode_used = reader.idle_sleep_mode_activated
df = reader.to_pandas()
print(df.head(5))
If your AGDC file contains temperature data, you can read it using:
from pygt3x.reader import FileReader
with FileReader("FILENAME") as reader:
df = reader.temperature_to_pandas()
print(df.head(5))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pygt3x-0.6.0.tar.gz
(21.6 kB
view details)
Built Distribution
pygt3x-0.6.0-py3-none-any.whl
(22.5 kB
view details)
File details
Details for the file pygt3x-0.6.0.tar.gz
.
File metadata
- Download URL: pygt3x-0.6.0.tar.gz
- Upload date:
- Size: 21.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.12 Linux/6.5.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a625d0ce3b90c60b4650d829bfa9a619b329725ded511bafc1b684d8327b8fd2 |
|
MD5 | 5fa3d7fb3d0c93aa21a7fd9952a00ced |
|
BLAKE2b-256 | 3c05c53b3a499e4eba8ca81ed46be428d6036fbf0c2314d6b3374ea75b9782e5 |
File details
Details for the file pygt3x-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: pygt3x-0.6.0-py3-none-any.whl
- Upload date:
- Size: 22.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.12 Linux/6.5.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4a3030482c8a0efd07342e2c5c3e6dae2c886042862f09ad4fc39e1fc42cce1 |
|
MD5 | 8b0627f8017db869463f5bcb2bce5e77 |
|
BLAKE2b-256 | 61824d681fc3070be27aa67a61b91560dc23eb0ce9ac9d1c66774cac3f8a99a4 |