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.1.tar.gz
(21.0 kB
view details)
Built Distribution
pygt3x-0.5.1-py3-none-any.whl
(21.8 kB
view details)
File details
Details for the file pygt3x-0.5.1.tar.gz
.
File metadata
- Download URL: pygt3x-0.5.1.tar.gz
- Upload date:
- Size: 21.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.6 Linux/5.15.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a27eb69b4592decfe3418bdea5e63c45a09374bba09a31c4674fbc5ce00e5b53 |
|
MD5 | 4df775c1d20d030e66667adcd691e448 |
|
BLAKE2b-256 | 35804b1531c994f77a1ac19ae88a11c3997da5511234907890d09e7b6143ac33 |
File details
Details for the file pygt3x-0.5.1-py3-none-any.whl
.
File metadata
- Download URL: pygt3x-0.5.1-py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.6 Linux/5.15.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 667b57de204f5b5507155f9428a9e037f071d78bd60e0a1b02bcd81c845b4890 |
|
MD5 | f5a019cde69dac247e1a80889f66ac5e |
|
BLAKE2b-256 | 22e8b23ff2c27a1af65075251c4c4af1e8e3004a17986438f40f4f647624ad94 |