Read EGI simple binary as raw object.
Note
This function attempts to create a synthetic trigger channel. See the Notes section below.
Path to the raw file. Files with an extension .mff are automatically considered to be EGI’s native MFF format files.
list or tupleNames of channels or list of indices that should be designated EOG channels. Default is None.
list or tupleNames of channels or list of indices that should be designated MISC channels. Default is None.
None | listThe event channels to be ignored when creating the synthetic
trigger. Defaults to None.
Note. Overrides exclude parameter.
None | listThe event channels to be ignored when creating the synthetic
trigger. Defaults to None. If None, channels that have more than
one event and the sync and TREV channels will be
ignored.
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).
New in version 0.11.
strChannel naming convention for the data channels. Defaults to ‘E%d’ (resulting in channel names ‘E1’, ‘E2’, ‘E3’…). The effective default prior to 0.14.0 was ‘EEG %03d’.
New in version 0.14.0.
str | int | NoneControl verbosity of the logging output. If None, use the default
verbosity level. See the logging documentation and
mne.verbose() for details. Should only be passed as a keyword
argument.
A Raw object containing EGI data.
See also
mne.io.RawDocumentation of attribute and methods.
Notes
The trigger channel names are based on the arbitrary user dependent event
codes used. However this function will attempt to generate a synthetic
trigger channel named STI 014 in accordance with the general
Neuromag / MNE naming pattern.
The event_id assignment equals np.arange(n_events) + 1. The resulting
event_id mapping is stored as attribute to the resulting raw object but
will be ignored when saving to a fiff. Note. The trigger channel is
artificially constructed based on timestamps received by the Netstation.
As a consequence, triggers have only short durations.
This step will fail if events are not mutually exclusive.
mne.io.read_raw_egi#