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.0.tar.gz
(21.0 kB
view details)
Built Distribution
pygt3x-0.5.0-py3-none-any.whl
(21.8 kB
view details)
File details
Details for the file pygt3x-0.5.0.tar.gz
.
File metadata
- Download URL: pygt3x-0.5.0.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-1033-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f88e541098f9edb6424abcbec60615285a0dd795d6f27af14a550cdefd3316f |
|
MD5 | 477631bea23f4efa4ccd5dd66715d523 |
|
BLAKE2b-256 | 5bee55762be0679799a41aa2b434b049b8e2076f889455bd89b7e2500c831d58 |
File details
Details for the file pygt3x-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: pygt3x-0.5.0-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-1033-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9efded3aced5b59930815c656ad0df81c6548031d0e52a40ebfb83c859f65420 |
|
MD5 | f3223b364472cccf76d0d81b917d569b |
|
BLAKE2b-256 | 3cbbb16bc84fd5f0e8b2aea717e0fda0494e6d7c595770aab15e7156234e819a |