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
from pygt3x.calibration import CalibratedReader
# Read raw data and calibrate
# Dump to pandas data frame
with FileReader("FILENAME") as reader:
calibrated_reader = CalibratedReader(reader)
df = calibrated_reader.to_pandas()
print(df.head(5))
If your AGDC file contains temperature data, you can read it using:
from pygt3x.reader import FileReader
from pygt3x.calibration import CalibratedReader
with FileReader("FILENAME") as reader:
calibrated_reader = CalibratedReader(reader)
df = calibrated_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.3.8.tar.gz
(20.8 kB
view details)
Built Distribution
pygt3x-0.3.8-py3-none-any.whl
(21.8 kB
view details)
File details
Details for the file pygt3x-0.3.8.tar.gz
.
File metadata
- Download URL: pygt3x-0.3.8.tar.gz
- Upload date:
- Size: 20.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.0 CPython/3.10.6 Linux/5.15.0-1024-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | acde63d74a2f8e5e6374af6f920e08ba095e7da14d32e3eceb600095a4418d32 |
|
MD5 | fea0c7214586663bfdd3bb48c5977fe4 |
|
BLAKE2b-256 | f72fe0255dc7f88d8e07c0b68f33bce0a6f7e680b0ef86b22aaf3f392e91cdf6 |
File details
Details for the file pygt3x-0.3.8-py3-none-any.whl
.
File metadata
- Download URL: pygt3x-0.3.8-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-1024-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9dc55b53387075a0434f116a5767d56bf0f326f93635e519c85fa127055a1aad |
|
MD5 | c6266fd1622f63f40045bbc4c7808f5e |
|
BLAKE2b-256 | e63eaa8259f3006166a60708de7d2059db4423e8a1f819a10b6f157f3940d1d3 |