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.0.tar.gz
(21.7 kB
view details)
Built Distribution
pygt3x-0.7.0-py3-none-any.whl
(22.5 kB
view details)
File details
Details for the file pygt3x-0.7.0.tar.gz
.
File metadata
- Download URL: pygt3x-0.7.0.tar.gz
- Upload date:
- Size: 21.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.12 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9ca4fe228322af2688e4ecdb0b1a2fba82d5fed7d6536715f325a89c601233c |
|
MD5 | 23c62160595b396670f7aac26427fe96 |
|
BLAKE2b-256 | 7b48ddb32b80638802b2de71ad96013e5ca926e84f30ff7e465bcc2cb7868dd1 |
File details
Details for the file pygt3x-0.7.0-py3-none-any.whl
.
File metadata
- Download URL: pygt3x-0.7.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-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1cf728587209245043755c020b68a268b3730a27bbc3a023b35e67a6d51f31b |
|
MD5 | e0fb6d9103159cf1205bffd91d976e62 |
|
BLAKE2b-256 | c45dd5ea2e8cdd48125fb389eaa5c5dc205688aa4b44c6dd6c732a2a7281ae31 |