powered by
Decode BCD to integer
bcdToInteger(x, endian = c("little", "big"))
An integer, or list of integers.
a raw value, or vector of raw values, coded in binary-coded decimal.
character string indicating the endian-ness ("big" or "little"). The PC/intel convention is to use "little", and so most data files are in that format.
Dan Kelley
library(oce) twenty.five <- bcdToInteger(as.raw(0x25)) thirty.seven <- as.integer(as.raw(0x25))
Run the code above in your browser using DataLab