| writeWAL | R Documentation |
Write WAL instance to bitmap file in WAL format.
writeWAL(filepath, wal)
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. |
## Not run: walf = '~/data/q2_pak0_extracted/textures/e1u2/basic1_7.wal'; wal = read.wal(walf); writeWAL(tempfile(fileext = ".wal"), wal); ## End(Not run)