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.5.2.tar.gz
(21.4 kB
view details)
Built Distribution
pygt3x-0.5.2-py3-none-any.whl
(22.3 kB
view details)
File details
Details for the file pygt3x-0.5.2.tar.gz
.
File metadata
- Download URL: pygt3x-0.5.2.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.12 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b848f0ed392c61bc6068aad9ad828e2847bb1ddc6c66f0e3dcc44f4d4dc3013 |
|
MD5 | 404747c376d85f577a6377bafa2ac689 |
|
BLAKE2b-256 | ede8ac2c94f0809cff39fe39e5525bf649400fad173d96b4c8964123a5ececd5 |
File details
Details for the file pygt3x-0.5.2-py3-none-any.whl
.
File metadata
- Download URL: pygt3x-0.5.2-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.12 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c617f937c76a625f18f820891669351c6710ff5f7b5e29cd5d6faffe9310c854 |
|
MD5 | 88e9acff0410fd0e2981c6bd45e97632 |
|
BLAKE2b-256 | 07340428b5bb0e0063246a91690a39fa54effa2db4c55b94ddb4ea843178f3b8 |