- pdf_fname : str
Path to the processed data file (PDF).
- config_fname : str
Path to system config file.
- head_shape_fname : str | None
Path to the head shape file.
- rotation_x : float
Degrees to tilt x-axis for sensor frame misalignment. Ignored
if convert is True.
- translation : array-like, shape (3,)
The translation to place the origin of coordinate system
to the center of the head. Ignored if convert is True.
- convert : bool
Convert to Neuromag coordinates or not.
- rename_channels : bool
Whether to keep original 4D channel labels or not. Defaults to True.
- sort_by_ch_name : bool
Reorder channels according to channel label. 4D channels don’t have
monotonically increasing numbers in their labels. Defaults to True.
- ecg_ch : str | None
The 4D name of the ECG channel. If None, the channel will be treated
as regular EEG channel.
- eog_ch : tuple of str | None
The 4D names of the EOG channels. If None, the channels will be treated
as regular EEG channels.
- preload : bool or str (default False)
Preload data into memory for data manipulation and faster indexing.
If True, the data will be preloaded into memory (fast, requires
large amount of memory). If preload is a string, preload is the
file name of a memory-mapped file which is used to store the data
on the hard drive (slower, requires less memory).
..versionadded:: 0.11
- verbose : bool, str, int, or None
If not None, override default verbose level (see mne.verbose()
and Logging documentation for more).