diff --git a/src/probeinterface/__init__.py b/src/probeinterface/__init__.py
index 3317c798..f1bf432f 100644
--- a/src/probeinterface/__init__.py
+++ b/src/probeinterface/__init__.py
@@ -28,6 +28,7 @@
parse_spikeglx_snsGeomMap,
get_saved_channel_indices_from_spikeglx_meta,
read_openephys,
+ read_openephys_binary,
get_saved_channel_indices_from_openephys_settings,
)
from .utils import combine_probes
diff --git a/src/probeinterface/neuropixels_tools.py b/src/probeinterface/neuropixels_tools.py
index e575ce54..f19ec009 100644
--- a/src/probeinterface/neuropixels_tools.py
+++ b/src/probeinterface/neuropixels_tools.py
@@ -1003,59 +1003,261 @@ def get_saved_channel_indices_from_spikeglx_meta(meta_file: str | Path) -> np.ar
##
-def read_openephys(
+def _parse_probe_info_from_openephys_settings(
settings_file: str | Path,
- stream_name: Optional[str] = None,
- probe_name: Optional[str] = None,
- serial_number: Optional[str] = None,
+ stream_name: str,
fix_x_position_for_oe_5: bool = True,
- raise_error: bool = True,
-) -> Probe:
+) -> dict:
"""
- Read probe positions from Open Ephys folder when using the Neuropix-PXI plugin.
- The reader assumes that the NP_PROBE fields are available in the settings file.
- Open Ephys versions 0.5.x and 0.6.x are supported:
- * For version 0.6.x, the probe names are inferred from the STREAM field. Probe
- information is then populated sequentially with the NP_PROBE fields.
- * For version 0.5.x, STREAMs are not available. In this case, if multiple probes
- are available, they are named sequentially based on the nodeId. E.g. "100.0",
- "100.1". These substrings are used for selection.
+ Parse an Open Ephys settings.xml and extract info for one probe matching stream_name.
+
+ Navigates the XML to find the Neuropixels processor, matches the stream name to a
+ probe, and extracts the probe part number, electrode selection, and annotation
+ metadata. No raw XML elements are returned.
Parameters
----------
- settings_file : Path, str, or None
- If more than one settings.xml file is in the folder structure, this argument
- is required to indicate which settings file to use
- stream_name : str or None
- If more than one probe is used, the 'stream_name' indicates which probe to load base on the
- stream. For example, if there are 3 probes ('ProbeA', 'ProbeB', ProbeC) and the stream_name is
- contains the substring 'ProbeC' (e.g. 'my-stream-ProbeC'), then the probe associated with
- ProbeC is returned. If this argument is used, the 'probe_name' and 'serial_number' must be None.
- probe_name : str or None
- If more than one probe is used, the 'probe_name' indicates which probe to load base on the
- probe name (e.g. "ProbeB"). If this argument is used, the 'stream_name' and 'serial_number'
- must be None.
- serial_number : str or None
- If more than one probe is used, the 'serial_number' indicates which probe to load base on the
- serial number. If this argument is used, the 'stream_name' and 'probe_name'
- must be None.
- fix_x_position_for_oe_5: bool
- The neuropixels PXI plugin in the open-ephys < 0.6.0 contains a bug in the y position. This option allow to fix it.
- raise_error: bool
- If True, any error would raise an exception. If False, None is returned. Default True
-
- Note
- ----
- The electrode positions are only available when recording using the Neuropix-PXI plugin version >= 0.3.3
+ settings_file : Path or str
+ Path to the Open Ephys settings.xml file.
+ stream_name : str
+ The stream name used to select which probe to extract. The probe is
+ selected by substring match against probe names derived from STREAM
+ elements, with a fallback to serial number matching.
+ fix_x_position_for_oe_5 : bool
+ Fix a y-position bug in the Neuropix-PXI plugin for Open Ephys < 0.6.0.
+ Default True.
Returns
-------
- probe : Probe object
+ probe_info : dict
+ Dict with keys:
+ - probe_part_number : str
+ - serial_number : str or None
+ - name : str
+ - slot, port, dock : str or None
+ - selected_electrode_indices : list of int, or None (Path A)
+ - contact_ids : list of str, or None (Path B)
+ """
+ ET = import_safely("xml.etree.ElementTree")
+ tree = ET.parse(str(settings_file))
+ root = tree.getroot()
+
+ info_chain = root.find("INFO")
+ oe_version = parse(info_chain.find("VERSION").text)
+
+ # Find the Neuropixels processor
+ neuropix_pxi_processor = None
+ onebox_processor = None
+ onix_processor = None
+ for signal_chain in root.findall("SIGNALCHAIN"):
+ for processor in signal_chain:
+ if "PROCESSOR" == processor.tag:
+ pname = processor.attrib["name"]
+ if "Neuropix-PXI" in pname:
+ neuropix_pxi_processor = processor
+ if "OneBox" in pname:
+ onebox_processor = processor
+ if "ONIX" in pname:
+ onix_processor = processor
+
+ if neuropix_pxi_processor is None and onebox_processor is None and onix_processor is None:
+ raise ValueError("Open Ephys settings.xml has no Neuropix-PXI, OneBox, or ONIX processor.")
+
+ if neuropix_pxi_processor is not None:
+ assert onebox_processor is None, "Only one processor should be present"
+ processor = neuropix_pxi_processor
+ neuropix_pxi_version = parse(neuropix_pxi_processor.attrib["libraryVersion"])
+ if neuropix_pxi_version < parse("0.3.3"):
+ raise ValueError("Electrode locations are available from Neuropix-PXI version 0.3.3")
+ if onebox_processor is not None:
+ assert neuropix_pxi_processor is None, "Only one processor should be present"
+ processor = onebox_processor
+ if onix_processor is not None:
+ processor = onix_processor
+
+ if "NodeId" in processor.attrib:
+ node_id = processor.attrib["NodeId"]
+ elif "nodeId" in processor.attrib:
+ node_id = processor.attrib["nodeId"]
+ else:
+ node_id = None
+
+ # Read STREAM fields if present (>=0.6.x)
+ stream_fields = processor.findall("STREAM")
+ if len(stream_fields) > 0:
+ has_streams = True
+ probe_names_used = []
+ for stream_field in stream_fields:
+ stream = stream_field.attrib["name"]
+ if "ADC" in stream:
+ continue
+ stream = stream.replace("-AP", "").replace("-LFP", "")
+ if stream not in probe_names_used:
+ probe_names_used.append(stream)
+ else:
+ has_streams = False
+ probe_names_used = None
+
+ if onix_processor is not None:
+ probe_names_used = [pn for pn in probe_names_used if "Probe" in pn]
+
+ # Find NP_PROBE elements
+ editor = processor.find("EDITOR")
+ if oe_version < parse("0.9.0"):
+ np_probes = editor.findall("NP_PROBE")
+ else:
+ custom_parameters = editor.find("CUSTOM_PARAMETERS")
+ if onix_processor is not None:
+ possible_probe_names = ["NEUROPIXELSV1E", "NEUROPIXELSV1F", "NEUROPIXELSV2E"]
+ parent_np_probe = ""
+ for possible_probe_name in possible_probe_names:
+ parent_np_probe = custom_parameters.findall(possible_probe_name)
+ if len(parent_np_probe) > 0:
+ break
+ if possible_probe_name == "NEUROPIXELSV2E":
+ np_probes = [parent_np_probe[0].findall(f"PROBE{a}")[0] for a in range(2)]
+ else:
+ np_probes = [parent_np_probe[0]]
+ else:
+ np_probes = custom_parameters.findall("NP_PROBE")
+ if len(np_probes) == 0:
+ raise ValueError("NP_PROBE field not found in settings")
+
+ np_probes = [probe for probe in np_probes if probe.attrib.get("isEnabled", "1") == "1"]
+ if len(np_probes) == 0:
+ raise ValueError("No enabled probes found in settings")
+
+ if not has_streams:
+ probe_names_used = [f"{node_id}.{i}" for i in range(len(np_probes))]
+
+ if has_streams and len(np_probes) < len(probe_names_used):
+ raise ValueError(f"Not enough NP_PROBE entries ({len(np_probes)}) for probes: {probe_names_used}")
+
+ # Match stream_name to a probe
+ np_probe = None
+ probe_name = None
+ for np_p, pn in zip(np_probes, probe_names_used):
+ if pn in stream_name:
+ np_probe = np_p
+ probe_name = pn
+ break
+ if np_probe is None:
+ for np_p, pn in zip(np_probes, probe_names_used):
+ serial = np_p.attrib.get("probe_serial_number") or np_p.attrib.get("probeSerialNumber", "")
+ if serial and serial in stream_name:
+ np_probe = np_p
+ probe_name = pn
+ break
+ if np_probe is None:
+ raise ValueError(f"Stream '{stream_name}' does not match any available probe: {probe_names_used}")
+
+ # Extract probe info from the matched NP_PROBE element
+ probe_part_number = np_probe.attrib.get("probe_part_number") or np_probe.attrib.get("probePartNumber")
+ probe_serial_number = np_probe.attrib.get("probe_serial_number") or np_probe.attrib.get("probeSerialNumber")
+
+ if "custom_probe_name" in np_probe.attrib and np_probe.attrib["custom_probe_name"] != probe_serial_number:
+ name = np_probe.attrib["custom_probe_name"]
+ else:
+ name = probe_name
+
+ info = {
+ "probe_part_number": probe_part_number,
+ "serial_number": probe_serial_number,
+ "name": name,
+ "slot": np_probe.attrib.get("slot"),
+ "port": np_probe.attrib.get("port"),
+ "dock": np_probe.attrib.get("dock"),
+ "selected_electrode_indices": None,
+ "positions": None,
+ }
+
+ # Electrode selection
+ selected_electrodes = np_probe.find("SELECTED_ELECTRODES")
+ if selected_electrodes is not None:
+ # ONIX plugin provides electrode indices directly as SELECTED_ELECTRODES attributes.
+ # These are indices into the full probe's electrode array.
+ info["selected_electrode_indices"] = [int(ei) for ei in selected_electrodes.attrib.values()]
+ else:
+ # Neuropix-PXI and OneBox plugins provide CHANNELS (channel keys like CH0, CH1, ...)
+ # with ELECTRODE_XPOS/ELECTRODE_YPOS giving the physical position of each channel.
+ # We extract the positions so the caller can match them against the catalogue probe.
+ channels = np_probe.find("CHANNELS")
+ plugin_channel_keys = np.array(list(channels.attrib.keys()))
+ channel_ids = np.array([int(ch[2:]) for ch in plugin_channel_keys])
+ channel_order = np.argsort(channel_ids)
+
+ plugin_channel_keys = plugin_channel_keys[channel_order]
+ channel_values = np.array(list(channels.attrib.values()))[channel_order]
+
+ if all(":" in val for val in channel_values):
+ shank_ids = np.array([int(val.split(":")[1]) for val in channel_values])
+ elif all("_" in val for val in plugin_channel_keys):
+ shank_ids = np.array([int(val.split("_")[1]) for val in plugin_channel_keys])
+ else:
+ shank_ids = None
+
+ electrode_xpos = np_probe.find("ELECTRODE_XPOS")
+ electrode_ypos = np_probe.find("ELECTRODE_YPOS")
+ if electrode_xpos is None or electrode_ypos is None:
+ raise ValueError("ELECTRODE_XPOS or ELECTRODE_YPOS is not available in settings!")
+
+ xpos = np.array([float(electrode_xpos.attrib[ch]) for ch in plugin_channel_keys])
+ ypos = np.array([float(electrode_ypos.attrib[ch]) for ch in plugin_channel_keys])
+ positions = np.array([xpos, ypos]).T
+
+ probe_features = _load_np_probe_features()
+ pt_metadata, _, _ = get_probe_metadata_from_probe_features(probe_features, probe_part_number)
+ shank_pitch = pt_metadata["shank_pitch_um"]
+
+ # Fix y-position bug in OE < 0.6.0 for multi-shank probes
+ if fix_x_position_for_oe_5 and oe_version < parse("0.6.0") and shank_ids is not None:
+ positions[:, 1] = positions[:, 1] - shank_pitch * shank_ids
+
+ # Normalize x so the first column starts at 0
+ offset = np.min(positions[:, 0])
+ if shank_ids is not None:
+ offset -= np.min(shank_ids) * shank_pitch
+ positions[:, 0] -= offset
+
+ info["positions"] = positions
+ info["plugin_channel_keys"] = plugin_channel_keys
+
+ return info
+
+
+def _parse_openephys_settings(
+ settings_file: str | Path,
+ fix_x_position_for_oe_5: bool = True,
+ raise_error: bool = True,
+) -> Optional[list[dict]]:
"""
+ Parse an Open Ephys settings.xml and extract per-probe metadata.
+ Returns a list of dicts, one per enabled probe, containing the probe_part_number,
+ serial_number, name, slot/port/dock, and electrode selection info needed to
+ build the probe from the catalogue.
+
+ Parameters
+ ----------
+ settings_file : Path or str
+ Path to the Open Ephys settings.xml file.
+ fix_x_position_for_oe_5 : bool
+ Fix position bug in open-ephys < 0.6.0.
+ raise_error : bool
+ If True, raise on error. If False, return None.
+
+ Returns
+ -------
+ probes_info : list of dict, or None
+ Each dict contains:
+ - probe_part_number, serial_number, name, slot, port, dock
+ - selected_electrode_indices: list of int (from SELECTED_ELECTRODES), or None
+ - contact_ids: list of str (reverse-engineered from CHANNELS), or None
+ - channel_names: np.array of str, or None
+ - elec_ids, shank_ids, pt_metadata, mux_info: for legacy fallback
+ """
ET = import_safely("xml.etree.ElementTree")
- # parse xml
tree = ET.parse(str(settings_file))
root = tree.getroot()
@@ -1122,7 +1324,7 @@ def read_openephys(
probe_names_used = None
if onix_processor is not None:
- probe_names_used = [probe_name for probe_name in probe_names_used if "Probe" in probe_name]
+ probe_names_used = [pn for pn in probe_names_used if "Probe" in pn]
# for Open Ephys version < 1.0 np_probes is in the EDITOR field.
# for Open Ephys version >= 1.0 np_probes is in the CUSTOM_PARAMETERS field.
@@ -1158,14 +1360,12 @@ def read_openephys(
raise Exception("No enabled probes found in settings")
return None
- # read probes info
# If STREAMs are not available, probes are sequentially named based on the node id
if not has_streams:
probe_names_used = [f"{node_id}.{stream_index}" for stream_index in range(len(np_probes))]
# check consistency with stream names and other fields
if has_streams:
- # make sure we have at least as many NP_PROBE as the number of used probes
if len(np_probes) < len(probe_names_used):
if raise_error:
raise Exception(f"Not enough NP_PROBE entries ({len(np_probes)}) for used probes: {probe_names_used}")
@@ -1173,15 +1373,8 @@ def read_openephys(
probe_features = _load_np_probe_features()
- np_probes_info = []
-
- # now load probe info from NP_PROBE fields
- np_probes_info = []
+ probes_info = []
for probe_idx, np_probe in enumerate(np_probes):
- # selected_electrodes is the preferred way to instantiate the probe
- # if this field is available, a full probe is created from the probe_part_number
- # and then sliced using the selected electrodes.
- # if not available, the xpos and ypos fields are used to create the probe
slot = np_probe.attrib.get("slot")
port = np_probe.attrib.get("port")
dock = np_probe.attrib.get("dock")
@@ -1192,40 +1385,37 @@ def read_openephys(
pt_metadata, _, mux_info = get_probe_metadata_from_probe_features(probe_features, probe_part_number)
- if selected_electrodes is not None:
- selected_electrodes_values = selected_electrodes.attrib.values()
-
- num_shank = pt_metadata["num_shanks"]
- contact_per_shank = pt_metadata["cols_per_shank"] * pt_metadata["rows_per_shank"]
-
- if num_shank == 1:
- elec_ids = np.arange(contact_per_shank, dtype=int)
- shank_ids = None
- else:
- elec_ids = np.concatenate([np.arange(contact_per_shank, dtype=int) for i in range(num_shank)])
- shank_ids = np.concatenate([np.zeros(contact_per_shank, dtype=int) + i for i in range(num_shank)])
-
- full_probe = _make_npx_probe_from_description(
- pt_metadata, probe_part_number, elec_ids, shank_ids, mux_info=mux_info
- )
-
- selected_electrode_indices = [int(electrode_index) for electrode_index in selected_electrodes_values]
+ # Assign probe name
+ if "custom_probe_name" in np_probe.attrib and np_probe.attrib["custom_probe_name"] != probe_serial_number:
+ name = np_probe.attrib["custom_probe_name"]
+ else:
+ name = probe_names_used[probe_idx]
- sliced_probe = full_probe.get_slice(selection=selected_electrode_indices)
+ info = {
+ "probe_part_number": probe_part_number,
+ "serial_number": probe_serial_number,
+ "name": name,
+ "slot": slot,
+ "port": port,
+ "dock": dock,
+ "pt_metadata": pt_metadata,
+ "mux_info": mux_info,
+ "selected_electrode_indices": None,
+ "contact_ids": None,
+ "channel_names": None,
+ "elec_ids": None,
+ "shank_ids": None,
+ }
- np_probe_dict = {
- "pt_metadata": pt_metadata,
- "serial_number": probe_serial_number,
- "part_number": probe_part_number,
- "mux_info": mux_info,
- "probe": sliced_probe,
- }
+ if selected_electrodes is not None:
+ # Newer plugin versions provide electrode indices directly
+ info["selected_electrode_indices"] = [int(ei) for ei in selected_electrodes.attrib.values()]
else:
+ # Older plugin versions: reverse-engineer electrode IDs from positions
channel_names = np.array(list(channels.attrib.keys()))
channel_ids = np.array([int(ch[2:]) for ch in channel_names])
channel_order = np.argsort(channel_ids)
- # sort channel_names and channel_values
channel_names = channel_names[channel_order]
channel_values = np.array(list(channels.attrib.values()))[channel_order]
@@ -1255,30 +1445,22 @@ def read_openephys(
# x offset so that the first column is at 0x
offset = np.min(positions[:, 0])
- # if some shanks are not used, we need to adjust the offset
if shank_ids is not None:
offset -= np.min(shank_ids) * shank_pitch
positions[:, 0] -= offset
- #
- y_pitch = pt_metadata[
- "electrode_pitch_vert_um"
- ] # Vertical spacing between the centers of adjacent contacts
- x_pitch = pt_metadata[
- "electrode_pitch_horz_um"
- ] # Horizontal spacing between the centers of contacts within the same row
+ y_pitch = pt_metadata["electrode_pitch_vert_um"]
+ x_pitch = pt_metadata["electrode_pitch_horz_um"]
number_of_columns = pt_metadata["cols_per_shank"]
probe_stagger = (
pt_metadata["even_row_horz_offset_left_edge_to_leftmost_electrode_center_um"]
- pt_metadata["odd_row_horz_offset_left_edge_to_leftmost_electrode_center_um"]
)
num_shanks = pt_metadata["num_shanks"]
-
description = pt_metadata.get("description")
elec_ids = []
for i, pos in enumerate(positions):
- # Do not calculate contact ids if the model name is not known
if description is None:
elec_ids = None
break
@@ -1286,15 +1468,11 @@ def read_openephys(
x_pos = pos[0]
y_pos = pos[1]
- # Adds a shift to rows in the staggered configuration
is_row_staggered = np.mod(y_pos / y_pitch + 1, 2) == 1
row_stagger = probe_stagger if is_row_staggered else 0
- # Map the positions to the contacts ids
shank_id = shank_ids[i] if num_shanks > 1 else 0
- # Electrode ids are computed from the positions of the electrodes. The computation
- # is different for probes with one row of electrodes, or more than one.
if x_pitch == 0:
elec_id = int(number_of_columns * y_pos / y_pitch)
else:
@@ -1303,44 +1481,64 @@ def read_openephys(
)
elec_ids.append(elec_id)
- np_probe_dict = {
- "shank_ids": shank_ids,
- "elec_ids": elec_ids,
- "channel_names": channel_names,
- "pt_metadata": pt_metadata,
- "slot": slot,
- "port": port,
- "dock": dock,
- "serial_number": probe_serial_number,
- "part_number": probe_part_number,
- "mux_info": mux_info,
- }
-
- # Sequentially assign probe names
- if "custom_probe_name" in np_probe.attrib and np_probe.attrib["custom_probe_name"] != probe_serial_number:
- name = np_probe.attrib["custom_probe_name"]
- else:
- name = probe_names_used[probe_idx]
- np_probe_dict.update({"name": name})
- np_probes_info.append(np_probe_dict)
+ info["channel_names"] = channel_names
+ info["shank_ids"] = shank_ids
+ info["elec_ids"] = elec_ids
+
+ # Build contact_ids from reverse-engineered electrode IDs
+ if elec_ids is not None:
+ shank_ids_iter = shank_ids if shank_ids is not None else [None] * len(elec_ids)
+ info["contact_ids"] = [
+ _build_canonical_contact_id(eid, sid) for sid, eid in zip(shank_ids_iter, elec_ids)
+ ]
+
+ probes_info.append(info)
+
+ return probes_info
- # now select find the selected probe (if multiple)
- if len(np_probes) > 1:
+
+def _select_openephys_probe_info(
+ probes_info: list[dict],
+ stream_name: Optional[str] = None,
+ probe_name: Optional[str] = None,
+ serial_number: Optional[str] = None,
+ raise_error: bool = True,
+) -> Optional[dict]:
+ """
+ Select one probe's info dict from the list returned by `_parse_openephys_settings`.
+
+ Parameters
+ ----------
+ probes_info : list of dict
+ List of per-probe info dicts from `_parse_openephys_settings`.
+ stream_name : str or None
+ Stream name for selection.
+ probe_name : str or None
+ Probe name for selection.
+ serial_number : str or None
+ Serial number for selection.
+ raise_error : bool
+ If True, raise on error. If False, return None.
+
+ Returns
+ -------
+ info : dict or None
+ """
+ probe_names_used = [p["name"] for p in probes_info]
+
+ if len(probes_info) > 1:
found = False
- probe_names = [p["name"] for p in np_probes_info]
if stream_name is not None:
assert probe_name is None and serial_number is None, (
"Use one of 'stream_name', 'probe_name', " "or 'serial_number'"
)
- # Here we have to check if the probe name or the serial number is in the stream name
- # If both are present, e.g., the name contains the serial number, the first match is used.
- for probe_idx, probe_info in enumerate(np_probes_info):
+ for probe_info in probes_info:
if probe_info["name"] in stream_name:
found = True
break
if not found:
- for probe_idx, probe_info in enumerate(np_probes_info):
+ for probe_info in probes_info:
if probe_info["serial_number"] in stream_name:
found = True
break
@@ -1354,7 +1552,7 @@ def read_openephys(
assert stream_name is None and serial_number is None, (
"Use one of 'stream_name', 'probe_name', " "or 'serial_number'"
)
- for probe_idx, probe_info in enumerate(np_probes_info):
+ for probe_info in probes_info:
if probe_info["name"] == probe_name:
found = True
break
@@ -1366,12 +1564,12 @@ def read_openephys(
assert stream_name is None and probe_name is None, (
"Use one of 'stream_name', 'probe_name', " "or 'serial_number'"
)
- for probe_idx, probe_info in enumerate(np_probes_info):
+ for probe_info in probes_info:
if probe_info["serial_number"] == str(serial_number):
found = True
break
if not found:
- np_serial_numbers = [p["serial_number"] for p in probe_info]
+ np_serial_numbers = [p["serial_number"] for p in probes_info]
if raise_error:
raise Exception(
f"The provided {serial_number} is not in the available serial numbers: {np_serial_numbers}"
@@ -1380,13 +1578,12 @@ def read_openephys(
else:
raise Exception(
f"More than one probe found. Use one of 'stream_name', 'probe_name', or 'serial_number' "
- f"to select the right probe.\nProbe names: {probe_names}"
+ f"to select the right probe.\nProbe names: {probe_names_used}"
)
+ return probe_info
else:
- # in case of a single probe, make sure it is consistent with optional
- # stream_name, probe_name, or serial number
- available_probe_name = np_probes_info[0]["name"]
- available_serial_number = np_probes_info[0]["serial_number"]
+ available_probe_name = probes_info[0]["name"]
+ available_serial_number = probes_info[0]["serial_number"]
if stream_name:
if available_probe_name not in stream_name:
@@ -1412,43 +1609,327 @@ def read_openephys(
f"{available_serial_number}"
)
return None
- probe_idx = 0
+ return probes_info[0]
+
+
+def _slice_catalogue_probe(full_probe: Probe, probe_info: dict) -> Probe:
+ """
+ Slice a full catalogue probe using the electrode selection from probe_info.
+
+ For SELECTED_ELECTRODES (newer plugin), uses the indices directly.
+ For CHANNELS (older plugin), matches reverse-engineered contact_ids to the catalogue.
+ Falls back to legacy `_make_npx_probe_from_description` if matching fails.
+
+ Parameters
+ ----------
+ full_probe : Probe
+ Full catalogue probe from `build_neuropixels_probe`.
+ probe_info : dict
+ Probe info dict from `_parse_openephys_settings`.
+
+ Returns
+ -------
+ probe : Probe
+ """
+ if probe_info["selected_electrode_indices"] is not None:
+ return full_probe.get_slice(selection=probe_info["selected_electrode_indices"])
+
+ contact_ids = probe_info["contact_ids"]
+ if contact_ids is not None:
+ catalogue_ids = set(full_probe.contact_ids)
+ if all(cid in catalogue_ids for cid in contact_ids):
+ contact_id_to_index = {cid: i for i, cid in enumerate(full_probe.contact_ids)}
+ selected_indices = np.array([contact_id_to_index[cid] for cid in contact_ids])
+ return full_probe.get_slice(selection=selected_indices)
+ else:
+ raise ValueError(
+ f"Could not match electrode positions to catalogue probe '{probe_info['probe_part_number']}'. "
+ f"The probe part number in settings.xml may be incorrect. "
+ f"See https://github.com/SpikeInterface/probeinterface/issues/407 for details."
+ )
+
+
+def _annotate_openephys_probe(probe: Probe, probe_info: dict) -> None:
+ """
+ Annotate a probe with metadata from the parsed settings info.
+
+ Parameters
+ ----------
+ probe : Probe
+ The probe to annotate (modified in place).
+ probe_info : dict
+ Probe info dict from `_parse_openephys_settings`.
+ """
+ if probe_info["channel_names"] is not None:
+ probe.annotate_contacts(channel_name=probe_info["channel_names"])
+
+ probe.serial_number = probe_info["serial_number"]
+ probe.name = probe_info["name"]
+ probe.annotate(part_number=probe_info["probe_part_number"])
+
+ if probe_info["slot"] is not None:
+ probe.annotate(slot=probe_info["slot"])
+ if probe_info["port"] is not None:
+ probe.annotate(port=probe_info["port"])
+ if probe_info["dock"] is not None:
+ probe.annotate(dock=probe_info["dock"])
+
+
+def read_openephys(
+ settings_file: str | Path,
+ stream_name: Optional[str] = None,
+ probe_name: Optional[str] = None,
+ serial_number: Optional[str] = None,
+ fix_x_position_for_oe_5: bool = True,
+ raise_error: bool = True,
+) -> Probe:
+ """
+ Read probe positions from Open Ephys folder when using the Neuropix-PXI plugin.
+ The reader assumes that the NP_PROBE fields are available in the settings file.
+ Open Ephys versions 0.5.x and 0.6.x are supported:
+ * For version 0.6.x, the probe names are inferred from the STREAM field. Probe
+ information is then populated sequentially with the NP_PROBE fields.
+ * For version 0.5.x, STREAMs are not available. In this case, if multiple probes
+ are available, they are named sequentially based on the nodeId. E.g. "100.0",
+ "100.1". These substrings are used for selection.
+
+ Parameters
+ ----------
+ settings_file : Path, str, or None
+ If more than one settings.xml file is in the folder structure, this argument
+ is required to indicate which settings file to use
+ stream_name : str or None
+ If more than one probe is used, the 'stream_name' indicates which probe to load base on the
+ stream. For example, if there are 3 probes ('ProbeA', 'ProbeB', ProbeC) and the stream_name is
+ contains the substring 'ProbeC' (e.g. 'my-stream-ProbeC'), then the probe associated with
+ ProbeC is returned. If this argument is used, the 'probe_name' and 'serial_number' must be None.
+ probe_name : str or None
+ If more than one probe is used, the 'probe_name' indicates which probe to load base on the
+ probe name (e.g. "ProbeB"). If this argument is used, the 'stream_name' and 'serial_number'
+ must be None.
+ serial_number : str or None
+ If more than one probe is used, the 'serial_number' indicates which probe to load base on the
+ serial number. If this argument is used, the 'stream_name' and 'probe_name'
+ must be None.
+ fix_x_position_for_oe_5: bool
+ The neuropixels PXI plugin in the open-ephys < 0.6.0 contains a bug in the y position. This option allow to fix it.
+ raise_error: bool
+ If True, any error would raise an exception. If False, None is returned. Default True
+
+ Note
+ ----
+ The electrode positions are only available when recording using the Neuropix-PXI plugin version >= 0.3.3
+
+ Returns
+ -------
+ probe : Probe object
+
+ """
+ probes_info = _parse_openephys_settings(settings_file, fix_x_position_for_oe_5, raise_error)
+ if probes_info is None:
+ return None
+
+ probe_info = _select_openephys_probe_info(probes_info, stream_name, probe_name, serial_number, raise_error)
+ if probe_info is None:
+ return None
+
+ full_probe = build_neuropixels_probe(probe_info["probe_part_number"])
+ probe = _slice_catalogue_probe(full_probe, probe_info)
+ _annotate_openephys_probe(probe, probe_info)
+
+ chans_saved = get_saved_channel_indices_from_openephys_settings(settings_file, stream_name=stream_name)
+ if chans_saved is not None:
+ probe = probe.get_slice(chans_saved)
+
+ probe.set_device_channel_indices(np.arange(probe.get_contact_count()))
+ return probe
+
- np_probe_info = np_probes_info[probe_idx]
- np_probe = np_probes[probe_idx]
- probe = np_probe_info.get("probe")
+def read_openephys_binary(
+ settings_file: str | Path,
+ oebin_file: str | Path,
+ stream_name: str,
+ fix_x_position_for_oe_5: bool = True,
+) -> Probe:
+ """
+ Read probe positions from an Open Ephys binary format recording, using both the
+ settings.xml for probe geometry and the structure.oebin file for channel ordering.
+
+ This function builds the probe geometry from settings.xml (which describes all probes
+ in the experiment), selects the probe matching the given stream, then uses the oebin
+ file to validate the channel count against the binary data layout.
+
+ This is the recommended reader for Open Ephys binary recordings when the caller
+ has both the settings.xml and structure.oebin available, which is always the case
+ for the binary format. The ``stream_name`` parameter is required because the
+ settings.xml contains all probes in a single file and the oebin contains all
+ streams; a stream name is needed to select the correct probe and stream.
+
+ Parameters
+ ----------
+ settings_file : Path or str
+ Path to the Open Ephys settings.xml file. This file is located at the
+ Record Node level (e.g. ``Record Node 102/settings.xml``) and contains
+ the full signal chain configuration including all probe geometries.
+ oebin_file : Path or str
+ Path to the structure.oebin JSON file. This file is located at the
+ recording level (e.g. ``experiment1/recording1/structure.oebin``) and
+ describes the binary data layout including channel count per stream.
+ stream_name : str
+ The stream name used to select which probe to load from settings.xml
+ and which continuous stream to match in the oebin file. This is typically
+ the neo stream name constructed as ``"Record Node 102#Neuropix-PXI-100.ProbeA-AP"``.
+ The probe is selected by substring match: if the probe name (e.g. ``"ProbeA"``)
+ appears anywhere in the stream_name, that probe is selected.
+ fix_x_position_for_oe_5 : bool
+ Fix a y-position bug present in the Neuropix-PXI plugin for Open Ephys < 0.6.0
+ where multi-shank probe y-coordinates included an erroneous shank pitch offset.
+ Despite the parameter name, this corrects the y (not x) position. Default True.
- if probe is None:
- # check if subset of channels
- shank_ids = np_probe_info["shank_ids"]
- elec_ids = np_probe_info["elec_ids"]
- pt_metadata = np_probe_info["pt_metadata"]
- mux_info = np_probe_info["mux_info"]
+ Returns
+ -------
+ probe : Probe
+ The probe with ``device_channel_indices`` set to identity mapping.
- probe = _make_npx_probe_from_description(
- pt_metadata, probe_part_number, elec_ids, shank_ids=shank_ids, mux_info=mux_info
+ Raises
+ ------
+ ValueError
+ If the settings.xml cannot be parsed, no matching probe is found, or
+ the oebin channel count does not match the probe contact count.
+ """
+ # Parse settings.xml for this stream's probe
+ probe_info = _parse_probe_info_from_openephys_settings(settings_file, stream_name, fix_x_position_for_oe_5)
+
+ # Build probe from catalogue and slice to selected electrodes
+ full_probe = build_neuropixels_probe(probe_info["probe_part_number"])
+
+ if probe_info["selected_electrode_indices"] is not None:
+ # ONIX plugin provides electrode indices directly as SELECTED_ELECTRODES.
+ # These are indices into the full probe's contact array.
+ probe = full_probe.get_slice(selection=probe_info["selected_electrode_indices"])
+ elif probe_info["positions"] is not None:
+ # Neuropix-PXI and OneBox plugins provide channel positions via
+ # CHANNELS + ELECTRODE_XPOS/ELECTRODE_YPOS. Match these positions against the
+ # catalogue probe to find which electrodes are active.
+ xml_positions = probe_info["positions"]
+ catalogue_positions = full_probe.contact_positions
+
+ matched_indices = []
+ for xml_pos in xml_positions:
+ distances = np.sum(np.abs(catalogue_positions - xml_pos), axis=1)
+ best_index = np.argmin(distances)
+ matched_indices.append(best_index)
+
+ matched_indices = np.array(matched_indices)
+
+ # Validate: all matches should be exact (within floating point tolerance)
+ # and each XML position should match a unique catalogue contact
+ max_distance = max(
+ np.sum(np.abs(catalogue_positions[matched_indices[i]] - xml_positions[i]))
+ for i in range(len(matched_indices))
)
+ n_unique = len(np.unique(matched_indices))
+
+ if max_distance > 0.1 or n_unique != len(matched_indices):
+ raise ValueError(
+ f"Could not match XML electrode positions to catalogue probe '{probe_info['probe_part_number']}' "
+ f"in settings '{settings_file}'. "
+ f"Max position distance: {max_distance:.2f} um, "
+ f"unique matches: {n_unique}/{len(matched_indices)}. "
+ f"The probe part number in settings.xml may be incorrect, or the probe model "
+ f"may not be in the catalogue."
+ )
- if "channel_names" in np_probe_info:
- probe.annotate_contacts(channel_name=np_probe_info["channel_names"])
+ probe = full_probe.get_slice(selection=matched_indices)
+ else:
+ raise ValueError(
+ f"No electrode selection found in '{settings_file}' for probe '{probe_info['name']}'. "
+ f"Expected either SELECTED_ELECTRODES or CHANNELS with ELECTRODE_XPOS/ELECTRODE_YPOS."
+ )
+ # Annotate
+ probe.serial_number = probe_info["serial_number"]
+ probe.name = probe_info["name"]
+ probe.annotate(part_number=probe_info["probe_part_number"])
+ for attr in ("slot", "port", "dock"):
+ if probe_info[attr] is not None:
+ probe.annotate(**{attr: probe_info[attr]})
+ if probe_info.get("plugin_channel_keys") is not None:
+ probe.annotate_contacts(plugin_channel_key=probe_info["plugin_channel_keys"])
+
+ # Apply saved channel subsetting
chans_saved = get_saved_channel_indices_from_openephys_settings(settings_file, stream_name=stream_name)
if chans_saved is not None:
probe = probe.get_slice(chans_saved)
- probe.serial_number = np_probe_info["serial_number"]
- probe.name = np_probe_info["name"]
+ # Read oebin and validate channel count
+ oebin_file = Path(oebin_file)
+ with open(oebin_file, "r") as f:
+ oebin = json.load(f)
+
+ continuous_streams = oebin.get("continuous", [])
+ matched_stream = None
+ for cs in continuous_streams:
+ folder_name = cs.get("folder_name", "")
+ if stream_name in folder_name or folder_name in stream_name:
+ matched_stream = cs
+ break
+
+ if matched_stream is None:
+ available = [cs.get("folder_name", "unknown") for cs in continuous_streams]
+ raise ValueError(
+ f"Could not find stream matching '{stream_name}' in oebin file '{oebin_file}'. "
+ f"Available streams: {available}"
+ )
- probe.annotate(
- part_number=np_probe_info["part_number"],
- )
- if "slot" in np_probe_info:
- probe.annotate(slot=np_probe_info["slot"])
- if "port" in np_probe_info:
- probe.annotate(port=np_probe_info["port"])
- if "dock" in np_probe_info:
- probe.annotate(dock=np_probe_info["dock"])
+ oebin_channels = matched_stream.get("channels", [])
+ num_contacts = probe.get_contact_count()
+
+ # Extract electrode_index metadata from oebin channels.
+ # This was added in neuropixels-pxi plugin v0.5.0 (January 2023).
+ oebin_electrode_indices = []
+ for ch in oebin_channels:
+ electrode_index = None
+ for m in ch.get("channel_metadata", []):
+ if m.get("name") == "electrode_index":
+ electrode_index = m["value"][0]
+ break
+ oebin_electrode_indices.append(electrode_index)
+
+ # Filter out non-electrode channels (e.g. AP_SYNC) that lack electrode_index
+ electrode_channel_indices = [i for i, ei in enumerate(oebin_electrode_indices) if ei is not None]
+ oebin_electrode_indices = [oebin_electrode_indices[i] for i in electrode_channel_indices]
+
+ if len(oebin_electrode_indices) != num_contacts:
+ raise ValueError(
+ f"Channel count mismatch: oebin '{oebin_file}' has {len(oebin_electrode_indices)} electrode channels "
+ f"but probe from settings '{settings_file}' has {num_contacts} contacts."
+ )
+
+ # Check if electrode_index values are valid (not all zeros).
+ # All-zero values occur in recordings from neuropixels-pxi < 0.5.0.
+ has_valid_electrode_indices = not all(ei == 0 for ei in oebin_electrode_indices)
+
+ if has_valid_electrode_indices:
+ # Map each probe contact to its binary file column using electrode_index.
+ electrode_index_to_column = {ei: col for col, ei in enumerate(oebin_electrode_indices)}
+ device_channel_indices = np.zeros(num_contacts, dtype=int)
+ for i, contact_id in enumerate(probe.contact_ids):
+ electrode_index = int(contact_id.split("e")[-1])
+ if electrode_index not in electrode_index_to_column:
+ warnings.warn(
+ f"Contact {contact_id} has electrode_index {electrode_index} not found in oebin. "
+ f"Falling back to identity wiring."
+ )
+ device_channel_indices = np.arange(num_contacts)
+ break
+ device_channel_indices[i] = electrode_index_to_column[electrode_index]
+ else:
+ # Fallback: identity wiring. The binary .dat file is written in channel-number order
+ # (confirmed in https://github.com/open-ephys-plugins/neuropixels-pxi/issues/39).
+ device_channel_indices = np.arange(num_contacts)
+ probe.set_device_channel_indices(device_channel_indices)
return probe
diff --git a/tests/data/openephys/OE_Neuropix-PXI-NP1-binary/Record_Node_101/experiment1/recording1/structure.oebin b/tests/data/openephys/OE_Neuropix-PXI-NP1-binary/Record_Node_101/experiment1/recording1/structure.oebin
new file mode 100644
index 00000000..cdb5b2cc
--- /dev/null
+++ b/tests/data/openephys/OE_Neuropix-PXI-NP1-binary/Record_Node_101/experiment1/recording1/structure.oebin
@@ -0,0 +1,8105 @@
+{
+ "GUI version": "1.0.1",
+ "continuous": [
+ {
+ "folder_name": "Neuropix-PXI-100.ProbeA/",
+ "sample_rate": 30000.0,
+ "source_processor_name": "Neuropix-PXI",
+ "source_processor_id": 100,
+ "stream_name": "ProbeA",
+ "recorded_processor": "Record Node",
+ "recorded_processor_id": 101,
+ "num_channels": 384,
+ "channels": [
+ {
+ "channel_name": "CH0",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 0
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH1",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 1
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH2",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 2
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH3",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 3
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH4",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 4
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH5",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 5
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH6",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 6
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH7",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 7
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH8",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 8
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH9",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 9
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH10",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 10
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH11",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 11
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH12",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 12
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH13",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 13
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH14",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 14
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH15",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 15
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH16",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 16
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH17",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 17
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH18",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 18
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH19",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 19
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH20",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 20
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH21",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 21
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH22",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 22
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH23",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 23
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH24",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 24
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH25",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 25
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH26",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 26
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH27",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 27
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH28",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 28
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH29",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 29
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH30",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 30
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH31",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 31
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH32",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 32
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH33",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 33
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH34",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 34
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH35",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 35
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH36",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 36
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH37",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 37
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH38",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 38
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH39",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 39
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH40",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 40
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH41",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 41
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH42",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 42
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH43",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 43
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH44",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 44
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH45",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 45
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH46",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 46
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH47",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 47
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH48",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 288
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH49",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 289
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH50",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 290
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH51",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 291
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH52",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 292
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH53",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 293
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH54",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 294
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH55",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 295
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH56",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 296
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH57",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 297
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH58",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 298
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH59",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 299
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH60",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 300
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH61",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 301
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH62",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 302
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH63",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 303
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH64",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 304
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH65",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 305
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH66",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 306
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH67",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 307
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH68",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 308
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH69",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 309
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH70",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 310
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH71",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 311
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH72",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 312
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH73",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 313
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH74",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 314
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH75",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 315
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH76",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 316
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH77",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 317
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH78",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 318
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH79",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 319
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH80",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 320
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH81",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 321
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH82",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 322
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH83",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 323
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH84",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 324
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH85",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 325
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH86",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 326
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH87",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 327
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH88",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 328
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH89",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 329
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH90",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 330
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH91",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 331
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH92",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 332
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH93",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 333
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH94",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 334
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH95",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 335
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH96",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 48
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH97",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 49
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH98",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 50
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH99",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 51
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH100",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 52
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH101",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 53
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH102",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 54
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH103",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 55
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH104",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 56
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH105",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 57
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH106",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 58
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH107",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 59
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH108",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 60
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH109",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 61
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH110",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 62
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH111",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 63
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH112",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 64
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH113",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 65
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH114",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 66
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH115",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 67
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH116",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 68
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH117",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 69
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH118",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 70
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH119",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 71
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH120",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 72
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH121",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 73
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH122",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 74
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH123",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 75
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH124",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 76
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH125",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 77
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH126",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 78
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH127",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 79
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH128",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 80
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH129",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 81
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH130",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 82
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH131",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 83
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH132",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 84
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH133",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 85
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH134",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 86
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH135",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 87
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH136",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 88
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH137",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 89
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH138",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 90
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH139",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 91
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH140",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 92
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH141",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 93
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH142",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 94
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH143",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 95
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH144",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 336
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH145",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 337
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH146",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 338
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH147",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 339
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH148",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 340
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH149",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 341
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH150",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 342
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH151",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 343
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH152",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 344
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH153",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 345
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH154",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 346
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH155",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 347
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH156",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 348
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH157",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 349
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH158",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 350
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH159",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 351
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH160",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 352
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH161",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 353
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH162",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 354
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH163",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 355
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH164",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 356
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH165",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 357
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH166",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 358
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH167",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 359
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH168",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 360
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH169",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 361
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH170",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 362
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH171",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 363
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH172",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 364
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH173",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 365
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH174",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 366
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH175",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 367
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH176",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 368
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH177",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 369
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH178",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 370
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH179",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 371
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH180",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 372
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH181",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 373
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH182",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 374
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH183",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 375
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH184",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 376
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH185",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 377
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH186",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 378
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH187",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 379
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH188",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 380
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH189",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 381
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH190",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 382
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH191",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 383
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH192",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 96
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH193",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 97
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH194",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 98
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH195",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 99
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH196",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 100
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH197",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 101
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH198",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 102
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH199",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 103
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH200",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 104
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH201",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 105
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH202",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 106
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH203",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 107
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH204",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 108
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH205",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 109
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH206",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 110
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH207",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 111
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH208",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 112
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH209",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 113
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH210",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 114
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH211",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 115
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH212",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 116
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH213",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 117
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH214",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 118
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH215",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 119
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH216",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 120
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH217",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 121
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH218",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 122
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH219",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 123
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH220",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 124
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH221",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 125
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH222",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 126
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH223",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 127
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH224",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 128
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH225",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 129
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH226",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 130
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH227",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 131
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH228",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 132
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH229",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 133
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH230",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 134
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH231",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 135
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH232",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 136
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH233",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 137
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH234",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 138
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH235",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 139
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH236",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 140
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH237",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 141
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH238",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 142
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH239",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 143
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH240",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 192
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH241",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 193
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH242",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 194
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH243",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 195
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH244",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 196
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH245",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 197
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH246",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 198
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH247",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 199
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH248",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 200
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH249",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 201
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH250",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 202
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH251",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 203
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH252",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 204
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH253",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 205
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH254",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 206
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH255",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 207
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH256",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 208
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH257",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 209
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH258",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 210
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH259",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 211
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH260",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 212
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH261",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 213
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH262",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 214
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH263",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 215
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH264",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 216
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH265",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 217
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH266",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 218
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH267",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 219
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH268",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 220
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH269",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 221
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH270",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 222
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH271",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 223
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH272",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 224
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH273",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 225
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH274",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 226
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH275",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 227
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH276",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 228
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH277",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 229
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH278",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 230
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH279",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 231
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH280",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 232
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH281",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 233
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH282",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 234
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH283",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 235
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH284",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 236
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH285",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 237
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH286",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 238
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH287",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 239
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH288",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 144
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH289",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 145
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH290",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 146
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH291",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 147
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH292",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 148
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH293",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 149
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH294",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 150
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH295",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 151
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH296",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 152
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH297",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 153
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH298",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 154
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH299",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 155
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH300",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 156
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH301",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 157
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH302",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 158
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH303",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 159
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH304",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 160
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH305",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 161
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH306",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 162
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH307",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 163
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH308",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 164
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH309",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 165
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH310",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 166
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH311",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 167
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH312",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 168
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH313",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 169
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH314",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 170
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH315",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 171
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH316",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 172
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH317",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 173
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH318",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 174
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH319",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 175
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH320",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 176
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH321",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 177
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH322",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 178
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH323",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 179
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH324",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 180
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH325",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 181
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH326",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 182
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH327",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 183
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH328",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 184
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH329",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 185
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH330",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 186
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH331",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 187
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH332",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 188
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH333",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 189
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH334",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 190
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH335",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 191
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH336",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 240
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH337",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 241
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH338",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 242
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH339",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 243
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH340",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 244
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH341",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 245
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH342",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 246
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH343",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 247
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH344",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 248
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH345",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 249
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH346",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 250
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH347",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 251
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH348",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 252
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH349",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 253
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH350",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 254
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH351",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 255
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH352",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 256
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH353",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 257
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH354",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 258
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH355",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 259
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH356",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 260
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH357",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 261
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH358",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 262
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH359",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 263
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH360",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 264
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH361",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 265
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH362",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 266
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH363",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 267
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH364",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 268
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH365",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 269
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH366",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 270
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH367",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 271
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH368",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 272
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH369",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 273
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH370",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 274
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH371",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 275
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH372",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 276
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH373",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 277
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH374",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 278
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH375",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 279
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH376",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 280
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH377",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 281
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH378",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 282
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH379",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 283
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH380",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 284
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH381",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 285
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH382",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 286
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "CH383",
+ "description": "Neuropixels electrode",
+ "identifier": "neuropixels.electrode",
+ "history": "Neuropix-PXI -> Neuropixels CAR -> Record Node",
+ "bit_volts": 0.1949999928,
+ "units": "uV",
+ "type": 0,
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 287
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "events": [
+ {
+ "folder_name": "Neuropix-PXI-100.ProbeA/TTL/",
+ "channel_name": "Neuropixels PXI Sync",
+ "description": "Status of SMA sync line on PXI card",
+ "identifier": "neuropixels.sync",
+ "sample_rate": 30000.0,
+ "type": "int16",
+ "source_processor": "Neuropix-PXI",
+ "stream_name": "ProbeA",
+ "initial_state": 0
+ },
+ {
+ "folder_name": "MessageCenter/",
+ "channel_name": "Messages",
+ "description": "Broadcasts messages from the MessageCenter",
+ "identifier": "messagecenter.events",
+ "sample_rate": 30000.0,
+ "type": "string",
+ "source_processor": "Message Center",
+ "stream_name": "ProbeA"
+ }
+ ],
+ "spikes": []
+ }
diff --git a/tests/data/openephys/OE_Neuropix-PXI-NP1-binary/Record_Node_101/settings.xml b/tests/data/openephys/OE_Neuropix-PXI-NP1-binary/Record_Node_101/settings.xml
new file mode 100644
index 00000000..3aa53a1b
--- /dev/null
+++ b/tests/data/openephys/OE_Neuropix-PXI-NP1-binary/Record_Node_101/settings.xml
@@ -0,0 +1,493 @@
+
+
+
+
+ 1.0.1
+ 10
+ 11 Sep 2025 9:57:24
+ Windows 11
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/tests/data/openephys/OE_Neuropix-PXI-NP2-4shank-binary/Record_Node_101/experiment4/recording2/structure.oebin b/tests/data/openephys/OE_Neuropix-PXI-NP2-4shank-binary/Record_Node_101/experiment4/recording2/structure.oebin
new file mode 100644
index 00000000..f02a6a72
--- /dev/null
+++ b/tests/data/openephys/OE_Neuropix-PXI-NP2-4shank-binary/Record_Node_101/experiment4/recording2/structure.oebin
@@ -0,0 +1,15495 @@
+{
+ "GUI version": "0.6.7",
+ "continuous": [
+ {
+ "folder_name": "Neuropix-PXI-100.ProbeA-AP/",
+ "sample_rate": 30000.0,
+ "source_processor_name": "Neuropix-PXI",
+ "source_processor_id": 100,
+ "stream_name": "ProbeA-AP",
+ "recorded_processor": "Record Node",
+ "recorded_processor_id": 101,
+ "num_channels": 385,
+ "channels": [
+ {
+ "channel_name": "AP1",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 768
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP2",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 1
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP3",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 2
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP4",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 771
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP5",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 4
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP6",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 389
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP7",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 774
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP8",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 391
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP9",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 8
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP10",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 777
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP11",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 10
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP12",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 395
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP13",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 780
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP14",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 397
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP15",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 14
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP16",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 783
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP17",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 16
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP18",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 401
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP19",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 786
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP20",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 403
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP21",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 20
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP22",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 789
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP23",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 22
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP24",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 407
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP25",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 792
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP26",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 409
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP27",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 26
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP28",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 795
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP29",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 28
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP30",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 413
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP31",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 798
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP32",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 415
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP33",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 32
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP34",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 801
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP35",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 34
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP36",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 419
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP37",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 804
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP38",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 421
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP39",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 38
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP40",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 807
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP41",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 40
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP42",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 425
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP43",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 810
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP44",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 427
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP45",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 44
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP46",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 813
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP47",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 46
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP48",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 431
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP49",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 816
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP50",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 433
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP51",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 50
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP52",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 819
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP53",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 52
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP54",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 437
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP55",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 822
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP56",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 439
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP57",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 56
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP58",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 825
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP59",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 58
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP60",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 443
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP61",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 828
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP62",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 445
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP63",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 62
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP64",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 831
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP65",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 64
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP66",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 449
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP67",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 834
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP68",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 451
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP69",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 68
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP70",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 837
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP71",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 70
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP72",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 455
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP73",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 840
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP74",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 457
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP75",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 74
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP76",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 843
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP77",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 76
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP78",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 461
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP79",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 846
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP80",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 463
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP81",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 80
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP82",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 849
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP83",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 82
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP84",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 467
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP85",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 852
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP86",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 469
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP87",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 86
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP88",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 855
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP89",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 88
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP90",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 473
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP91",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 858
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP92",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 475
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP93",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 92
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP94",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 861
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP95",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 94
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP96",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 479
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP97",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 864
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP98",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 481
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP99",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 98
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP100",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 867
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP101",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 100
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP102",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 485
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP103",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 870
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP104",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 487
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP105",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 104
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP106",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 873
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP107",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 106
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP108",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 491
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP109",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 876
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP110",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 109
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP111",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 110
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP112",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 879
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP113",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 112
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP114",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 497
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP115",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 882
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP116",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 499
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP117",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 116
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP118",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 885
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP119",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 118
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP120",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 503
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP121",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 888
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP122",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 121
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP123",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 122
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP124",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 891
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP125",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 124
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP126",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 509
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP127",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 894
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP128",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 511
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP129",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 128
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP130",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 897
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP131",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 130
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP132",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 515
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP133",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 900
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP134",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 133
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP135",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 134
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP136",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 903
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP137",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 136
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP138",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 521
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP139",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 906
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP140",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 523
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP141",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 140
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP142",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 909
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP143",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 142
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP144",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 527
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP145",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 912
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP146",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 145
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP147",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 146
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP148",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 915
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP149",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 148
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP150",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 533
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP151",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 918
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP152",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 535
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP153",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 152
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP154",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 921
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP155",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 154
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP156",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 539
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP157",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 924
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP158",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 541
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP159",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 158
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP160",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 927
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP161",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 928
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP162",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 545
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP163",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 162
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP164",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 931
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP165",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 164
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP166",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 549
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP167",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 934
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP168",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 551
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP169",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 168
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP170",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 937
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP171",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 170
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP172",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 555
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP173",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 940
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP174",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 173
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP175",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 174
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP176",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 943
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP177",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 176
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP178",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 561
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP179",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 946
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP180",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 563
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP181",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 180
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP182",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 949
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP183",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 182
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP184",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 567
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP185",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 952
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP186",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 185
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP187",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 186
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP188",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 955
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP189",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 188
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP190",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 573
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP191",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 190
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP192",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 575
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP193",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 192
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP194",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 577
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP195",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 194
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP196",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 579
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP197",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 196
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP198",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 581
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP199",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 198
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP200",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 583
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP201",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 200
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP202",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 585
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP203",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 202
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP204",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 587
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP205",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 204
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP206",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 589
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP207",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 206
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP208",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 591
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP209",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 208
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP210",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 593
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP211",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 210
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP212",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 595
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP213",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 212
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP214",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 597
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP215",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 214
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP216",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 599
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP217",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 216
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP218",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 601
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP219",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 218
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP220",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 603
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP221",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 220
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP222",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 605
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP223",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 222
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP224",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 607
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP225",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 224
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP226",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 609
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP227",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 226
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP228",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 611
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP229",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 228
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP230",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 613
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP231",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 230
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP232",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 615
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP233",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 232
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP234",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 617
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP235",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 234
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP236",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 619
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP237",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 236
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP238",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 621
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP239",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 238
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP240",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 623
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP241",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 240
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP242",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 625
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP243",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 242
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP244",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 627
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP245",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 244
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP246",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 629
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP247",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 246
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP248",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 631
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP249",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 248
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP250",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 633
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP251",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 250
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP252",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 635
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP253",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 252
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP254",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 637
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP255",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 254
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP256",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 639
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP257",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 256
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP258",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 641
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP259",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 258
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP260",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 643
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP261",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 260
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP262",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 645
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP263",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 262
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP264",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 647
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP265",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 264
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP266",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 649
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP267",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 266
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP268",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 651
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP269",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 268
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP270",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 653
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP271",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 270
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP272",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 655
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP273",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 272
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP274",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 657
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP275",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 274
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP276",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 659
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP277",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 276
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP278",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 661
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP279",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 278
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP280",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 663
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP281",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 280
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP282",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 665
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP283",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 282
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP284",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 667
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP285",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 284
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP286",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 669
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP287",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 286
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP288",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 671
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP289",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 288
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP290",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 673
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP291",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 290
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP292",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 675
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP293",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 292
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP294",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 677
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP295",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 294
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP296",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 679
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP297",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 296
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP298",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 681
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP299",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 298
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP300",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 683
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP301",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 300
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP302",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 685
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP303",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 302
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP304",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 687
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP305",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 304
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP306",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 689
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP307",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 306
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP308",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 691
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP309",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 308
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP310",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 693
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP311",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 310
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP312",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 695
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP313",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 312
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP314",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 697
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP315",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 314
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP316",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 699
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP317",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 316
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP318",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 701
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP319",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 318
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP320",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 703
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP321",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 320
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP322",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 705
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP323",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 322
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP324",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 707
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP325",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 324
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP326",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 709
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP327",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 326
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP328",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 711
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP329",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 328
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP330",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 713
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP331",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 330
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP332",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 715
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP333",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 332
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP334",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 717
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP335",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 334
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP336",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 719
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP337",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 336
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP338",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 721
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP339",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 338
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP340",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 723
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP341",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 340
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP342",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 725
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP343",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 342
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP344",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 727
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP345",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 344
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP346",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 729
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP347",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 346
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP348",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 731
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP349",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 348
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP350",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 733
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP351",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 350
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP352",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 735
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP353",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 352
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP354",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 737
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP355",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 354
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP356",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 739
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP357",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 356
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP358",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 741
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP359",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 358
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP360",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 743
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP361",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 360
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP362",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 745
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP363",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 362
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP364",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 747
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP365",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 364
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP366",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 749
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP367",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 366
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP368",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 751
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP369",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 368
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP370",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 753
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP371",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 370
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP372",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 755
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP373",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 372
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP374",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 757
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP375",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 374
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP376",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 759
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP377",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 376
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP378",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 761
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP379",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 378
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP380",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 763
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP381",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 380
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP382",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 765
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP383",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 382
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP384",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 767
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "AP_SYNC",
+ "description": "Neuropixels sync line (continuously sampled)",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 1.0,
+ "units": ""
+ }
+ ]
+ },
+ {
+ "folder_name": "Neuropix-PXI-100.ProbeA-LFP/",
+ "sample_rate": 2500.0,
+ "source_processor_name": "Neuropix-PXI",
+ "source_processor_id": 100,
+ "stream_name": "ProbeA-LFP",
+ "recorded_processor": "Record Node",
+ "recorded_processor_id": 101,
+ "num_channels": 385,
+ "channels": [
+ {
+ "channel_name": "LFP1",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 768
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP2",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 1
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP3",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 2
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP4",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 771
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP5",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 4
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP6",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 389
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP7",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 774
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP8",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 391
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP9",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 8
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP10",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 777
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP11",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 10
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP12",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 395
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP13",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 780
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP14",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 397
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP15",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 14
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP16",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 783
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP17",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 16
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP18",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 401
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP19",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 786
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP20",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 403
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP21",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 20
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP22",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 789
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP23",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 22
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP24",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 407
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP25",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 792
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP26",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 409
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP27",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 26
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP28",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 795
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP29",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 28
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP30",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 413
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP31",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 798
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP32",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 415
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP33",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 32
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP34",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 801
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP35",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 34
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP36",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 419
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP37",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 804
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP38",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 421
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP39",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 38
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP40",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 807
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP41",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 40
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP42",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 425
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP43",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 810
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP44",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 427
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP45",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 44
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP46",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 813
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP47",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 46
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP48",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 431
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP49",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 816
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP50",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 433
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP51",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 50
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP52",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 819
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP53",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 52
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP54",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 437
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP55",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 822
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP56",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 439
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP57",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 56
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP58",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 825
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP59",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 58
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP60",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 443
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP61",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 828
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP62",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 445
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP63",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 62
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP64",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 831
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP65",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 64
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP66",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 449
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP67",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 834
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP68",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 451
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP69",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 68
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP70",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 837
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP71",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 70
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP72",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 455
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP73",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 840
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP74",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 457
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP75",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 74
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP76",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 843
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP77",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 76
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP78",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 461
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP79",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 846
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP80",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 463
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP81",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 80
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP82",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 849
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP83",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 82
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP84",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 467
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP85",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 852
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP86",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 469
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP87",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 86
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP88",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 855
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP89",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 88
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP90",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 473
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP91",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 858
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP92",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 475
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP93",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 92
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP94",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 861
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP95",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 94
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP96",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 479
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP97",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 864
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP98",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 481
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP99",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 98
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP100",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 867
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP101",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 100
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP102",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 485
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP103",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 870
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP104",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 487
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP105",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 104
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP106",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 873
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP107",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 106
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP108",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 491
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP109",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 876
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP110",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 109
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP111",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 110
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP112",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 879
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP113",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 112
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP114",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 497
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP115",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 882
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP116",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 499
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP117",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 116
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP118",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 885
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP119",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 118
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP120",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 503
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP121",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 888
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP122",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 121
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP123",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 122
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP124",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 891
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP125",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 124
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP126",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 509
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP127",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 894
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP128",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 511
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP129",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 128
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP130",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 897
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP131",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 130
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP132",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 515
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP133",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 900
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP134",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 133
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP135",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 134
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP136",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 903
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP137",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 136
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP138",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 521
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP139",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 906
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP140",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 523
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP141",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 140
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP142",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 909
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP143",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 142
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP144",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 527
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP145",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 912
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP146",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 145
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP147",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 146
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP148",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 915
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP149",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 148
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP150",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 533
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP151",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 918
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP152",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 535
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP153",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 152
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP154",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 921
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP155",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 154
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP156",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 539
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP157",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 924
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP158",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 541
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP159",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 158
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP160",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 927
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP161",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 928
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP162",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 545
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP163",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 162
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP164",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 931
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP165",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 164
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP166",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 549
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP167",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 934
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP168",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 551
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP169",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 168
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP170",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 937
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP171",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 170
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP172",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 555
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP173",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 940
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP174",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 173
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP175",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 174
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP176",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 943
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP177",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 176
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP178",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 561
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP179",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 946
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP180",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 563
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP181",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 180
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP182",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 949
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP183",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 182
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP184",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 567
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP185",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 952
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP186",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 185
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP187",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 186
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP188",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 955
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP189",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 188
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP190",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 573
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP191",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 190
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP192",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 575
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP193",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 192
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP194",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 577
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP195",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 194
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP196",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 579
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP197",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 196
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP198",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 581
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP199",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 198
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP200",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 583
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP201",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 200
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP202",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 585
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP203",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 202
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP204",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 587
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP205",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 204
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP206",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 589
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP207",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 206
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP208",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 591
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP209",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 208
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP210",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 593
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP211",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 210
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP212",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 595
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP213",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 212
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP214",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 597
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP215",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 214
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP216",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 599
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP217",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 216
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP218",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 601
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP219",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 218
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP220",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 603
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP221",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 220
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP222",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 605
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP223",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 222
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP224",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 607
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP225",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 224
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP226",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 609
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP227",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 226
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP228",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 611
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP229",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 228
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP230",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 613
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP231",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 230
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP232",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 615
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP233",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 232
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP234",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 617
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP235",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 234
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP236",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 619
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP237",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 236
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP238",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 621
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP239",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 238
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP240",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 623
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP241",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 240
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP242",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 625
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP243",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 242
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP244",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 627
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP245",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 244
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP246",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 629
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP247",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 246
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP248",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 631
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP249",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 248
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP250",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 633
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP251",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 250
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP252",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 635
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP253",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 252
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP254",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 637
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP255",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 254
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP256",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 639
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP257",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 256
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP258",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 641
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP259",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 258
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP260",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 643
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP261",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 260
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP262",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 645
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP263",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 262
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP264",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 647
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP265",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 264
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP266",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 649
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP267",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 266
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP268",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 651
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP269",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 268
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP270",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 653
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP271",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 270
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP272",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 655
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP273",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 272
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP274",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 657
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP275",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 274
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP276",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 659
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP277",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 276
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP278",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 661
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP279",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 278
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP280",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 663
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP281",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 280
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP282",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 665
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP283",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 282
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP284",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 667
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP285",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 284
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP286",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 669
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP287",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 286
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP288",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 671
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP289",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 288
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP290",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 673
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP291",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 290
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP292",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 675
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP293",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 292
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP294",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 677
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP295",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 294
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP296",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 679
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP297",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 296
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP298",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 681
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP299",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 298
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP300",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 683
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP301",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 300
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP302",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 685
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP303",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 302
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP304",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 687
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP305",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 304
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP306",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 689
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP307",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 306
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP308",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 691
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP309",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 308
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP310",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 693
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP311",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 310
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP312",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 695
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP313",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 312
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP314",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 697
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP315",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 314
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP316",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 699
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP317",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 316
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP318",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 701
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP319",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 318
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP320",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 703
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP321",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 320
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP322",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 705
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP323",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 322
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP324",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 707
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP325",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 324
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP326",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 709
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP327",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 326
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP328",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 711
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP329",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 328
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP330",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 713
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP331",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 330
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP332",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 715
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP333",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 332
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP334",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 717
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP335",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 334
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP336",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 719
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP337",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 336
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP338",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 721
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP339",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 338
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP340",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 723
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP341",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 340
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP342",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 725
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP343",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 342
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP344",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 727
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP345",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 344
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP346",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 729
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP347",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 346
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP348",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 731
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP349",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 348
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP350",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 733
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP351",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 350
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP352",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 735
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP353",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 352
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP354",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 737
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP355",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 354
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP356",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 739
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP357",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 356
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP358",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 741
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP359",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 358
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP360",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 743
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP361",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 360
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP362",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 745
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP363",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 362
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP364",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 747
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP365",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 364
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP366",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 749
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP367",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 366
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP368",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 751
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP369",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 368
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP370",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 753
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP371",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 370
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP372",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 755
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP373",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 372
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP374",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 757
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP375",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 374
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP376",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 759
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP377",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 376
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP378",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 761
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP379",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 378
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP380",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 763
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP381",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 380
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP382",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 765
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP383",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 382
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP384",
+ "description": "Neuropixels electrode",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 0.1949999928474426,
+ "units": "",
+ "channel_metadata": [
+ {
+ "name": "electrode_index",
+ "description": "Electrode index for this channel",
+ "identifier": "neuropixels.electrode_index",
+ "type": "uint16",
+ "length": 1,
+ "value": [
+ 767
+ ]
+ }
+ ]
+ },
+ {
+ "channel_name": "LFP_SYNC",
+ "description": "Neuropixels sync line (continuously sampled)",
+ "identifier": "",
+ "history": "Neuropix-PXI -> Merger -> Record Node",
+ "bit_volts": 1.0,
+ "units": ""
+ }
+ ]
+ },
+ {
+ "folder_name": "NI-DAQmx-104.PXIe-6341/",
+ "sample_rate": 30000.0,
+ "source_processor_name": "NI-DAQmx",
+ "source_processor_id": 104,
+ "stream_name": "PXIe-6341",
+ "recorded_processor": "Record Node",
+ "recorded_processor_id": 101,
+ "num_channels": 4,
+ "channels": [
+ {
+ "channel_name": "AI0",
+ "description": "Analog Input channel from a NIDAQ device",
+ "identifier": "",
+ "history": "NI-DAQmx -> Record Control -> Merger -> Record Node",
+ "bit_volts": 0.0003051850944757462,
+ "units": ""
+ },
+ {
+ "channel_name": "AI1",
+ "description": "Analog Input channel from a NIDAQ device",
+ "identifier": "",
+ "history": "NI-DAQmx -> Record Control -> Merger -> Record Node",
+ "bit_volts": 0.0003051850944757462,
+ "units": ""
+ },
+ {
+ "channel_name": "AI2",
+ "description": "Analog Input channel from a NIDAQ device",
+ "identifier": "",
+ "history": "NI-DAQmx -> Record Control -> Merger -> Record Node",
+ "bit_volts": 0.0003051850944757462,
+ "units": ""
+ },
+ {
+ "channel_name": "AI3",
+ "description": "Analog Input channel from a NIDAQ device",
+ "identifier": "",
+ "history": "NI-DAQmx -> Record Control -> Merger -> Record Node",
+ "bit_volts": 0.0003051850944757462,
+ "units": ""
+ }
+ ]
+ }
+ ],
+ "events": [
+ {
+ "folder_name": "Neuropix-PXI-100.ProbeA-AP/TTL/",
+ "channel_name": "Neuropixels PXI Sync",
+ "description": "Status of SMA sync line on PXI card",
+ "identifier": "neuropixels.sync",
+ "sample_rate": 30000.0,
+ "type": "int16",
+ "source_processor": "Neuropix-PXI",
+ "stream_name": "ProbeA-AP",
+ "initial_state": 0
+ },
+ {
+ "folder_name": "Neuropix-PXI-100.ProbeA-LFP/TTL/",
+ "channel_name": "Neuropixels PXI Sync",
+ "description": "Status of SMA sync line on PXI card",
+ "identifier": "neuropixels.sync",
+ "sample_rate": 2500.0,
+ "type": "int16",
+ "source_processor": "Neuropix-PXI",
+ "stream_name": "ProbeA-LFP",
+ "initial_state": 0
+ },
+ {
+ "folder_name": "NI-DAQmx-104.PXIe-6341/TTL/",
+ "channel_name": "PXIe-6341Digital Input Line",
+ "description": "Digital Line from a NIDAQ device containing 24 inputs",
+ "identifier": "identifier",
+ "sample_rate": 30000.0,
+ "type": "int16",
+ "source_processor": "NI-DAQmx",
+ "stream_name": "PXIe-6341",
+ "initial_state": 0
+ },
+ {
+ "folder_name": "MessageCenter/",
+ "channel_name": "Messages",
+ "description": "Broadcasts messages from the MessageCenter",
+ "identifier": "messagecenter.events",
+ "sample_rate": 30000.0,
+ "type": "string",
+ "source_processor": "Message Center",
+ "stream_name": "ProbeA-AP"
+ }
+ ],
+ "spikes": []
+ }
diff --git a/tests/data/openephys/OE_Neuropix-PXI-NP2-4shank-binary/Record_Node_101/settings.xml b/tests/data/openephys/OE_Neuropix-PXI-NP2-4shank-binary/Record_Node_101/settings.xml
new file mode 100644
index 00000000..bdc39e6f
--- /dev/null
+++ b/tests/data/openephys/OE_Neuropix-PXI-NP2-4shank-binary/Record_Node_101/settings.xml
@@ -0,0 +1,1309 @@
+
+
+
+
+ 0.6.7
+ 8
+ 6 Mar 2025 14:48:00
+ Windows 10
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/tests/test_io/test_openephys.py b/tests/test_io/test_openephys.py
index 37002358..a28c6120 100644
--- a/tests/test_io/test_openephys.py
+++ b/tests/test_io/test_openephys.py
@@ -1,10 +1,15 @@
+import re
from pathlib import Path
import numpy as np
import pytest
+import json
+
from probeinterface import read_openephys
+from probeinterface.neuropixels_tools import _parse_openephys_settings, _select_openephys_probe_info
+from probeinterface.neuropixels_tools import _slice_catalogue_probe, build_neuropixels_probe, read_openephys_binary
from probeinterface.testing import validate_probe_dict
data_path = Path(__file__).absolute().parent.parent / "data" / "openephys"
@@ -37,34 +42,7 @@ def test_NP2_four_shank():
def test_NP_Ultra():
- # This dataset has 4 NP-Ultra probes (3 type 1, 1 type 2)
- probeA = read_openephys(
- data_path / "OE_Neuropix-PXI-NP-Ultra" / "settings.xml",
- probe_name="ProbeA",
- )
- probe_dict = probeA.to_dict(array_as_list=True)
- validate_probe_dict(probe_dict)
- assert probeA.get_shank_count() == 1
- assert probeA.get_contact_count() == 384
-
- probeB = read_openephys(
- data_path / "OE_Neuropix-PXI-NP-Ultra" / "settings.xml",
- probe_name="ProbeB",
- )
- probe_dict = probeB.to_dict(array_as_list=True)
- validate_probe_dict(probe_dict)
- assert probeB.get_shank_count() == 1
- assert probeB.get_contact_count() == 384
-
- probeF = read_openephys(
- data_path / "OE_Neuropix-PXI-NP-Ultra" / "settings.xml",
- probe_name="ProbeF",
- )
- probe_dict = probeF.to_dict(array_as_list=True)
- validate_probe_dict(probe_dict)
- assert probeF.get_shank_count() == 1
- assert probeF.get_contact_count() == 384
-
+ # ProbeD (NP1121) matches its catalogue geometry
probeD = read_openephys(
data_path / "OE_Neuropix-PXI-NP-Ultra" / "settings.xml",
probe_name="ProbeD",
@@ -77,6 +55,21 @@ def test_NP_Ultra():
assert len(np.unique(probeD.contact_positions[:, 0])) == 1
+def test_probe_part_number_mismatch_with_catalogue():
+ # ProbeA is labeled NP1100 but its positions don't match the NP1100 catalogue.
+ # See https://github.com/SpikeInterface/probeinterface/issues/407
+ expected_error = (
+ "Could not match electrode positions to catalogue probe 'NP1100'. "
+ "The probe part number in settings.xml may be incorrect. "
+ "See https://github.com/SpikeInterface/probeinterface/issues/407 for details."
+ )
+ with pytest.raises(ValueError, match=re.escape(expected_error)):
+ read_openephys(
+ data_path / "OE_Neuropix-PXI-NP-Ultra" / "settings.xml",
+ probe_name="ProbeA",
+ )
+
+
def test_NP1_subset():
# NP1 - 200 channels selected by recording_state in Record Node
probe_ap = read_openephys(data_path / "OE_Neuropix-PXI-subset" / "settings.xml", stream_name="ProbeA-AP")
@@ -355,6 +348,219 @@ def test_onix_np2():
assert probe_1.get_shank_count() == 4
+def _build_probe_from_settings(settings_file, **kwargs):
+ """Helper: parse settings, select probe, build from catalogue, slice."""
+ probes_info = _parse_openephys_settings(settings_file)
+ info = _select_openephys_probe_info(probes_info, **kwargs)
+ full_probe = build_neuropixels_probe(info["probe_part_number"])
+ return _slice_catalogue_probe(full_probe, info)
+
+
+def test_build_openephys_probe_no_wiring():
+ # Path A (SELECTED_ELECTRODES): ONIX dataset
+ probe_a = _build_probe_from_settings(data_path / "OE_ONIX-NP" / "settings_bankA.xml")
+ assert probe_a is not None
+ assert probe_a.device_channel_indices is None
+
+ # Path B (CHANNELS): Neuropix-PXI dataset
+ probe_b = _build_probe_from_settings(data_path / "OE_Neuropix-PXI" / "settings.xml")
+ assert probe_b is not None
+ assert probe_b.device_channel_indices is None
+
+
+def _assert_contact_ids_match_canonical_pattern(probe, label=""):
+ """Assert that a probe's contact_ids are a subset of the canonical IDs from build_neuropixels_probe."""
+ part_number = probe.annotations["part_number"]
+ catalogue = build_neuropixels_probe(part_number)
+ catalogue_ids = set(catalogue.contact_ids)
+ probe_ids = set(probe.contact_ids)
+ assert probe_ids.issubset(
+ catalogue_ids
+ ), f"{label} ({part_number}): contact_ids not in canonical pattern: {probe_ids - catalogue_ids}"
+
+
+def test_read_openephys_contact_ids_match_canonical_pattern():
+ """Verify that read_openephys contact_ids are consistent with SpikeGLX (issue #394).
+
+ For each dataset, the contact_ids produced by read_openephys must be a subset of
+ the contact_ids from build_neuropixels_probe(). This ensures that the same physical
+ electrode gets the same contact_id regardless of acquisition system (OpenEphys vs SpikeGLX).
+
+ The datasets from OE_Neuropix-PXI-NP-Ultra, OE_6.7_enabled_disabled_Neuropix-PXI, and
+ OE_Neuropix-PXI-QuadBase were identified as inconsistent cases in PR #383
+ (see https://github.com/SpikeInterface/probeinterface/pull/383#discussion_r2650588006).
+ """
+ # Path A (SELECTED_ELECTRODES): OE 1.0 dataset
+ probe = read_openephys(data_path / "OE_1.0_Neuropix-PXI-multi-probe" / "settings.xml", probe_name="ProbeA")
+ _assert_contact_ids_match_canonical_pattern(probe, "OE_1.0 ProbeA")
+
+ # Path B (CHANNELS): NP2 dataset (single shank)
+ probe = read_openephys(data_path / "OE_Neuropix-PXI" / "settings.xml")
+ _assert_contact_ids_match_canonical_pattern(probe, "NP2")
+
+ # Path B (CHANNELS): NP2 4-shank dataset (multi-shank)
+ probe = read_openephys(data_path / "OE_Neuropix-PXI-NP2-4shank" / "settings.xml")
+ _assert_contact_ids_match_canonical_pattern(probe, "NP2 4-shank")
+
+ # Path B (CHANNELS): NP-Opto dataset
+ probe = read_openephys(data_path / "OE_Neuropix-PXI-opto-with-sync" / "settings.xml")
+ _assert_contact_ids_match_canonical_pattern(probe, "NP-Opto")
+
+ # Path B (CHANNELS): OneBox NP-Ultra (NP1110) dataset
+ probe = read_openephys(data_path / "OE_OneBox-NP-Ultra" / "settings.xml")
+ _assert_contact_ids_match_canonical_pattern(probe, "OneBox NP1110")
+
+ # Datasets identified as inconsistent in PR #383 discussion:
+
+ # NP-Ultra: NP1100 probes error due to catalogue mismatch (see issue #407), NP1121 should match
+ probe = read_openephys(data_path / "OE_Neuropix-PXI-NP-Ultra" / "settings.xml", probe_name="ProbeD")
+ _assert_contact_ids_match_canonical_pattern(probe, "NP-Ultra ProbeD")
+
+ # enabled/disabled: NP1 and NP2014
+ probe = read_openephys(
+ data_path / "OE_6.7_enabled_disabled_Neuropix-PXI" / "settings_enabled-enabled.xml",
+ probe_name="ProbeA",
+ )
+ _assert_contact_ids_match_canonical_pattern(probe, "enabled-enabled ProbeA")
+
+ probe = read_openephys(
+ data_path / "OE_6.7_enabled_disabled_Neuropix-PXI" / "settings_enabled-enabled.xml",
+ probe_name="ProbeB",
+ )
+ _assert_contact_ids_match_canonical_pattern(probe, "enabled-enabled ProbeB")
+
+ # QuadBase: NP2020 (4 probes)
+ for i in range(4):
+ probe = read_openephys(data_path / "OE_Neuropix-PXI-QuadBase" / "settings.xml", probe_name=f"ProbeC-{i+1}")
+ _assert_contact_ids_match_canonical_pattern(probe, f"QuadBase ProbeC-{i+1}")
+
+
+def test_read_openephys_backward_compatible():
+ # Verify read_openephys still produces valid probes with device_channel_indices set
+ # Path B dataset
+ probe = read_openephys(data_path / "OE_Neuropix-PXI" / "settings.xml")
+ probe_dict = probe.to_dict(array_as_list=True)
+ validate_probe_dict(probe_dict)
+ assert probe.device_channel_indices is not None
+ assert len(probe.device_channel_indices) == probe.get_contact_count()
+ assert np.array_equal(probe.device_channel_indices, np.arange(probe.get_contact_count()))
+
+ # Path A dataset
+ probe_a = read_openephys(data_path / "OE_1.0_Neuropix-PXI-multi-probe" / "settings.xml", probe_name="ProbeA")
+ probe_dict = probe_a.to_dict(array_as_list=True)
+ validate_probe_dict(probe_dict)
+ assert probe_a.device_channel_indices is not None
+ assert np.array_equal(probe_a.device_channel_indices, np.arange(probe_a.get_contact_count()))
+
+
+def _read_oebin_electrode_indices(oebin_file, stream_name):
+ """Read electrode_index metadata from an oebin file for a given stream."""
+ with open(oebin_file) as f:
+ oebin = json.load(f)
+ for cs in oebin.get("continuous", []):
+ folder_name = cs.get("folder_name", "")
+ if stream_name in folder_name or folder_name in stream_name:
+ indices = []
+ for ch in cs.get("channels", []):
+ for m in ch.get("channel_metadata", []):
+ if m.get("name") == "electrode_index":
+ indices.append(m["value"][0])
+ return indices
+ return []
+
+
+def test_read_openephys_binary_wiring():
+ """Verify wiring invariant: for each contact, the oebin's electrode_index at the
+ assigned binary column matches the contact's electrode index."""
+ settings = data_path / "OE_Neuropix-PXI-NP1-binary" / "Record_Node_101" / "settings.xml"
+ oebin = (
+ data_path / "OE_Neuropix-PXI-NP1-binary" / "Record_Node_101" / "experiment1" / "recording1" / "structure.oebin"
+ )
+ stream_name = "Neuropix-PXI-100.ProbeA"
+
+ probe = read_openephys_binary(settings, oebin, stream_name)
+
+ assert probe.get_contact_count() == 384
+ assert probe.device_channel_indices is not None
+
+ # Wiring invariant
+ oebin_electrode_indices = _read_oebin_electrode_indices(oebin, stream_name)
+ for i, contact_id in enumerate(probe.contact_ids):
+ electrode_index = int(contact_id.split("e")[-1])
+ column = probe.device_channel_indices[i]
+ assert oebin_electrode_indices[column] == electrode_index, (
+ f"Contact {i} ({contact_id}): expected electrode_index {electrode_index} "
+ f"at column {column}, got {oebin_electrode_indices[column]}"
+ )
+
+
+def test_read_openephys_binary_contact_ids_match_canonical_pattern():
+ """Verify that read_openephys_binary contact_ids are consistent with SpikeGLX (issue #394)."""
+ # NP2014 single-shank
+ probe = read_openephys_binary(
+ data_path / "OE_Neuropix-PXI-NP1-binary" / "Record_Node_101" / "settings.xml",
+ data_path / "OE_Neuropix-PXI-NP1-binary" / "Record_Node_101" / "experiment1" / "recording1" / "structure.oebin",
+ "Neuropix-PXI-100.ProbeA",
+ )
+ _assert_contact_ids_match_canonical_pattern(probe, "NP2014 binary")
+
+ # NP1032 4-shank
+ probe = read_openephys_binary(
+ data_path / "OE_Neuropix-PXI-NP2-4shank-binary" / "Record_Node_101" / "settings.xml",
+ data_path
+ / "OE_Neuropix-PXI-NP2-4shank-binary"
+ / "Record_Node_101"
+ / "experiment4"
+ / "recording2"
+ / "structure.oebin",
+ "Neuropix-PXI-100.ProbeA-AP",
+ )
+ _assert_contact_ids_match_canonical_pattern(probe, "NP1032 binary")
+
+
+def test_read_openephys_binary_sync_channel_filtered():
+ """Verify that the oebin sync channel (385 channels) is filtered, producing 384 contacts."""
+ settings = data_path / "OE_Neuropix-PXI-NP2-4shank-binary" / "Record_Node_101" / "settings.xml"
+ oebin = (
+ data_path
+ / "OE_Neuropix-PXI-NP2-4shank-binary"
+ / "Record_Node_101"
+ / "experiment4"
+ / "recording2"
+ / "structure.oebin"
+ )
+
+ probe = read_openephys_binary(settings, oebin, "Neuropix-PXI-100.ProbeA-AP")
+ assert probe.get_contact_count() == 384
+
+
+def test_read_openephys_binary_plugin_channel_key():
+ """Verify that plugin_channel_key annotation is set."""
+ settings = data_path / "OE_Neuropix-PXI-NP1-binary" / "Record_Node_101" / "settings.xml"
+ oebin = (
+ data_path / "OE_Neuropix-PXI-NP1-binary" / "Record_Node_101" / "experiment1" / "recording1" / "structure.oebin"
+ )
+ stream_name = "Neuropix-PXI-100.ProbeA"
+
+ probe = read_openephys_binary(settings, oebin, stream_name)
+ keys = probe.contact_annotations.get("plugin_channel_key", None)
+ assert keys is not None, "plugin_channel_key annotation not set"
+ assert len(keys) == probe.get_contact_count()
+ # Keys should be like "CH0", "CH1", etc.
+ assert all(k.startswith("CH") for k in keys)
+
+
+def test_read_openephys_binary_no_matching_stream():
+ """Verify error when stream_name doesn't match any oebin stream."""
+ settings = data_path / "OE_Neuropix-PXI-NP1-binary" / "Record_Node_101" / "settings.xml"
+ oebin = (
+ data_path / "OE_Neuropix-PXI-NP1-binary" / "Record_Node_101" / "experiment1" / "recording1" / "structure.oebin"
+ )
+
+ with pytest.raises(ValueError, match="does not match any available probe"):
+ read_openephys_binary(settings, oebin, "NonExistentStream")
+
+
if __name__ == "__main__":
# test_multiple_probes()
# test_NP_Ultra()