ciftiTools (version 0.1.6.0)

write_surf_gifti: Write CIFTI surface data to GIFTI

Description

Write the data for the left or right surface to a surface GIFTI file.

Usage

write_surf_gifti(
  x,
  gifti_fname,
  hemisphere = c("left", "right"),
  encoding = NULL,
  endian = c("LittleEndian", "BigEndian")
)

Arguments

x

A "surf" object, an object from gifti::readgii, or a list with elements "pointset" and "triangle".

gifti_fname

Where to write the GIFTI file.

hemisphere

"left" (default) or "right". Ignored if data is already a "gifti" object, or if it is a "surf" object with the hemisphere metadata already specified.

encoding

A length-2 vector with elements chosen among "ASCII", "Base64Binary", and "GZipBase64Binary". If NULL (default), will use the metadata if data is a "gifti" object, or "GZipBase64Binary" for the "pointset" and "ASCII" for the "traingles" if data is not already a GIFTI.

endian

"LittleEndian" (default) or "BigEndian".

Value

Whether the GIFTI was successfully written