mne.io.
read_raw_egi
(input_fname, montage=None, eog=None, misc=None, include=None, exclude=None, preload=False, channel_naming='E%d', verbose=None)[source]¶Read EGI simple binary as raw object.
Parameters: | input_fname : str
montage : str | None | instance of montage
eog : list or tuple
misc : list or tuple
include : None | list
exclude : None | list
preload : bool or str (default False)
channel_naming : str
verbose : bool, str, int, or None
|
---|---|
Returns: | raw : Instance of RawEGI
|
See also
mne.io.Raw
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.