Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standard Montage layout: easycap-M43 #11739

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions mne/channels/_standard_montage_utils.py
Expand Up @@ -124,6 +124,7 @@ def _mgh_or_standard(basename, head_size, coord_frame="unknown"):
"EGI_256": _egi_256,
"easycap-M1": partial(_easycap, basename="easycap-M1.txt"),
"easycap-M10": partial(_easycap, basename="easycap-M10.txt"),
"easycap-M43": partial(_easycap, basename="easycap-M43.txt"),
"GSN-HydroCel-128": partial(_hydrocel, basename="GSN-HydroCel-128.sfp"),
"GSN-HydroCel-129": partial(_hydrocel, basename="GSN-HydroCel-129.sfp"),
"GSN-HydroCel-256": partial(_hydrocel, basename="GSN-HydroCel-256.sfp"),
Expand Down
65 changes: 65 additions & 0 deletions mne/channels/data/montages/easycap-M43.txt
@@ -0,0 +1,65 @@
Site Theta Phi
1 23 90
2 23 30
3 23 -30
4 23 -90
5 -23 30
6 -23 -30
7 46 74
8 46 41
9 46 8
10 46 -25
11 46 -57
12 46 -90
13 -46 57
14 -46 25
15 -46 -8
16 -46 -41
17 -46 -74
18 69 76
19 69 49
20 69 21
21 69 -7
22 69 -35
23 69 -62
24 69 -90
25 -69 62
26 -69 35
27 -69 7
28 -69 -21
29 -69 -49
30 -69 -76
31 92 90
32 92 62
33 92 34
34 92 6
35 92 -21
36 92 -49
37 92 -76
38 -92 76
39 -92 49
40 -92 21
41 -92 -6
42 -92 -34
43 -92 -62
44 115 35
45 115 10
46 115 -15
47 115 -40
48 115 -65
49 115 -90
50 -115 65
51 -115 40
52 -115 15
53 -115 -10
54 -115 -35
55 138 23
56 138 -15
57 138 -40
58 138 -65
59 138 -90
60 -138 65
61 -138 40
62 -138 15
63 -138 -23
Ref 0 0
6 changes: 5 additions & 1 deletion mne/channels/montage.py
Expand Up @@ -137,7 +137,11 @@ class _BuiltinStandardMontage:
),
_BuiltinStandardMontage(
name="easycap-M10",
description="EasyCap with numbered electrodes (61 locations)",
description="EasyCap with numbered electrodes (61 locations)",
),
_BuiltinStandardMontage(
name="easycap-M43",
description="EasyCap with numbered electrodes (64 locations)",
),
_BuiltinStandardMontage(
name="EGI_256",
Expand Down