writeWAL {wal} | R Documentation |
Write WAL instance to bitmap file in WAL format.
Description
Write WAL instance to bitmap file in WAL format.
Usage
writeWAL(filepath, wal)
Arguments
filepath |
character string, path to the file including extension |
wal |
a wal instance. Note that 1 will be substracted from the data when it is written, as indices are stored 0-based in the file. |
Examples
## Not run:
walf = '~/data/q2_pak0_extracted/textures/e1u2/basic1_7.wal';
wal = read.wal(walf);
writeWAL(tempfile(fileext = ".wal"), wal);
## End(Not run)
[Package wal version 0.1.1 Index]