read.cwa package

The goal of read.cwa is to provide functionality to convert ‘Axivity’ ‘CWA’ files (https://axivity.com/). The data was extracted from https://github.com/digitalinteraction/openmovement/, specifically code from https://github.com/digitalinteraction/openmovement/tree/master/Software/AX3/cwa-convert/c, which has the following copyright: > Copyright (c) 2009-2018, Newcastle University, UK. All rights reserved.

Installation

You can install the released version of read.cwa from CRAN with:

install.packages("read.cwa")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("muschellij2/read.cwa")

Example

This is a basic example which shows you how to read in a CWA file:

library(read.cwa)
file = system.file("extdata", "ax3_testfile.cwa.gz", package = "read.cwa")
out = read_cwa(file)
#> Converting the CWA to CSV
#> Reading 147 sectors (offset 0, file 147)...
#> [MD].
#> Wrote 876815 bytes of data (17400 samples).
#>   |                                                                              |===                                                                   |   4%  |                                                                              |======                                                                |   8%  |                                                                              |========                                                              |  12%  |                                                                              |===========                                                           |  16%  |                                                                              |==============                                                        |  20%  |                                                                              |=================                                                     |  24%  |                                                                              |====================                                                  |  28%  |                                                                              |=======================                                               |  32%  |                                                                              |=========================                                             |  36%  |                                                                              |============================                                          |  40%  |                                                                              |===============================                                       |  45%  |                                                                              |==================================                                    |  49%  |                                                                              |=====================================                                 |  53%  |                                                                              |========================================                              |  57%  |                                                                              |==========================================                            |  61%  |                                                                              |=============================================                         |  65%  |                                                                              |================================================                      |  69%  |                                                                              |===================================================                   |  73%  |                                                                              |======================================================                |  77%  |                                                                              |=========================================================             |  81%  |                                                                              |===========================================================           |  85%  |                                                                              |==============================================================        |  89%  |                                                                              |=================================================================     |  93%  |                                                                              |====================================================================  |  97%
#> Reading in the CSV: /var/folders/1s/wrtqcpxn685_zk570bnx9_rr0000gr/T//RtmpmZ8vUR/file13e5b72c7ed88.csv
head(out)
#> $data
#> # A tibble: 17,400 x 4
#>    time                    X      Y      Z
#>    <dttm>              <dbl>  <dbl>  <dbl>
#>  1 2019-02-26 10:55:06 0.328  0.984  0.203
#>  2 2019-02-26 10:55:06 0.828 -0.359 -0.375
#>  3 2019-02-26 10:55:06 0.875 -0.391 -0.391
#>  4 2019-02-26 10:55:06 0.891 -0.391 -0.391
#>  5 2019-02-26 10:55:06 0.891 -0.375 -0.391
#>  6 2019-02-26 10:55:06 0.875 -0.359 -0.375
#>  7 2019-02-26 10:55:06 0.875 -0.359 -0.391
#>  8 2019-02-26 10:55:06 0.875 -0.359 -0.406
#>  9 2019-02-26 10:55:06 0.875 -0.359 -0.406
#> 10 2019-02-26 10:55:06 0.891 -0.344 -0.406
#> # … with 17,390 more rows
#> 
#> $header
#> $header$uniqueSerialCode
#> [1] 39434
#> 
#> $header$frequency
#> [1] 100
#> 
#> $header$start
#> [1] "2019-02-26 10:55:06 UTC"
#> 
#> $header$device
#> [1] "Axivity"
#> 
#> $header$firmwareVersion
#> [1] 44
#> 
#> $header$blocks
#> [1] 145
#> 
#> $header$accrange
#> [1] 8
#> 
#> $header$hardwareType
#> [1] "AX3"

out = read_cwa(file, xyz_only = TRUE)
#> Converting the CWA to CSV
#> Reading 147 sectors (offset 0, file 147)...
#> [MD].
#> Wrote 876815 bytes of data (17400 samples).
#>   |                                                                              |===                                                                   |   4%  |                                                                              |======                                                                |   8%  |                                                                              |========                                                              |  12%  |                                                                              |===========                                                           |  16%  |                                                                              |==============                                                        |  20%  |                                                                              |=================                                                     |  24%  |                                                                              |====================                                                  |  28%  |                                                                              |=======================                                               |  32%  |                                                                              |=========================                                             |  36%  |                                                                              |============================                                          |  40%  |                                                                              |===============================                                       |  45%  |                                                                              |==================================                                    |  49%  |                                                                              |=====================================                                 |  53%  |                                                                              |========================================                              |  57%  |                                                                              |==========================================                            |  61%  |                                                                              |=============================================                         |  65%  |                                                                              |================================================                      |  69%  |                                                                              |===================================================                   |  73%  |                                                                              |======================================================                |  77%  |                                                                              |=========================================================             |  81%  |                                                                              |===========================================================           |  85%  |                                                                              |==============================================================        |  89%  |                                                                              |=================================================================     |  93%  |                                                                              |====================================================================  |  97%
#> Reading in the CSV: /var/folders/1s/wrtqcpxn685_zk570bnx9_rr0000gr/T//RtmpmZ8vUR/file13e5b76c943c4.csv
head(out)
#> $data
#> # A tibble: 17,400 x 4
#>    time                    X      Y      Z
#>    <dttm>              <dbl>  <dbl>  <dbl>
#>  1 2019-02-26 10:55:06 0.328  0.984  0.203
#>  2 2019-02-26 10:55:06 0.828 -0.359 -0.375
#>  3 2019-02-26 10:55:06 0.875 -0.391 -0.391
#>  4 2019-02-26 10:55:06 0.891 -0.391 -0.391
#>  5 2019-02-26 10:55:06 0.891 -0.375 -0.391
#>  6 2019-02-26 10:55:06 0.875 -0.359 -0.375
#>  7 2019-02-26 10:55:06 0.875 -0.359 -0.391
#>  8 2019-02-26 10:55:06 0.875 -0.359 -0.406
#>  9 2019-02-26 10:55:06 0.875 -0.359 -0.406
#> 10 2019-02-26 10:55:06 0.891 -0.344 -0.406
#> # … with 17,390 more rows
#> 
#> $header
#> $header$uniqueSerialCode
#> [1] 39434
#> 
#> $header$frequency
#> [1] 100
#> 
#> $header$start
#> [1] "2019-02-26 10:55:06 UTC"
#> 
#> $header$device
#> [1] "Axivity"
#> 
#> $header$firmwareVersion
#> [1] 44
#> 
#> $header$blocks
#> [1] 145
#> 
#> $header$accrange
#> [1] 8
#> 
#> $header$hardwareType
#> [1] "AX3"
## basic example code

Copy Link

Version

Down Chevron

Install

install.packages('read.cwa')

Monthly Downloads

10

Version

0.2.1

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

November 4th, 2020

Functions in read.cwa (0.2.1)