The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

MTED-HARr

A package to read and write GEMPACK-style header-array files into R.

This package does not use any GEMPACK routines; instead, it works with the binary HAR files directly using basic R functions

To install you can try the following:

install.packages('devtools')
devtools::install_git('https://github.com/mivanic/HARr.git')
require(HARr)

To read a HAR file you can try the following:

data = read_har('basedata.har')

To write a HAR file you can try the following:

data = list(
  REAL = array(
    c(1, 2, 3, 4, 5, 6),
    dim = c(2, 3),
    dimnames = list(
      dim1name = c('a', 'b'),
      dim2name = c('f', 'g', 'h')
    )
  ),
  INTG = array(c(1L, 2L, 3L, 4L, 5L, 6L),
               dim = c(2, 3)),
  STRG =
    c("STRING1", "STRING2", "STRING3")
  
)
write_har(data, 'test.har')

To read an SL4 solution file you can try the following:

data = read_SL4('solutoin.sl4')

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.