Description Usage Arguments Value Author(s) References Examples
Diagnose the GDS file and data information.
1 | diagnosis.gds(gds, log.only=FALSE)
|
gds |
an object of class |
log.only |
if |
A list with stream and chunk information.
If gds
is a "gds.class"
object (i.e., a GDS file), the
function returns a list with components, like:
stream |
summary of byte stream |
log |
event log records |
If gds
is a "gdsn.class"
object, the function returns a list
with components, like:
head |
total_size, chunk_offset, chunk_size |
data |
total_size, chunk_offset, chunk_size |
... |
Xiuwen Zheng
http://github.com/zhengxwen/gdsfmt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | # cteate a GDS file
f <- createfn.gds("test.gds")
set.seed(1000)
rawval <- as.raw(rep(0:99, 50))
add.gdsn(f, "label", NULL)
add.gdsn(f, "raw", rawval)
closefn.gds(f)
##
f <- openfn.gds("test.gds")
diagnosis.gds(f)
diagnosis.gds(f$root)
diagnosis.gds(index.gdsn(f, "label"))
diagnosis.gds(index.gdsn(f, "raw"))
closefn.gds(f)
## remove fragments
cleanup.gds("test.gds")
##
f <- openfn.gds("test.gds")
diagnosis.gds(f$root)
diagnosis.gds(index.gdsn(f, "label"))
(adr <- diagnosis.gds(index.gdsn(f, "raw")))
closefn.gds(f)
## read binary data directly
f <- file("test.gds", "rb")
dat <- NULL
for (i in seq_len(length(adr$data$chunk_offset)))
{
seek(f, adr$data$chunk_offset[i])
dat <- c(dat, readBin(f, "raw", adr$data$chunk_size[i]))
}
identical(dat, rawval) # should be TRUE
close(f)
# delete the temporary file
unlink("test.gds", force=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.