Parse GT3X info.txt file

parse_gt3x_info(path, tz = "GMT")

Arguments

path

Path to a .gt3x file or an unzipped gt3x directory

tz

timezone, passed to ticks2datetime

See also

Examples

gt3xfile <- system.file( "extdata", "TAS1H30182785_2019-09-17.gt3x", package = "read.gt3x") parse_gt3x_info(gt3xfile)
#> GT3X information #> $ Serial Number :"TAS1H30182785" #> $ Device Type :"Link" #> $ Firmware :"1.7.2" #> $ Battery Voltage :"4.18" #> $ Sample Rate :100 #> $ Start Date : POSIXct, format: "2019-09-17 18:40:00" #> $ Stop Date : POSIXct, format: "2019-09-18 19:00:00" #> $ Last Sample Time : POSIXct, format: "2019-09-17 19:20:05" #> $ TimeZone :"-04:00:00" #> $ Download Date : POSIXct, format: "2019-09-17 19:20:05" #> $ Board Revision :"8" #> $ Unexpected Resets :"0" #> $ Acceleration Scale:256 #> $ Acceleration Min :"-8.0" #> $ Acceleration Max :"8.0" #> $ Subject Name :"suffix_85" #> $ Serial Prefix :"TAS"
if (FALSE) { gt3xfile <- gt3x_datapath(1) parse_gt3x_info(gt3xfile) }