Compute and plot standard EEG electrode positions

Highlights

  • Compute and plot standard EEG electrode positions using Python
    • Just pip install eeg_positions

    • Then take a look at the examples

  • Get pre-computed electrode positions from the repository /data directory
  • Look through the well-commented and documented code base to understand what’s going on

Introduction

When recording electroencephalography (EEG) data, electrodes are usually placed according to an international standard. The 10-20, and by extension the 10-10 and 10-05 systems are established sets of rules for this case [1].

Even when the actual electrode locations have not been empirically measured during the recording, an approximation of these positions is important for for plotting topographies or visualizing locations of sensors with the help of analysis software.

While standard locations are available in many places such as from Robert Oostenveld’s blog [2] or directly from electrode cap manufacturers such as Easycap, it is seldom specified and documented how these electrode locations are calculated.

The eeg_positions repository contains code to compute the standard EEG electrode locations on a spherical head model for the 10-20, 10-10, and 10-05 system.

There are also utility functions to project the 3D locations to 2D space and to plot them.

Details

We compute the EEG electrode positions on a spherical head model.

EEG electrodes are typically placed on a human’s scalp, so the coordinate system we use for the EEG electrode positions is also described with reference to humans.

We are working in a 3D coordinate system with a “RAS” orientation. That means that from the perspective of the human that has the electrodes on their scalp, the x-axis is pointing to the right hand side (R), the y-axis is pointing to the front (that is, “anterior”, A), and the z-axis is pointing upwards (that is, “superior”, S).

For more information on this, see the documentation in the BIDS specification.

The points in space used to properly define the coordinate system are anatomical landmarks:

  • The nasion (NAS)

  • The left preauricular point (LPA)

  • The right preauricular point (RPA)

  • The vertex

  • The inion

For more information on this, see the MNE-Python glossary under fiducial points.

In our spherical head model, the anatomical landmarks correspond to the following positions ((x, y, z)) on the unit sphere:

  • NAS = (0, 1, 0)

  • LPA = (-1, 0, 0)

  • RPA = (1, 0, 0)

  • Vertex = (0, 0, 1)

  • Inion = (0, -1, 0)

(Note that eeg_positions also allows for some customization in this regard, as shown in the examples.)

Based on these known points, and the known distribution of EEG electrodes in the 10-20, 10-10, and 10-05 systems, we then use the function find_point_at_fraction(), to calculate the remaining points.

Cite

If you find this repository useful and want to cite it in your work, please go to the Zenodo record and obtain the appropriate citation from the “Cite as” section there.

Acknowledgements

Thanks to:

  • Robert Oostenveld for writing his blog post on EEG electrode positions

  • Ed Williams for the helpful correspondence and discussions about “intermediate points on a great circle” (see also [3])

  • “Nominal Animal” who helped figure out the math for the find_point_at_fraction function [4]

References