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.7.1.tar.gz
(112.9 kB
view details)
Built Distribution
pygt3x-0.7.1-py3-none-any.whl
(22.4 kB
view details)
File details
Details for the file pygt3x-0.7.1.tar.gz
.
File metadata
- Download URL: pygt3x-0.7.1.tar.gz
- Upload date:
- Size: 112.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0ffa67b510dbc72a42645f37fa443db8458de8d1f6c8e2b4894017870f31e7dd
|
|
MD5 |
eb0701964d41d784c90ef59130c83714
|
|
BLAKE2b-256 |
f93c8963dd7b5a6e37c692545757cce0bded0a6314b0fe259ebab49687d05783
|
File details
Details for the file pygt3x-0.7.1-py3-none-any.whl
.
File metadata
- Download URL: pygt3x-0.7.1-py3-none-any.whl
- Upload date:
- Size: 22.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3dcfef5542a125373b78def1b4ee754ea747f0c812cf109120ad3e47d31ff6ad
|
|
MD5 |
f80fff3f61ae2425acb9c525bf6741df
|
|
BLAKE2b-256 |
dbe42204dc77a59b228e34b86a4f1ced400124921c7da330d495d47553dfa46b
|