-
Notifications
You must be signed in to change notification settings - Fork 684
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
probe map _ older versions of open_ephys ( 0.5 ) #628
Comments
The channel = 12 # number between 0 and 383
bank = 1 # 0, 1, or 2
xpositions = [27, 59, 11, 43]
xpos = xpositions[channel % 4]
ypos = ((channel + 384 * bank) - channel % 2) * 10 This assume you're using a 10 mm NHP probe with staggered site layout. |
That’s a relief ! |
My I still ask a question ? How can I find the bank information for channel 191, & why is always this specific channels’ info missing ? |
Channel 191 is always the internal reference. It doesn't record any signals, so the bank does not matter. |
I have some older neuropixels data that I would like to revive. I guess they were recorded by open-ephys GUI version 0.5… .
I was naiive at that time & did not export selected electrode contact locations for each channel ( μm from the tip ) as probeInterface JSON files via the npx plugin in GUI.
In the newer versions of the GUI these electrode contact location information are internally saved in the recording files ( I guess in setings.xml or structure.oebin ).
However, I’m not sure about the older versions of the GUI.
I attached two related files. I converted both files to json, as github did not support .xml & .oebin.
settings.xml.json
structure.oebin.json
Would you please tell me if there is any probe-map or similar electrode location information for each channel, present in these files ?
The text was updated successfully, but these errors were encountered: