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.1.tar.gz
(21.6 kB
view details)
Built Distribution
pygt3x-0.6.1-py3-none-any.whl
(22.5 kB
view details)
File details
Details for the file pygt3x-0.6.1.tar.gz
.
File metadata
- Download URL: pygt3x-0.6.1.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.8.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aca40d3cf76c7bc4788c59d8ae01856672267cff0806a040daadafc7e8fb33ed |
|
MD5 | 6561ab41431ba452723bbb6b326b6359 |
|
BLAKE2b-256 | fc94e92cab2d9189cf2b006307cfcda4abdeeed200a8f73e884e394dfea935bf |
File details
Details for the file pygt3x-0.6.1-py3-none-any.whl
.
File metadata
- Download URL: pygt3x-0.6.1-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.8.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a6fe22883fdb4e84fdc21b9c034b591f7d0d24f7185690ce1d331218571d2f6 |
|
MD5 | 3e822f9cd425d8e79f17d189e9f9fa45 |
|
BLAKE2b-256 | 87bf6ed704997337ed577d499d262bf3ca599eb9f89110ef3c058684edb7e612 |