diff --git a/src/silverlabnwb/header.py b/src/silverlabnwb/header.py index cfdf661..e35d10c 100644 --- a/src/silverlabnwb/header.py +++ b/src/silverlabnwb/header.py @@ -9,6 +9,12 @@ class LabViewVersions(Enum): pre2018 = "pre-2018 (original)" v231 = "2.3.1" + v300 = "3.0.0" + + @property + def is_legacy(self): + """Return whether this version should trigger legacy behaviour.""" + return self is self.pre2018 class LabViewHeader(metaclass=abc.ABCMeta): @@ -63,6 +69,8 @@ def from_file(cls, filename): else: if version == '2.3.1': return LabViewHeader231(fields, parsed_fields) + elif version == '3.0.0': + return LabViewHeader300(fields, parsed_fields) else: raise ValueError('Unsupported LabView version {}.'.format(version)) @@ -140,6 +148,11 @@ def get_raw_fields(self): """ return self._raw_fields + @property + def allows_variable_rois(self): + """Check whether ROIs with variable shape or resolution are allowed.""" + return False # by default (in older versions), they are not + class LabViewHeaderPre2018(LabViewHeader): @@ -170,7 +183,7 @@ def _imaging_section(self): return self["GLOBAL PARAMETERS"] -class LabViewHeader231(LabViewHeader): +class LabViewHeaderPost2018(LabViewHeader): property_names = { "frame_size": "Frame Size", @@ -182,7 +195,7 @@ class LabViewHeader231(LabViewHeader): "gain_green": "pmt 2", } - # In this version of LabView, the trial times are stored in their own + # In these versions of LabView, the trial times are stored in their own # (misleadingly titled) section of the header. trial_times_section = 'Intertrial FIFO Times' @@ -190,10 +203,6 @@ def __init__(self, fields, processed_fields): super().__init__(fields, processed_fields) self._parse_trial_times() - @property - def version(self): - return LabViewVersions.v231 - def _determine_imaging_mode(self): volume_imaging = self['IMAGING MODES']['Volume Imaging'] functional_imaging = self['IMAGING MODES']['Functional Imaging'] @@ -216,8 +225,8 @@ def _determine_imaging_mode(self): ' or "Functional Imaging" must be true.') def _imaging_section(self): - # In LabView version 2.3.1, imaging parameters are stored under the - # relevant imaging mode section. + # In LabView version 2.3.1 and newer, imaging parameters are stored + # under the relevant imaging mode section. imaging_section_name = ("VOLUME IMAGING" if self.imaging_mode is Modes.volume else "FUNCTIONAL IMAGING") @@ -253,3 +262,20 @@ def determine_trial_times(self): end = None # determine final 'end' later from speed data trial_times.append((start, end)) return trial_times + + +class LabViewHeader231(LabViewHeaderPost2018): + @property + def version(self): + return LabViewVersions.v231 + + +class LabViewHeader300(LabViewHeaderPost2018): + @property + def version(self): + return LabViewVersions.v300 + + @property + def allows_variable_rois(self): + return (self._imaging_section()['Variable Length'] == 'TRUE' + or self._imaging_section()['Variable Resolution'] == 'TRUE') diff --git a/src/silverlabnwb/metadata.py b/src/silverlabnwb/metadata.py index 58f704b..5582696 100644 --- a/src/silverlabnwb/metadata.py +++ b/src/silverlabnwb/metadata.py @@ -3,7 +3,7 @@ Handles loading the metadata YAML files. ''' -import collections +import collections.abc import os import appdirs @@ -71,7 +71,7 @@ def beautify_comment(comment_token): def read_comments(settings): comments = {} for k, v in settings.items(): - if isinstance(v, collections.Mapping): + if isinstance(v, collections.abc.Mapping): comments[k] = read_comments(v) elif isinstance(v, list): comments[k] = [read_comments(entry) for entry in v] @@ -121,7 +121,7 @@ def recursive_dict_update(base_settings, new_settings): recursive base_settings.update(new_settings). """ for k, v in new_settings.items(): - if isinstance(v, collections.Mapping): + if isinstance(v, collections.abc.Mapping): base_settings[k] = recursive_dict_update(base_settings.get(k, {}), v) else: base_settings[k] = new_settings[k] @@ -138,7 +138,7 @@ def strip_strings(settings): for k, v in settings.items(): if isinstance(v, str): result[k] = v.strip() - elif isinstance(v, collections.Mapping): + elif isinstance(v, collections.abc.Mapping): result[k] = strip_strings(v) else: result[k] = v diff --git a/src/silverlabnwb/metadata.yaml b/src/silverlabnwb/metadata.yaml index 07bfba5..6297cfd 100644 --- a/src/silverlabnwb/metadata.yaml +++ b/src/silverlabnwb/metadata.yaml @@ -17,6 +17,8 @@ people: Harsha: name: Harsha Gurnani orcid: 0000-0001-6383-3104 + Sameer: + name: Sameer Punde experiments: @@ -114,4 +116,7 @@ sessions: Harsha: # Should match a user id in the 'people' section description: One or two sentences describing the experiment and data in the file. experiment: template # Should match an experiment defined above + Sameer: # Should match a user id in the 'people' section + description: One or two sentences describing the experiment and data in the file. + experiment: template # Should match an experiment defined above diff --git a/src/silverlabnwb/nwb_file.py b/src/silverlabnwb/nwb_file.py index 3172f57..ce49093 100644 --- a/src/silverlabnwb/nwb_file.py +++ b/src/silverlabnwb/nwb_file.py @@ -19,7 +19,8 @@ from . import metadata from .header import LabViewHeader, LabViewVersions from .imaging import Modes -from .timings import LabViewTimings231, LabViewTimingsPre2018 +from .rois import RoiReader +from .timings import LabViewTimingsPost2018, LabViewTimingsPre2018 try: import av @@ -184,6 +185,8 @@ def rel(file_name): self.read_user_config() header_fields = self.parse_experiment_header_ini(rel('Experiment Header.ini')) speed_data, expt_start_time = self.read_speed_data(rel('Speed_Data/Speed data 001.txt')) + if expt_start_time is None: + expt_start_time = pd.Timestamp.now() # FIXME get experiment start time from header if not present in speed data localized_start_time = expt_start_time.tz_localize(timezone('Europe/London')) # Create the NWB file extensions = ["e-labview.py", "e-pixeltimes.py"] @@ -247,13 +250,17 @@ def rel(file_name): """Return the path of a file name relative to the Labview folder.""" return os.path.join(folder_path, file_name) - self.add_speed_data(speed_data, expt_start_time) + if speed_data is not None: + self.add_speed_data(speed_data, expt_start_time) self.determine_trial_times() self.add_stimulus() + roi_path = rel('ROI.dat') + self.log('Loading ROI locations from {}', roi_path) + self.roi_data = self.roi_reader.read_roi_table(roi_path) self.read_cycle_relative_times(folder_path) self.read_zplane(rel('Zplane_Pockels_Values.dat')) self.read_zstack(rel('Zstack Images')) - self.add_rois(rel('ROI.dat')) + self.add_rois() self.read_functional_data(rel('Functional imaging TDMS data files')) video_folder = os.path.join(os.path.dirname(folder_path), folder_name + ' VidRec') if os.path.isdir(video_folder): @@ -356,10 +363,12 @@ def parse_experiment_header_ini(self, filename): self.imaging_info = header.get_imaging_information() # TODO this should probably go into a determine_trial_times function # that hides the handling of the different LabView versions. - if self.labview_version is LabViewVersions.v231: + if not self.labview_version.is_legacy: self.determine_trial_times_from_header(header) # Use the user specified in the header to select default session etc. metadata self.record_metadata(header['LOGIN']['User']) + # Determine how to read the ROIs based on the header information + self.roi_reader = RoiReader.get_reader(header) return header.get_raw_fields() def record_metadata(self, user): @@ -446,17 +455,20 @@ def read_speed_data(self, file_name): Pandas data table, and initial_time is the experiment start time, which sets the session_start_time for the NWB file. """ - self.log('Loading speed data from {}', file_name) - assert os.path.isfile(file_name) - speed_data = pd.read_csv(file_name, sep='\t', header=None, usecols=[0, 1, 2, 3], index_col=0, - names=('Date', 'Time', 'Trial time', 'Speed'), - dtype={'Trial time': np.int32, 'Speed': np.float32}, - parse_dates=[[0, 1]], # Combine first two cols - dayfirst=True, infer_datetime_format=True, - memory_map=True) - initial_offset = pd.Timedelta(microseconds=speed_data['Trial time'][0]) - initial_time = speed_data.index[0] - initial_offset - return speed_data, initial_time + if os.path.isfile(file_name): + self.log('Loading speed data from {}', file_name) + speed_data = pd.read_csv(file_name, sep='\t', header=None, usecols=[0, 1, 2, 3], index_col=0, + names=('Date', 'Time', 'Trial time', 'Speed'), + dtype={'Trial time': np.int32, 'Speed': np.float32}, + parse_dates=[[0, 1]], # Combine first two cols + dayfirst=True, infer_datetime_format=True, + memory_map=True) + initial_offset = pd.Timedelta(microseconds=speed_data['Trial time'][0]) + initial_time = speed_data.index[0] - initial_offset + return speed_data, initial_time + else: + self.log('No speed data found.') + return None, None def add_speed_data(self, speed_data, initial_time): """Add acquired speed data the the NWB file. @@ -509,26 +521,33 @@ def determine_trial_times(self): There is a short interval between trials which still has speed data recorded, so it's the second reset which marks the start of the next trial. """ - speed_data_ts = self.nwb_file.get_acquisition('speed_data') - if self.labview_version is LabViewVersions.pre2018: - self.log('Calculating trial times from speed data') - trial_times_ts = self.nwb_file.get_acquisition('trial_times') - trial_times = np.array(trial_times_ts.data) - # Prepend -1 so we pick up the first trial start - # Append -1 in case there isn't a reset recorded at the end of the last trial - deltas = np.ediff1d(trial_times, to_begin=-1, to_end=-1) - # Find resets and pair these up to mark start & end points - reset_idxs = (deltas < 0).nonzero()[0].copy() - assert reset_idxs.ndim == 1 - num_trials = reset_idxs.size // 2 # Drop the extra reset added at the end if - reset_idxs = np.resize(reset_idxs, (num_trials, 2)) # it's not needed - reset_idxs[:, 1] -= 1 # Select end of previous segment, not start of next - # Index the timestamps to find the actual start & end times of each trial. The start - # time is calculated using the offset value in the first reading within the trial. - rel_times = self.get_times(trial_times_ts) - epoch_times = rel_times[reset_idxs] - epoch_times[:, 0] -= trial_times[reset_idxs[:, 0]] * 1e-6 - elif self.labview_version is LabViewVersions.v231: + try: # see if there was speed data in LabView, in which case it's already in our file. + speed_data_ts = self.nwb_file.get_acquisition('speed_data') + except KeyError: # otherwise, there was no speed data in the LabView folder. + speed_data_ts = None + if self.labview_version.is_legacy: + if speed_data_ts is not None: + self.log('Calculating trial times from speed data') + trial_times_ts = self.nwb_file.get_acquisition('trial_times') + trial_times = np.array(trial_times_ts.data) + # Prepend -1 so we pick up the first trial start + # Append -1 in case there isn't a reset recorded at the end of the last trial + deltas = np.ediff1d(trial_times, to_begin=-1, to_end=-1) + # Find resets and pair these up to mark start & end points + reset_idxs = (deltas < 0).nonzero()[0].copy() + assert reset_idxs.ndim == 1 + num_trials = reset_idxs.size // 2 # Drop the extra reset added at the end if + reset_idxs = np.resize(reset_idxs, (num_trials, 2)) # it's not needed + reset_idxs[:, 1] -= 1 # Select end of previous segment, not start of next + # Index the timestamps to find the actual start & end times of each trial. The start + # time is calculated using the offset value in the first reading within the trial. + rel_times = self.get_times(trial_times_ts) + epoch_times = rel_times[reset_idxs] + epoch_times[:, 0] -= trial_times[reset_idxs[:, 0]] * 1e-6 + self.trial_times = epoch_times + else: + raise ValueError("Legacy code relies on having speed data to compute trial times.") + else: epoch_times = self.trial_times # Create the epochs in the NWB file # Note that we cannot pass the actual start time to nwb_file.add_epoch since it @@ -547,9 +566,12 @@ def determine_trial_times(self): epoch_name=trial, start_time=start_time if i == 0 else start_time + 1e-9, stop_time=stop_time + 1e-9, - timeseries=[speed_data_ts]) + timeseries=[speed_data_ts] if speed_data_ts is not None else []) # We also record exact start & end times in the trial table, since our epochs - # correspond to trials. + # correspond to trials. We use the two tables slightly differently: + # trials hold the times directly as recorded (or inferred, in older versions) + # whereas epochs include a small offset so that pynwb can segment timeseries + # correctly. self.nwb_file.add_trial(start_time=start_time, stop_time=stop_time) self._write() @@ -576,10 +598,10 @@ def add_stimulus(self): # TODO We can maybe build puffs and times a bit more efficiently or # in fewer steps, although it probably won't make a huge difference # (eg we can now get all the times with a single indexing expression) - num_epochs = len(self.nwb_file.epochs) - puffs = [u'puff'] * num_epochs + num_trials = len(self.trial_times) + puffs = [u'puff'] * num_trials times = np.zeros((len(puffs),), dtype=np.float64) - for i in range(num_epochs): + for i in range(num_trials): times[i] = self.nwb_file.epochs[i, 'start_time'] + stim['trial_time_offset'] attrs['timestamps'] = times attrs['data'] = puffs @@ -602,20 +624,20 @@ def rel(file_name): roi_path = rel('ROI.dat') assert os.path.isfile(roi_path) - if self.labview_version is LabViewVersions.pre2018: + if self.labview_version.is_legacy: file_path = rel('Single cycle relative times.txt') assert os.path.isfile(file_path) timings = LabViewTimingsPre2018(relative_times_path=file_path, - roi_path=roi_path, + roi_reader=self.roi_reader, dwell_time=self.imaging_info.dwell_time / 1e6) - elif self.labview_version is LabViewVersions.v231: + elif self.labview_version is LabViewVersions.v231 or self.labview_version is LabViewVersions.v300: file_path = rel('Single cycle relative times_HW.txt') assert os.path.isfile(file_path) - timings = LabViewTimings231(relative_times_path=file_path, - roi_path=roi_path, - n_cycles_per_trial=self.imaging_info.cycles_per_trial, - n_trials=len(self.trial_times), - dwell_time=self.imaging_info.dwell_time / 1e6) + timings = LabViewTimingsPost2018(relative_times_path=file_path, + roi_reader=self.roi_reader, + n_cycles_per_trial=self.imaging_info.cycles_per_trial, + n_trials=len(self.trial_times), + dwell_time=self.imaging_info.dwell_time / 1e6) else: raise ValueError('Unsupported LabView version for timings {}.'.format(self.labview_version)) self.raw_pixel_time_offsets = timings.pixel_time_offsets @@ -633,10 +655,10 @@ def read_functional_data(self, folder_path): pixels in all ROIs for all time within that trial, as a single 1d array. Within this array, we have data first for all pixels in the first ROI at time 0, then the second ROI at time 0, and so on through all ROIs, before moving to data from the next cycle. For 2d ROIs, it - scans first over the X dimension then over Y. + scans first over the X dimension (the pixels in the miniscan) then over Y (the lines). While it might seem that this data is well suited to become RoiResponseSeries within - /processing/Acquired_ROIs/Fluoresence, that time series type assumes a single value per + /processing/Acquired_ROIs/Fluorescence, that time series type assumes a single value per ROI per time, which doesn't support storing raw data from multi-pixel ROIs. Instead, the data will be stored within /acquisition, in TwoPhotonSeries named like ROI_NNN_Green, where NNN is the global (not per-imaging-plane) ROI number. @@ -657,14 +679,13 @@ def read_functional_data(self, folder_path): self.log('Loading functional data from {}', folder_path) assert os.path.isdir(folder_path) # Figure out timestamps, measured in seconds - epoch_names = self.nwb_file.epochs[:, 'epoch_name'] - trials = [int(s[6:]) for s in epoch_names] # names start with 'trial_' + num_trials = len(self.trial_times) cycles_per_trial = self.imaging_info.cycles_per_trial - num_times = cycles_per_trial * len(epoch_names) + num_times = cycles_per_trial * num_trials single_trial_times = np.arange(cycles_per_trial) * self.cycle_time times = np.zeros((num_times,), dtype=float) # TODO Perhaps this loop can be vectorised - for i in range(len(epoch_names)): + for i in range(num_trials): trial_start = self.nwb_file.epochs[i, 'start_time'] times[i * cycles_per_trial: (i + 1) * cycles_per_trial] = single_trial_times + trial_start @@ -686,6 +707,9 @@ def read_functional_data(self, folder_path): gains = self.imaging_info.gains # Iterate over ROIs, which are nested inside each imaging plane section all_rois = {} + # TODO Could we get this another way? Or perhaps store it in the RoiReader? + num_rois = sum(len(plane_rois) for plane_rois in self.roi_mapping) + all_roi_dimensions = np.zeros((num_rois, 2), dtype=np.int32) seg_iface = self.nwb_file.processing['Acquired_ROIs'].get("ImageSegmentation") for plane_name, plane in seg_iface.plane_segmentations.items(): self.log(' Defining ROIs for plane {}', plane_name) @@ -695,14 +719,15 @@ def read_functional_data(self, folder_path): # https://github.com/NeurodataWithoutBorders/pynwb/issues/673 for roi_num, roi_ind in self.roi_mapping[plane_name].items(): roi_name = 'ROI_{:03d}'.format(roi_num) + roi_dimensions = plane[roi_ind, 'dimensions'] + all_roi_dimensions[roi_num - 1, :] = roi_dimensions if roi_num not in all_rois.keys(): all_rois[roi_num] = {} for ch, channel in {'A': 'Red', 'B': 'Green'}.items(): # Set zero data for now; we'll read the real data later # TODO: The TDMS uses 64 bit floats; we may not really need that precision! # The exported data seems to be rounded to unsigned ints. Issue #15. - roi_dimensions = plane[roi_ind, 'dimensions'] - data_shape = np.concatenate((roi_dimensions, [num_times]))[::-1] + data_shape = np.concatenate((all_roi_dimensions[roi_num - 1, :], [num_times]))[::-1] data = np.zeros(data_shape, dtype=np.float64) # Create the timeseries object and fill in standard metadata ts_name = 'ROI_{:03d}_{}'.format(roi_num, channel) @@ -712,7 +737,7 @@ def read_functional_data(self, folder_path): data_attrs['format'] = 'raw' pixel_size_in_m = self.imaging_info.field_of_view / 1e6 / self.imaging_info.frame_size data_attrs['field_of_view'] = roi_dimensions * pixel_size_in_m - data_attrs['imaging_plane'] = plane.imaging_plane + data_attrs['imaging_plane'] = self.roi_reader.get_roi_imaging_plane(roi_num, plane_name, self) data_attrs['pmt_gain'] = gains[channel] data_attrs['scan_line_rate'] = 1 / self.cycle_time # TODO The below are not supported, so will require an extension @@ -745,13 +770,7 @@ def read_functional_data(self, folder_path): # series_ref_in_epoch.make_group('timeseries', ts) # We need to write the zero-valued timeseries before editing them! self._write() - # The shape to put the TDMS data in for more convenient indexing - # TODO Are the roi_dimensions always the same across ROIs? (it seems that - # this was the implication from the previous version of the code, as it - # always used the last value of roi_dimensions - but that may be a bug?) - ch_data_shape = np.concatenate((roi_dimensions, - [len(all_rois), cycles_per_trial]))[::-1] - self._write_roi_data(all_rois, len(trials), cycles_per_trial, ch_data_shape, folder_path) + self._write_roi_data(all_rois, num_trials, cycles_per_trial, all_roi_dimensions, folder_path) def add_custom_silverlab_data(self, include_opto=True): metadata_class = get_class('SilverLabMetaData', 'silverlab_extended_schema') @@ -779,8 +798,14 @@ def add_custom_silverlab_data(self, include_opto=True): self._write() def _write_roi_data(self, all_rois, num_trials, cycles_per_trial, - ch_data_shape, folder_path): + all_roi_dimensions_pixels, folder_path): """Edit the NWB file directly to add the real ROI data.""" + # The number of pixels for each ROI for one cycle, and for all ROIs + all_roi_pixels = all_roi_dimensions_pixels.prod(axis=1) + total_pixels = all_roi_pixels.sum() + # How many pixels do the previous ROIs take up within a cycle's data? + # We'll need this to see where to start reading for a particular ROI. + previous_pixels = np.concatenate(([0], all_roi_pixels[:-1].cumsum())) with h5py.File(self.nwb_path, 'a') as out_file: # Iterate over trials, reading data from the TDMS file for each for trial_index in range(num_trials): @@ -793,13 +818,18 @@ def _write_roi_data(self, all_rois, num_trials, cycles_per_trial, for ch, channel in {'0': 'Red', '1': 'Green'}.items(): # Reshape the TDMS data into an nd array # TODO: Consider precision: the round() here is to match the exported data... - ch_data = np.round(tdms_file.channel_data('Functional Imaging Data', - 'Channel {} Data'.format(ch))) - ch_data = ch_data.reshape(ch_data_shape) + ch_data = np.round(tdms_file['Functional Imaging Data'][f'Channel {ch} Data'].data) # Copy each ROI's data into the NWB for roi_num, data_paths in all_rois.items(): + roi_shape = all_roi_dimensions_pixels[roi_num - 1, :] + # Find where each chunk of the ROI's data (for one cycle) + # starts and stops, and build up an array of indices. + starts = np.arange(cycles_per_trial) * total_pixels + previous_pixels[roi_num-1] + stops = starts + all_roi_pixels[roi_num-1] + inds = np.array([np.arange(start, stop) for (start, stop) in zip(starts, stops)]) + roi_ch_data = ch_data[inds].reshape(np.concatenate((roi_shape, [cycles_per_trial]))[::-1]) channel_path = out_file[data_paths[channel]] - channel_path[time_segment, ...] = ch_data[:, roi_num - 1, ...] + channel_path[time_segment, ...] = roi_ch_data # Update our reference to the NWB file, since it's now out of sync # We need to keep a reference to the IO object, as the file contents are # not read until needed @@ -947,7 +977,7 @@ def read_zstack(self, zstack_folder): self.zstack[plane_name][channel] = group_name self._write() - def add_rois(self, roi_path): + def add_rois(self): """Add the locations of ROIs as an ImageSegmentation module. We read a ROI.dat file to determine ROI locations. This has many tab-separated columns: @@ -968,29 +998,9 @@ def add_rois(self, roi_path): then sort. It's less of an issue with the timeseries ROI data, since that's in groups organised by ROI number and channel name, so we can iterate there. Issue #16. """ - self.log('Loading ROI locations from {}', roi_path) - assert os.path.isfile(roi_path) - roi_data = pd.read_csv( - roi_path, sep='\t', header=0, index_col=False, dtype=np.float16, - converters={'Z start': np.float64, 'Z stop': np.float64}, memory_map=True) - # Rename the columns so that we can use them as identifiers later on - column_mapping = { - 'ROI index': 'roi_index', 'Pixels in ROI': 'num_pixels', - 'X start': 'x_start', 'Y start': 'y_start', 'Z start': 'z_start', - 'X stop': 'x_stop', 'Y stop': 'y_stop', 'Z stop': 'z_stop', - 'Laser Power (%)': 'laser_power', 'ROI Time (ns)': 'roi_time_ns', - 'Angle (deg)': 'angle_deg', 'Composite ID': 'composite_id', - 'Number of lines': 'num_lines', 'Frame Size': 'frame_size', - 'Zoom': 'zoom', 'ROI group ID': 'roi_group_id' - } - roi_data.rename(columns=column_mapping, inplace=True) module = self.nwb_file.create_processing_module( 'Acquired_ROIs', 'ROI locations and acquired fluorescence readings made directly by the AOL microscope.') - # Convert some columns to int - roi_data = roi_data.astype( - {'x_start': np.uint16, 'x_stop': np.uint16, 'y_start': np.uint16, 'y_stop': np.uint16, - 'num_pixels': int}) seg_iface = ImageSegmentation() module.add(seg_iface) self._write() @@ -998,10 +1008,10 @@ def add_rois(self, roi_path): self.custom_silverlab_dict['imaging_mode'] = self.mode.name if self.mode is Modes.pointing: # Sanity check that each ROI is a single pixel - assert np.all(roi_data.num_pixels == 1) + assert np.all(self.roi_data.num_pixels == 1) # Figure out which plane each ROI is in - assert (roi_data['z_start'] == roi_data['z_stop']).all() # Planes are flat in Z - grouped = roi_data.groupby('z_start', sort=False) + assert (self.roi_data['z_start'] == self.roi_data['z_stop']).all() # Planes are flat in Z + grouped = self.roi_data.groupby('z_start', sort=False) # Iterate over planes and define ROIs self.roi_mapping = {} # mapping from ROI ID to row index (used to look up ROIs) for plane_z, roi_group in grouped: @@ -1015,9 +1025,8 @@ def add_rois(self, roi_path): ) # Specify the non-standard data we will be storing for each ROI, # which includes all the raw data fields from the original file - plane.add_column('dimensions', 'Dimensions of the ROI') - for old_name, new_name in column_mapping.items(): - plane.add_column(new_name, old_name) + for column_name, column_description in self.roi_reader.columns.items(): + plane.add_column(column_name, column_description) index = 0 # index of the row as it will be stored in the ROI table self.roi_mapping[plane_name] = {} for row in roi_group.itertuples(): @@ -1027,24 +1036,23 @@ def add_rois(self, roi_path): # plane coordinates run from 0 to frame_size, so that's easy to compute. # The third dimension in the pixels array indicates weight. pixels = np.zeros((row.num_pixels, 3), dtype=np.uint16) - # Pixels are located contiguously from start to stop coordinates. - num_x_pixels = row.x_stop - row.x_start - num_y_pixels = row.y_stop - row.y_start + num_lines, num_pixels_per_line = self.roi_reader.get_lines_pixels(roi_id-1) if self.mode is Modes.pointing: assert row.num_pixels == 1, 'Unexpectedly large ROI in pointing mode' - num_x_pixels = num_y_pixels = 1 - assert row.num_pixels == num_x_pixels * num_y_pixels, ( - 'ROI is not rectangular: {} != {} * {}'.format( - row.num_pixels, num_x_pixels, num_y_pixels)) + num_lines = num_pixels_per_line = 1 + assert row.num_pixels == num_lines * num_pixels_per_line, ( + 'ROI is not rectangular: {} != {} * {}'.format( + row.num_pixels, num_lines, num_pixels_per_line)) # Record the ROI dimensions for ease of lookup when adding functional data - dimensions = np.array([num_x_pixels, num_y_pixels], dtype=np.int32) + x_range, y_range = self.roi_reader.get_x_y_range(roi_id-1) for i in range(row.num_pixels): - pixels[i, 0] = row.x_start + (i % num_x_pixels) - pixels[i, 1] = row.y_start + (i // num_x_pixels) + pixels[i, 0] = row.x_start + (i % x_range) + pixels[i, 1] = row.y_start + (i // x_range) pixels[i, 2] = 1 # weight for this pixel + dimensions = np.array([num_pixels_per_line, num_lines], dtype=np.int32) plane.add_roi(id=roi_id, pixel_mask=[tuple(r) for r in pixels.tolist()], dimensions=dimensions, - **{field: getattr(row, field) for field in column_mapping.values()}) + **self.roi_reader.get_row_attributes(row)) self.roi_mapping[plane_name][roi_id] = index index += 1 self._write() diff --git a/src/silverlabnwb/rois.py b/src/silverlabnwb/rois.py new file mode 100644 index 0000000..7dfd116 --- /dev/null +++ b/src/silverlabnwb/rois.py @@ -0,0 +1,209 @@ +"""Functionality for handling Regions of Interest in different versions.""" + +import abc +import os + +import numpy as np +import pandas as pd + +from .header import LabViewVersions +from .imaging import Modes + + +class RoiReader(metaclass=abc.ABCMeta): + """A class for reading ROI information. + + This class provides some base functionality, but specific implementations + are given in subclasses. Those subclasses should not be instantiated + directly, but through this class's get_reader method. + """ + base_column_mapping = { + 'ROI index': 'roi_index', 'Pixels in ROI': 'num_pixels', + 'X start': 'x_start', 'Y start': 'y_start', 'Z start': 'z_start', + 'X stop': 'x_stop', 'Y stop': 'y_stop', 'Z stop': 'z_stop', + 'Laser Power (%)': 'laser_power', 'ROI Time (ns)': 'roi_time_ns', + 'Angle (deg)': 'angle_deg', 'Composite ID': 'composite_id', + 'Number of lines': 'num_lines', 'Frame Size': 'frame_size', + 'Zoom': 'zoom', 'ROI group ID': 'roi_group_id' + } + # Some columns should be converted to int, others need more than 16 bits + base_type_mapping = { + 'Z start': np.float64, 'Z stop': np.float64, 'Pixels in ROI': np.float32 + } + base_type_conversion_post_read = { + 'x_start': np.uint16, 'x_stop': np.uint16, + 'y_start': np.uint16, 'y_stop': np.uint16, + 'num_pixels': int, 'num_lines': int + } + + @classmethod + def get_reader(cls, header): + """Get an appropriate ROI reader based on the header.""" + if header.version in [LabViewVersions.pre2018, LabViewVersions.v231]: + reader = ClassicRoiReader() + elif header.version is LabViewVersions.v300: + if header.allows_variable_rois: + reader = RoiReaderv300Variable() + else: + reader = RoiReaderv300() + else: + raise ValueError('Unsupported LabView version {}.'.format(header.version)) + reader.imaging_mode = header.imaging_mode + return reader + + @abc.abstractmethod + def __init__(self): + self.imaging_mode = None + + @classmethod + def get_roi_imaging_plane(cls, roi_number, plane_name, nwb_file): + """Get the imaging plane belonging to a specific ROI""" + return nwb_file.nwb_file.processing['Acquired_ROIs'].get("ImageSegmentation")[plane_name].imaging_plane + + @property + def columns(self): + column_descriptions = { + 'dimensions': 'Dimensions of the ROI' + } + column_descriptions.update({ + new_name: old_name + for old_name, new_name in self.column_mapping.items() + }) + return column_descriptions + + def read_roi_table(self, roi_path): + assert os.path.isfile(roi_path) + # Read any columns without explicitly given types as float16 + for column in self.column_mapping: + if column not in self.type_mapping: + self.type_mapping[column] = np.float16 + self.roi_data = pd.read_csv( + roi_path, sep='\t', header=0, index_col=False, + converters=self.type_mapping, memory_map=True) + # Rename the columns so that we can use them as identifiers later on + self.roi_data.rename(columns=self.column_mapping, inplace=True) + # Convert some columns as required + self.roi_data = self.roi_data.astype(self.type_conversion_post_read) + return self.roi_data + + def get_lines_pixels(self, roi_number): + """ + Get the number of lines and of pixels per line for a particular ROI. + :param roi_number: + :return: a tuple containing (number of lines, number of pixels per line) + """ + # If we are in pointing mode, we always know the size of the ROI + if self.imaging_mode is Modes.pointing: + return (1, 1) + # Otherwise we have to do something more elaborate, which may differ + # between versions. + return self._get_lines_pixels(roi_number) + + def get_x_y_range(self, roi_number): + if self.roi_data['angle_deg'][roi_number] == 0: + return self.get_lines_pixels(roi_number)[::-1] + else: + return self.get_lines_pixels(roi_number) + + @abc.abstractmethod + def _get_lines_pixels(self, roi_number): + """Look into the data held to find the size of the given ROI.""" + raise NotImplementedError + + def get_row_attributes(self, roi_row): + return { + field: getattr(roi_row, field) + for field in self.column_mapping.values() + } + + def get_n_rois(self): + return len(self.roi_data['roi_index']) + + +class ClassicRoiReader(RoiReader): + """A reader for older versions of LabView setup (up to 2.1.3).""" + def __init__(self): + super().__init__() + self.column_mapping = self.base_column_mapping.copy() + self.type_mapping = self.base_type_mapping.copy() + self.type_conversion_post_read = self.base_type_conversion_post_read.copy() + + def _get_lines_pixels(self, roi_number): + """ + This method determines the number of lines and the number of pixels per line by using information + contained in x/y_start, x/y_stop, and angle_deg. + :param roi_number: + :return: a tuple containing (number of lines, number of pixels per line) + """ + n_y_pixels = int(self.roi_data['y_stop'][roi_number] - self.roi_data['y_start'][roi_number]) + n_x_pixels = int(self.roi_data['x_stop'][roi_number] - self.roi_data['x_start'][roi_number]) + if self.roi_data['angle_deg'][roi_number] == 0: + n_lines_in_roi = n_y_pixels + n_pixels_per_line = n_x_pixels + else: + n_lines_in_roi = n_x_pixels + n_pixels_per_line = n_y_pixels + return n_lines_in_roi, n_pixels_per_line + + +class RoiReaderv300(RoiReader): + """A reader for LabView version 3.0.0.""" + def __init__(self): + super().__init__() + self.column_mapping = self.base_column_mapping.copy() + self.column_mapping.update({ + 'Resolution': 'resolution', + 'Dwell Time per pixel': 'pixel_dwell_time', + 'Pixels per miniscan': 'pixels_per_miniscan', + 'Original FOV (um)': 'original_fov_um', + 'Apparent Frame Size': 'apparent_frame_size' + }) + self.type_mapping = self.base_type_mapping.copy() + # We don't need any more conversions while reading? But if we do, + # they can be added here. + self.type_conversion_post_read = self.base_type_conversion_post_read.copy() + self.type_conversion_post_read.update({ + 'pixels_per_miniscan': int + }) + + def _get_lines_pixels(self, roi_number): + """ + This method overrides the base method, because the number of lines and the numbers of pixels/line + may not match up with x_stop-x_start (depending on resolution) anymore, and is given explicitly + in a column instead. + :param roi_number: + :return: a tuple containing (number of lines, number of pixels per line) + """ + return (self.roi_data['num_lines'][roi_number], + self.roi_data['pixels_per_miniscan'][roi_number]) + + +class RoiReaderv300Variable(RoiReaderv300): + """A reader for LabView version 3.0.0, supporting variable shape ROIs.""" + + def get_roi_imaging_plane(self, roi_number, plane_name, nwb_file): + """ + Gets the imaging plane for a variable size ROI. + + Overrides base method for variable size ROIs to create (if necessary, it may have been created previously + for a different optical channel) and return an appropriately spatially calibrated imaging plane. This is + needed because variable size ROIs need to have their own imaging plane, unlike fixed sized ROIs, + which can share an imaging plane with other ROIs. """ + # FIXME This is the only method which uses the ROI number starting from 1. We should make + # this consistent across all methods. This mostly matters for this class, since the other + # subclasses handle ROIs of the same size. + row = self.roi_data[self.roi_data['roi_index'] == roi_number] + assert len(row) == 1 + resolution = row['resolution'].iloc[0] + z_plane = nwb_file.nwb_file.processing['Acquired_ROIs'].get("ImageSegmentation")[plane_name].imaging_plane + new_plane_name = z_plane.name + '_ROI_' + str(roi_number) + if new_plane_name not in nwb_file.nwb_file.imaging_planes.keys(): + # Use the start coordinates as recorded in the ROI table + origin = [row[f'{dim}_start'].iloc[0] for dim in ['x', 'y', 'z']] + nwb_file.add_imaging_plane( + name=new_plane_name, + description='Imaging plane for variable size ROI nr. ' + str(roi_number), + origin_coords=origin, + grid_spacing=z_plane.grid_spacing*resolution + ) + return nwb_file.nwb_file.imaging_planes[new_plane_name] diff --git a/src/silverlabnwb/signature.py b/src/silverlabnwb/signature.py index 14cbbee..f455f48 100644 --- a/src/silverlabnwb/signature.py +++ b/src/silverlabnwb/signature.py @@ -68,6 +68,8 @@ def __init__(self): ('/processing/Acquired_ROIs/.*/x_stop', int32, int64), ('/processing/Acquired_ROIs/.*/y_start', int32, int64), ('/processing/Acquired_ROIs/.*/y_stop', int32, int64), + ('/processing/Acquired_ROIs/.*/num_lines', int32, int64), + ('/processing/Acquired_ROIs/.*/pixels_per_miniscan', int32, int64), ]: self.set_cast_path(dataset_path, expected, corrected) # some attributes need platform-specific casting diff --git a/src/silverlabnwb/timings.py b/src/silverlabnwb/timings.py index 298301d..4a308b0 100644 --- a/src/silverlabnwb/timings.py +++ b/src/silverlabnwb/timings.py @@ -7,42 +7,21 @@ class LabViewTimings(metaclass=abc.ABCMeta): """A class for storing pixel-level timing information for an ROI.""" - def __init__(self, relative_times_path, roi_path, dwell_time): + def __init__(self, relative_times_path, roi_reader, dwell_time): self.dwell_time = dwell_time self._read_relative_times_file(relative_times_path) - self._read_roi_data(roi_path) + self.roi_reader = roi_reader + self.n_rois = roi_reader.get_n_rois() @abc.abstractmethod def _read_relative_times_file(self, file_path): pass - def _read_roi_data(self, roi_path): - self.roi_data = pd.read_csv(roi_path, sep='\t', dtype=np.float64) - self.n_rois = len(self.roi_data['ROI index']) - # in the future, we can access more shape parameters here too, for variable size ROIs in those cases, - # we will need to access each individual row here separately. for now, take first row and all ROIs are same - # size and orientation. Also, we may need to store the angle somewhere in the future (to reconstruct the ROI - # in 3D, in which case the ==0 assertion may become imprecise and we would need a tolerance to compare with a - # double value. - n_y_pixels = int(self.roi_data['Y stop'][0] - self.roi_data['Y start'][0]) - n_x_pixels = int(self.roi_data['X stop'][0] - self.roi_data['X start'][0]) - if self.roi_data['Angle (deg)'][0] == 0: - self.n_lines_per_roi = n_y_pixels - self.n_pixels_per_line = n_x_pixels - else: - self.n_lines_per_roi = n_x_pixels - self.n_pixels_per_line = n_y_pixels - if self.n_pixels_per_line == 0 and self.n_lines_per_roi == 0: - # assume we are in pointing mode in this case, probably better if this were passed as an argument? - # this class would need to know about the pointing mode then though. - self.n_pixels_per_line = 1 - self.n_lines_per_roi = 1 - class LabViewTimingsPre2018(LabViewTimings): - def __init__(self, relative_times_path, roi_path, dwell_time): - super().__init__(relative_times_path, roi_path, dwell_time) + def __init__(self, relative_times_path, roi_reader, dwell_time): + super().__init__(relative_times_path, roi_reader, dwell_time) self._format_pixel_time_offsets() def _read_relative_times_file(self, file_path): @@ -52,20 +31,21 @@ def _read_relative_times_file(self, file_path): self.cycle_time = raw_data['CycleTime'][0] def _format_pixel_time_offsets(self): - row_increments = np.arange(self.n_pixels_per_line) * self.dwell_time pixel_time_offsets_by_roi = {} for roi_index in np.arange(self.n_rois): - start_index = self.n_lines_per_roi * roi_index - end_index = start_index + self.n_lines_per_roi - row_offsets = self.pixel_time_offsets[start_index:end_index] + n_lines_in_roi, n_pixels_per_line = self.roi_reader.get_lines_pixels(roi_index) + row_increments = np.arange(n_pixels_per_line) * self.dwell_time + start_index = n_lines_in_roi * roi_index + end_index = start_index + n_lines_in_roi + row_offsets = self.pixel_time_offsets[start_index:end_index].values pixel_time_offsets_by_roi[roi_index] = row_offsets[:, np.newaxis] + row_increments self.pixel_time_offsets = pixel_time_offsets_by_roi -class LabViewTimings231(LabViewTimings): +class LabViewTimingsPost2018(LabViewTimings): - def __init__(self, relative_times_path, roi_path, dwell_time, n_cycles_per_trial, n_trials): - super().__init__(relative_times_path, roi_path, dwell_time) + def __init__(self, relative_times_path, roi_reader, dwell_time, n_cycles_per_trial, n_trials): + super().__init__(relative_times_path, roi_reader, dwell_time) self._format_pixel_time_offsets(n_cycles_per_trial, n_trials) def _read_relative_times_file(self, file_path): @@ -75,16 +55,20 @@ def _read_relative_times_file(self, file_path): def _format_pixel_time_offsets(self, n_cycles_per_trial, n_trials): pixel_time_offsets_by_roi = {} - n_lines_per_cycle = self.n_rois * self.n_lines_per_roi - row_increments = np.arange(self.n_pixels_per_line) * self.dwell_time + n_lines_per_cycle = sum(self.roi_reader.get_lines_pixels(roi_index)[0] + for roi_index in np.arange(0, self.n_rois)) + within_cycle_offset = 0 for roi_index in np.arange(0, self.n_rois): pixel_time_offsets_by_roi[roi_index] = [] + n_lines_in_roi, n_pixels_per_line = self.roi_reader.get_lines_pixels(roi_index) + row_increments = np.arange(n_pixels_per_line) * self.dwell_time for cycle_index in np.arange(0, n_cycles_per_trial * n_trials): - start_index = self.n_lines_per_roi * roi_index + n_lines_per_cycle * cycle_index - end_index = start_index + self.n_lines_per_roi + start_index = within_cycle_offset + n_lines_per_cycle * cycle_index + end_index = start_index + n_lines_in_roi pixel_time_offsets_by_roi[roi_index].append(self.pixel_time_offsets.values[start_index:end_index]) + within_cycle_offset += n_lines_in_roi pixel_time_offsets_by_roi[roi_index] = np.reshape(pixel_time_offsets_by_roi[roi_index], - (n_trials * n_cycles_per_trial, self.n_lines_per_roi)) + (n_trials * n_cycles_per_trial, n_lines_in_roi)) pixel_time_offsets_by_roi[roi_index] = pixel_time_offsets_by_roi[roi_index][:, :, np.newaxis] + row_increments # estimate time for one cycle by averaging the time it takes for the first cycle of each trial. @@ -93,7 +77,7 @@ def _format_pixel_time_offsets(self, n_cycles_per_trial, n_trials): for trial_index in list(range(n_trials)): first_cycle_times_for_each_trial.append(pixel_time_offsets_by_roi[self.n_rois - 1] [trial_index * n_cycles_per_trial] - [self.n_lines_per_roi - 1][0]) + [-1][0]) self.cycle_time = np.mean(first_cycle_times_for_each_trial) self.pixel_time_offsets = pixel_time_offsets_by_roi diff --git a/tests/data/161215_15_34_21.sig2 b/tests/data/161215_15_34_21.sig2 index 73a9774..a912a18 100644 --- a/tests/data/161215_15_34_21.sig2 +++ b/tests/data/161215_15_34_21.sig2 @@ -4868,7 +4868,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0027/imaging_plane -> /general/optophysiology/Zstack0027 /processing/Acquired_ROIs/ImageSegmentation/Zstack0027/laser_power: dtype=float64 shape=(2,) val="0xc740203" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0027/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0027/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0027/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -4913,7 +4913,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/imaging_plane -> /general/optophysiology/Zstack0029 /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/laser_power: dtype=float64 shape=(10,) val="0xe1130c8b" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_lines: dtype=float64 shape=(10,) val="0x500001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_lines: dtype=int64 shape=(10,) val="0x500001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_pixels: dtype=int64 shape=(10,) val="0x208000b" @description: type=str val="Pixels in ROI" @@ -4958,7 +4958,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/imaging_plane -> /general/optophysiology/Zstack0030 /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/laser_power: dtype=float64 shape=(4,) val="0x525805b5" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_lines: dtype=float64 shape=(4,) val="0x200001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_lines: dtype=int64 shape=(4,) val="0x200001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_pixels: dtype=int64 shape=(4,) val="0x700005" @description: type=str val="Pixels in ROI" @@ -5003,7 +5003,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/imaging_plane -> /general/optophysiology/Zstack0032 /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/laser_power: dtype=float64 shape=(5,) val="0x49e8041b" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -5048,7 +5048,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/imaging_plane -> /general/optophysiology/Zstack0033 /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/laser_power: dtype=float64 shape=(22,) val="0xef49178d" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=float64 shape=(22,) val="0xb00001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=int64 shape=(22,) val="0xb00001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_pixels: dtype=int64 shape=(22,) val="0x8980017" @description: type=str val="Pixels in ROI" @@ -5093,7 +5093,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/imaging_plane -> /general/optophysiology/Zstack0034 /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/laser_power: dtype=float64 shape=(15,) val="0x9278140b" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_lines: dtype=float64 shape=(15,) val="0x780001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_lines: dtype=int64 shape=(15,) val="0x780001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_pixels: dtype=int64 shape=(15,) val="0x4380010" @description: type=str val="Pixels in ROI" @@ -5138,7 +5138,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/imaging_plane -> /general/optophysiology/Zstack0035 /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/laser_power: dtype=float64 shape=(7,) val="0x72ae0476" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_lines: dtype=float64 shape=(7,) val="0x380001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_lines: dtype=int64 shape=(7,) val="0x380001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_pixels: dtype=int64 shape=(7,) val="0x1180008" @description: type=str val="Pixels in ROI" @@ -5183,7 +5183,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0039/imaging_plane -> /general/optophysiology/Zstack0039 /processing/Acquired_ROIs/ImageSegmentation/Zstack0039/laser_power: dtype=float64 shape=(5,) val="0x6cc005f1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0039/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -5228,7 +5228,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0040/imaging_plane -> /general/optophysiology/Zstack0040 /processing/Acquired_ROIs/ImageSegmentation/Zstack0040/laser_power: dtype=float64 shape=(2,) val="0x6bc0133" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0040/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -5273,7 +5273,7 @@ Generating signature for 161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0047/imaging_plane -> /general/optophysiology/Zstack0047 /processing/Acquired_ROIs/ImageSegmentation/Zstack0047/laser_power: dtype=float64 shape=(8,) val="0x8db004c9" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" diff --git a/tests/data/161215_15_58_52.sig2 b/tests/data/161215_15_58_52.sig2 index 941a8d7..8b361d1 100644 --- a/tests/data/161215_15_58_52.sig2 +++ b/tests/data/161215_15_58_52.sig2 @@ -4846,7 +4846,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0022/imaging_plane -> /general/optophysiology/Zstack0022 /processing/Acquired_ROIs/ImageSegmentation/Zstack0022/laser_power: dtype=float64 shape=(2,) val="0x8840173" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0022/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0022/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0022/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -4891,7 +4891,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0025/imaging_plane -> /general/optophysiology/Zstack0025 /processing/Acquired_ROIs/ImageSegmentation/Zstack0025/laser_power: dtype=float64 shape=(2,) val="0xa0c01ab" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0025/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0025/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0025/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -4936,7 +4936,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0028/imaging_plane -> /general/optophysiology/Zstack0028 /processing/Acquired_ROIs/ImageSegmentation/Zstack0028/laser_power: dtype=float64 shape=(5,) val="0x65c20592" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0028/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0028/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0028/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -4981,7 +4981,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/imaging_plane -> /general/optophysiology/Zstack0029 /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/laser_power: dtype=float64 shape=(6,) val="0xa83c0787" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_lines: dtype=float64 shape=(6,) val="0x300001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_lines: dtype=int64 shape=(6,) val="0x300001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_pixels: dtype=int64 shape=(6,) val="0xd80007" @description: type=str val="Pixels in ROI" @@ -5026,7 +5026,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/imaging_plane -> /general/optophysiology/Zstack0032 /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/laser_power: dtype=float64 shape=(2,) val="0x9e001a5" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -5071,7 +5071,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/imaging_plane -> /general/optophysiology/Zstack0033 /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/laser_power: dtype=float64 shape=(20,) val="0x8b5a1569" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=float64 shape=(20,) val="0xa00001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=int64 shape=(20,) val="0xa00001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_pixels: dtype=int64 shape=(20,) val="0x7300015" @description: type=str val="Pixels in ROI" @@ -5116,7 +5116,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/imaging_plane -> /general/optophysiology/Zstack0034 /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/laser_power: dtype=float64 shape=(21,) val="0x82b1c0f" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_lines: dtype=float64 shape=(21,) val="0xa80001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_lines: dtype=int64 shape=(21,) val="0xa80001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_pixels: dtype=int64 shape=(21,) val="0x7e00016" @description: type=str val="Pixels in ROI" @@ -5161,7 +5161,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/imaging_plane -> /general/optophysiology/Zstack0035 /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/laser_power: dtype=float64 shape=(14,) val="0xdf0308eb" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_lines: dtype=float64 shape=(14,) val="0x700001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_lines: dtype=int64 shape=(14,) val="0x700001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_pixels: dtype=int64 shape=(14,) val="0x3b8000f" @description: type=str val="Pixels in ROI" @@ -5206,7 +5206,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0039/imaging_plane -> /general/optophysiology/Zstack0039 /processing/Acquired_ROIs/ImageSegmentation/Zstack0039/laser_power: dtype=float64 shape=(2,) val="0xf000261" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0039/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -5251,7 +5251,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0040/imaging_plane -> /general/optophysiology/Zstack0040 /processing/Acquired_ROIs/ImageSegmentation/Zstack0040/laser_power: dtype=float64 shape=(4,) val="0x20980265" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/num_lines: dtype=float64 shape=(4,) val="0x200001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/num_lines: dtype=int64 shape=(4,) val="0x200001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0040/num_pixels: dtype=int64 shape=(4,) val="0x700005" @description: type=str val="Pixels in ROI" @@ -5296,7 +5296,7 @@ Generating signature for 161215_15_58_52.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0046/imaging_plane -> /general/optophysiology/Zstack0046 /processing/Acquired_ROIs/ImageSegmentation/Zstack0046/laser_power: dtype=float64 shape=(2,) val="0x6bc0133" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0046/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" diff --git a/tests/data/161222_16_18_47.sig2 b/tests/data/161222_16_18_47.sig2 index 6f08370..279efdc 100644 --- a/tests/data/161222_16_18_47.sig2 +++ b/tests/data/161222_16_18_47.sig2 @@ -4807,7 +4807,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0022/imaging_plane -> /general/optophysiology/Zstack0022 /processing/Acquired_ROIs/ImageSegmentation/Zstack0022/laser_power: dtype=float64 shape=(1,) val="[80.3125]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0022/num_lines: dtype=float64 shape=(1,) val="[0]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0022/num_lines: dtype=int64 shape=(1,) val="[0]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0022/num_pixels: dtype=int64 shape=(1,) val="[1]" @description: type=str val="Pixels in ROI" @@ -4852,7 +4852,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0025/imaging_plane -> /general/optophysiology/Zstack0025 /processing/Acquired_ROIs/ImageSegmentation/Zstack0025/laser_power: dtype=float64 shape=(1,) val="[81.625]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0025/num_lines: dtype=float64 shape=(1,) val="[0]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0025/num_lines: dtype=int64 shape=(1,) val="[0]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0025/num_pixels: dtype=int64 shape=(1,) val="[1]" @description: type=str val="Pixels in ROI" @@ -4897,7 +4897,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0026/imaging_plane -> /general/optophysiology/Zstack0026 /processing/Acquired_ROIs/ImageSegmentation/Zstack0026/laser_power: dtype=float64 shape=(5,) val="0x66e405a1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0026/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0026/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0026/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -4942,7 +4942,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0027/imaging_plane -> /general/optophysiology/Zstack0027 /processing/Acquired_ROIs/ImageSegmentation/Zstack0027/laser_power: dtype=float64 shape=(6,) val="0xb05807e1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0027/num_lines: dtype=float64 shape=(6,) val="0x300001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0027/num_lines: dtype=int64 shape=(6,) val="0x300001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0027/num_pixels: dtype=int64 shape=(6,) val="0xd80007" @description: type=str val="Pixels in ROI" @@ -4987,7 +4987,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0028/imaging_plane -> /general/optophysiology/Zstack0028 /processing/Acquired_ROIs/ImageSegmentation/Zstack0028/laser_power: dtype=float64 shape=(2,) val="0x13680301" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0028/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0028/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0028/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -5032,7 +5032,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/imaging_plane -> /general/optophysiology/Zstack0029 /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/laser_power: dtype=float64 shape=(8,) val="0xb0b005e9" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" @@ -5077,7 +5077,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/imaging_plane -> /general/optophysiology/Zstack0030 /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/laser_power: dtype=float64 shape=(15,) val="0x5ecb0ed4" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_lines: dtype=float64 shape=(15,) val="0x780001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_lines: dtype=int64 shape=(15,) val="0x780001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_pixels: dtype=int64 shape=(15,) val="0x4380010" @description: type=str val="Pixels in ROI" @@ -5122,7 +5122,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0031/imaging_plane -> /general/optophysiology/Zstack0031 /processing/Acquired_ROIs/ImageSegmentation/Zstack0031/laser_power: dtype=float64 shape=(15,) val="0x57c2130c" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0031/num_lines: dtype=float64 shape=(15,) val="0x780001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0031/num_lines: dtype=int64 shape=(15,) val="0x780001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0031/num_pixels: dtype=int64 shape=(15,) val="0x4380010" @description: type=str val="Pixels in ROI" @@ -5167,7 +5167,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/imaging_plane -> /general/optophysiology/Zstack0032 /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/laser_power: dtype=float64 shape=(15,) val="0x86e0907" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_lines: dtype=float64 shape=(15,) val="0x780001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_lines: dtype=int64 shape=(15,) val="0x780001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_pixels: dtype=int64 shape=(15,) val="0x4380010" @description: type=str val="Pixels in ROI" @@ -5212,7 +5212,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/imaging_plane -> /general/optophysiology/Zstack0033 /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/laser_power: dtype=float64 shape=(5,) val="0x55c804bb" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -5257,7 +5257,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/imaging_plane -> /general/optophysiology/Zstack0034 /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/laser_power: dtype=float64 shape=(6,) val="0xb3880805" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_lines: dtype=float64 shape=(6,) val="0x300001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_lines: dtype=int64 shape=(6,) val="0x300001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_pixels: dtype=int64 shape=(6,) val="0xd80007" @description: type=str val="Pixels in ROI" @@ -5302,7 +5302,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/imaging_plane -> /general/optophysiology/Zstack0035 /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/laser_power: dtype=float64 shape=(5,) val="0x42d603bc" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -5347,7 +5347,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0036/imaging_plane -> /general/optophysiology/Zstack0036 /processing/Acquired_ROIs/ImageSegmentation/Zstack0036/laser_power: dtype=float64 shape=(2,) val="0xef4025f" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0036/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -5392,7 +5392,7 @@ Generating signature for 161222_16_18_47.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0037/imaging_plane -> /general/optophysiology/Zstack0037 /processing/Acquired_ROIs/ImageSegmentation/Zstack0037/laser_power: dtype=float64 shape=(3,) val="0x133801f9" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/num_lines: dtype=float64 shape=(3,) val="0x180001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/num_lines: dtype=int64 shape=(3,) val="0x180001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0037/num_pixels: dtype=int64 shape=(3,) val="0x480004" @description: type=str val="Pixels in ROI" diff --git a/tests/data/170317_10_11_01.sig2 b/tests/data/170317_10_11_01.sig2 index 40f90f9..f6db2a9 100644 --- a/tests/data/170317_10_11_01.sig2 +++ b/tests/data/170317_10_11_01.sig2 @@ -7476,7 +7476,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0014/imaging_plane -> /general/optophysiology/Zstack0014 /processing/Acquired_ROIs/ImageSegmentation/Zstack0014/laser_power: dtype=float64 shape=(12,) val="0x260d1159" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0014/num_lines: dtype=float64 shape=(12,) val="0x600001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0014/num_lines: dtype=int64 shape=(12,) val="0x600001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0014/num_pixels: dtype=int64 shape=(12,) val="0x2d0000d" @description: type=str val="Pixels in ROI" @@ -7521,7 +7521,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0015/imaging_plane -> /general/optophysiology/Zstack0015 /processing/Acquired_ROIs/ImageSegmentation/Zstack0015/laser_power: dtype=float64 shape=(5,) val="0x8cdc079f" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0015/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -7566,7 +7566,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0017/imaging_plane -> /general/optophysiology/Zstack0017 /processing/Acquired_ROIs/ImageSegmentation/Zstack0017/laser_power: dtype=float64 shape=(8,) val="0xa3500579" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0017/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" @@ -7611,7 +7611,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0018/imaging_plane -> /general/optophysiology/Zstack0018 /processing/Acquired_ROIs/ImageSegmentation/Zstack0018/laser_power: dtype=float64 shape=(9,) val="0xe8f206dc" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0018/num_lines: dtype=float64 shape=(9,) val="0x480001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0018/num_lines: dtype=int64 shape=(9,) val="0x480001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0018/num_pixels: dtype=int64 shape=(9,) val="0x1b0000a" @description: type=str val="Pixels in ROI" @@ -7656,7 +7656,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0020/imaging_plane -> /general/optophysiology/Zstack0020 /processing/Acquired_ROIs/ImageSegmentation/Zstack0020/laser_power: dtype=float64 shape=(7,) val="0xa80e066e" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0020/num_lines: dtype=float64 shape=(7,) val="0x380001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0020/num_lines: dtype=int64 shape=(7,) val="0x380001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0020/num_pixels: dtype=int64 shape=(7,) val="0x1180008" @description: type=str val="Pixels in ROI" @@ -7701,7 +7701,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0031/imaging_plane -> /general/optophysiology/Zstack0031 /processing/Acquired_ROIs/ImageSegmentation/Zstack0031/laser_power: dtype=float64 shape=(8,) val="0xa4400581" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0031/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0031/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0031/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" @@ -7746,7 +7746,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/imaging_plane -> /general/optophysiology/Zstack0032 /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/laser_power: dtype=float64 shape=(5,) val="0x41dc03ad" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0032/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -7791,7 +7791,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/imaging_plane -> /general/optophysiology/Zstack0033 /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/laser_power: dtype=float64 shape=(6,) val="0x64f80499" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=float64 shape=(6,) val="0x300001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=int64 shape=(6,) val="0x300001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_pixels: dtype=int64 shape=(6,) val="0xd80007" @description: type=str val="Pixels in ROI" @@ -7836,7 +7836,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/imaging_plane -> /general/optophysiology/Zstack0034 /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/laser_power: dtype=float64 shape=(8,) val="0xc3400681" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" @@ -7881,7 +7881,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/imaging_plane -> /general/optophysiology/Zstack0035 /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/laser_power: dtype=float64 shape=(4,) val="0x30700371" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_lines: dtype=float64 shape=(4,) val="0x200001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_lines: dtype=int64 shape=(4,) val="0x200001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_pixels: dtype=int64 shape=(4,) val="0x700005" @description: type=str val="Pixels in ROI" @@ -7926,7 +7926,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0044/imaging_plane -> /general/optophysiology/Zstack0044 /processing/Acquired_ROIs/ImageSegmentation/Zstack0044/laser_power: dtype=float64 shape=(4,) val="0x442004c1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0044/num_lines: dtype=float64 shape=(4,) val="0x200001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0044/num_lines: dtype=int64 shape=(4,) val="0x200001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0044/num_pixels: dtype=int64 shape=(4,) val="0x700005" @description: type=str val="Pixels in ROI" @@ -7971,7 +7971,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0045/imaging_plane -> /general/optophysiology/Zstack0045 /processing/Acquired_ROIs/ImageSegmentation/Zstack0045/laser_power: dtype=float64 shape=(8,) val="0x280f09c1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0045/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0045/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0045/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" @@ -8016,7 +8016,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0046/imaging_plane -> /general/optophysiology/Zstack0046 /processing/Acquired_ROIs/ImageSegmentation/Zstack0046/laser_power: dtype=float64 shape=(11,) val="0x46c60dc1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/num_lines: dtype=float64 shape=(11,) val="0x580001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/num_lines: dtype=int64 shape=(11,) val="0x580001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0046/num_pixels: dtype=int64 shape=(11,) val="0x268000c" @description: type=str val="Pixels in ROI" @@ -8061,7 +8061,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0047/imaging_plane -> /general/optophysiology/Zstack0047 /processing/Acquired_ROIs/ImageSegmentation/Zstack0047/laser_power: dtype=float64 shape=(10,) val="0xebef0cd1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_lines: dtype=float64 shape=(10,) val="0x500001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_lines: dtype=int64 shape=(10,) val="0x500001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_pixels: dtype=int64 shape=(10,) val="0x208000b" @description: type=str val="Pixels in ROI" @@ -8106,7 +8106,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0048/imaging_plane -> /general/optophysiology/Zstack0048 /processing/Acquired_ROIs/ImageSegmentation/Zstack0048/laser_power: dtype=float64 shape=(7,) val="0xf58c094d" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0048/num_lines: dtype=float64 shape=(7,) val="0x380001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0048/num_lines: dtype=int64 shape=(7,) val="0x380001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0048/num_pixels: dtype=int64 shape=(7,) val="0x1180008" @description: type=str val="Pixels in ROI" @@ -8151,7 +8151,7 @@ Generating signature for 170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0049/imaging_plane -> /general/optophysiology/Zstack0049 /processing/Acquired_ROIs/ImageSegmentation/Zstack0049/laser_power: dtype=float64 shape=(8,) val="0x4aef0ae1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0049/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0049/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0049/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" diff --git a/tests/data/170322_14_06_43.sig2 b/tests/data/170322_14_06_43.sig2 index bcd00f7..cbfe002 100644 --- a/tests/data/170322_14_06_43.sig2 +++ b/tests/data/170322_14_06_43.sig2 @@ -3815,7 +3815,7 @@ Generating signature for 170322_14_06_43.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/imaging_plane -> /general/optophysiology/Zstack0033 /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/laser_power: dtype=float64 shape=(2,) val="0x9e801a5" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=float64 shape=(2,) val="0x638011d" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=int64 shape=(2,) val="0x5b00079" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_pixels: dtype=int64 shape=(2,) val="0xc5a010f" @description: type=str val="Pixels in ROI" @@ -3860,7 +3860,7 @@ Generating signature for 170322_14_06_43.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0036/imaging_plane -> /general/optophysiology/Zstack0036 /processing/Acquired_ROIs/ImageSegmentation/Zstack0036/laser_power: dtype=float64 shape=(1,) val="[73.5625]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/num_lines: dtype=float64 shape=(1,) val="[60]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/num_lines: dtype=int64 shape=(1,) val="[60]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0036/num_pixels: dtype=int64 shape=(1,) val="[12120]" @description: type=str val="Pixels in ROI" @@ -3905,7 +3905,7 @@ Generating signature for 170322_14_06_43.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0037/imaging_plane -> /general/optophysiology/Zstack0037 /processing/Acquired_ROIs/ImageSegmentation/Zstack0037/laser_power: dtype=float64 shape=(1,) val="[73.75]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/num_lines: dtype=float64 shape=(1,) val="[60]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/num_lines: dtype=int64 shape=(1,) val="[60]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0037/num_pixels: dtype=int64 shape=(1,) val="[12120]" @description: type=str val="Pixels in ROI" @@ -3950,7 +3950,7 @@ Generating signature for 170322_14_06_43.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0047/imaging_plane -> /general/optophysiology/Zstack0047 /processing/Acquired_ROIs/ImageSegmentation/Zstack0047/laser_power: dtype=float64 shape=(1,) val="[75.625]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_lines: dtype=float64 shape=(1,) val="[60]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_lines: dtype=int64 shape=(1,) val="[60]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_pixels: dtype=int64 shape=(1,) val="[12120]" @description: type=str val="Pixels in ROI" @@ -3995,7 +3995,7 @@ Generating signature for 170322_14_06_43.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0049/imaging_plane -> /general/optophysiology/Zstack0049 /processing/Acquired_ROIs/ImageSegmentation/Zstack0049/laser_power: dtype=float64 shape=(1,) val="[76]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0049/num_lines: dtype=float64 shape=(1,) val="[60]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0049/num_lines: dtype=int64 shape=(1,) val="[60]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0049/num_pixels: dtype=int64 shape=(1,) val="[12120]" @description: type=str val="Pixels in ROI" @@ -4040,7 +4040,7 @@ Generating signature for 170322_14_06_43.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0052/imaging_plane -> /general/optophysiology/Zstack0052 /processing/Acquired_ROIs/ImageSegmentation/Zstack0052/laser_power: dtype=float64 shape=(1,) val="[76.5625]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0052/num_lines: dtype=float64 shape=(1,) val="[60]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0052/num_lines: dtype=int64 shape=(1,) val="[60]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0052/num_pixels: dtype=int64 shape=(1,) val="[12120]" @description: type=str val="Pixels in ROI" diff --git a/tests/data/170714_22_26_27.sig2 b/tests/data/170714_22_26_27.sig2 index 896f936..426ebfd 100644 --- a/tests/data/170714_22_26_27.sig2 +++ b/tests/data/170714_22_26_27.sig2 @@ -17241,7 +17241,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0064/imaging_plane -> /general/optophysiology/Zstack0064 /processing/Acquired_ROIs/ImageSegmentation/Zstack0064/laser_power: dtype=float64 shape=(10,) val="0x6deb0993" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0064/num_lines: dtype=float64 shape=(10,) val="0x500001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0064/num_lines: dtype=int64 shape=(10,) val="0x500001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0064/num_pixels: dtype=int64 shape=(10,) val="0x208000b" @description: type=str val="Pixels in ROI" @@ -17286,7 +17286,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0067/imaging_plane -> /general/optophysiology/Zstack0067 /processing/Acquired_ROIs/ImageSegmentation/Zstack0067/laser_power: dtype=float64 shape=(9,) val="0x2bcd08c2" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0067/num_lines: dtype=float64 shape=(9,) val="0x480001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0067/num_lines: dtype=int64 shape=(9,) val="0x480001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0067/num_pixels: dtype=int64 shape=(9,) val="0x1b0000a" @description: type=str val="Pixels in ROI" @@ -17331,7 +17331,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0080/imaging_plane -> /general/optophysiology/Zstack0080 /processing/Acquired_ROIs/ImageSegmentation/Zstack0080/laser_power: dtype=float64 shape=(5,) val="0x66120592" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0080/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0080/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0080/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -17376,7 +17376,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0087/imaging_plane -> /general/optophysiology/Zstack0087 /processing/Acquired_ROIs/ImageSegmentation/Zstack0087/laser_power: dtype=float64 shape=(4,) val="0x466804e5" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0087/num_lines: dtype=float64 shape=(4,) val="0x200001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0087/num_lines: dtype=int64 shape=(4,) val="0x200001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0087/num_pixels: dtype=int64 shape=(4,) val="0x700005" @description: type=str val="Pixels in ROI" @@ -17421,7 +17421,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0097/imaging_plane -> /general/optophysiology/Zstack0097 /processing/Acquired_ROIs/ImageSegmentation/Zstack0097/laser_power: dtype=float64 shape=(10,) val="0x24ca0e43" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0097/num_lines: dtype=float64 shape=(10,) val="0x500001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0097/num_lines: dtype=int64 shape=(10,) val="0x500001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0097/num_pixels: dtype=int64 shape=(10,) val="0x208000b" @description: type=str val="Pixels in ROI" @@ -17466,7 +17466,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0103/imaging_plane -> /general/optophysiology/Zstack0103 /processing/Acquired_ROIs/ImageSegmentation/Zstack0103/laser_power: dtype=float64 shape=(10,) val="0xdd1805dd" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0103/num_lines: dtype=float64 shape=(10,) val="0x500001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0103/num_lines: dtype=int64 shape=(10,) val="0x500001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0103/num_pixels: dtype=int64 shape=(10,) val="0x208000b" @description: type=str val="Pixels in ROI" @@ -17511,7 +17511,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0110/imaging_plane -> /general/optophysiology/Zstack0110 /processing/Acquired_ROIs/ImageSegmentation/Zstack0110/laser_power: dtype=float64 shape=(11,) val="0x65bb0883" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0110/num_lines: dtype=float64 shape=(11,) val="0x580001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0110/num_lines: dtype=int64 shape=(11,) val="0x580001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0110/num_pixels: dtype=int64 shape=(11,) val="0x268000c" @description: type=str val="Pixels in ROI" @@ -17556,7 +17556,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0111/imaging_plane -> /general/optophysiology/Zstack0111 /processing/Acquired_ROIs/ImageSegmentation/Zstack0111/laser_power: dtype=float64 shape=(6,) val="0x6a9804d5" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0111/num_lines: dtype=float64 shape=(6,) val="0x300001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0111/num_lines: dtype=int64 shape=(6,) val="0x300001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0111/num_pixels: dtype=int64 shape=(6,) val="0xd80007" @description: type=str val="Pixels in ROI" @@ -17601,7 +17601,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0120/imaging_plane -> /general/optophysiology/Zstack0120 /processing/Acquired_ROIs/ImageSegmentation/Zstack0120/laser_power: dtype=float64 shape=(2,) val="0xdf00235" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0120/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0120/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0120/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -17646,7 +17646,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0122/imaging_plane -> /general/optophysiology/Zstack0122 /processing/Acquired_ROIs/ImageSegmentation/Zstack0122/laser_power: dtype=float64 shape=(13,) val="0x4a90f57" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0122/num_lines: dtype=float64 shape=(13,) val="0x680001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0122/num_lines: dtype=int64 shape=(13,) val="0x680001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0122/num_pixels: dtype=int64 shape=(13,) val="0x340000e" @description: type=str val="Pixels in ROI" @@ -17691,7 +17691,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0126/imaging_plane -> /general/optophysiology/Zstack0126 /processing/Acquired_ROIs/ImageSegmentation/Zstack0126/laser_power: dtype=float64 shape=(5,) val="0x7b3406af" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0126/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0126/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0126/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -17736,7 +17736,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0127/imaging_plane -> /general/optophysiology/Zstack0127 /processing/Acquired_ROIs/ImageSegmentation/Zstack0127/laser_power: dtype=float64 shape=(3,) val="0x2ae4041b" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0127/num_lines: dtype=float64 shape=(3,) val="0x180001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0127/num_lines: dtype=int64 shape=(3,) val="0x180001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0127/num_pixels: dtype=int64 shape=(3,) val="0x480004" @description: type=str val="Pixels in ROI" @@ -17781,7 +17781,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0129/imaging_plane -> /general/optophysiology/Zstack0129 /processing/Acquired_ROIs/ImageSegmentation/Zstack0129/laser_power: dtype=float64 shape=(6,) val="0xc30008ad" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0129/num_lines: dtype=float64 shape=(6,) val="0x300001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0129/num_lines: dtype=int64 shape=(6,) val="0x300001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0129/num_pixels: dtype=int64 shape=(6,) val="0xd80007" @description: type=str val="Pixels in ROI" @@ -17826,7 +17826,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0130/imaging_plane -> /general/optophysiology/Zstack0130 /processing/Acquired_ROIs/ImageSegmentation/Zstack0130/laser_power: dtype=float64 shape=(5,) val="0x8a0c0777" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0130/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0130/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0130/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -17871,7 +17871,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0131/imaging_plane -> /general/optophysiology/Zstack0131 /processing/Acquired_ROIs/ImageSegmentation/Zstack0131/laser_power: dtype=float64 shape=(7,) val="0x616603ce" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0131/num_lines: dtype=float64 shape=(7,) val="0x380001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0131/num_lines: dtype=int64 shape=(7,) val="0x380001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0131/num_pixels: dtype=int64 shape=(7,) val="0x1180008" @description: type=str val="Pixels in ROI" @@ -17916,7 +17916,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0132/imaging_plane -> /general/optophysiology/Zstack0132 /processing/Acquired_ROIs/ImageSegmentation/Zstack0132/laser_power: dtype=float64 shape=(14,) val="0xafc3080b" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0132/num_lines: dtype=float64 shape=(14,) val="0x700001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0132/num_lines: dtype=int64 shape=(14,) val="0x700001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0132/num_pixels: dtype=int64 shape=(14,) val="0x3b8000f" @description: type=str val="Pixels in ROI" @@ -17961,7 +17961,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0133/imaging_plane -> /general/optophysiology/Zstack0133 /processing/Acquired_ROIs/ImageSegmentation/Zstack0133/laser_power: dtype=float64 shape=(8,) val="0x941004f9" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0133/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0133/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0133/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" @@ -18006,7 +18006,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0134/imaging_plane -> /general/optophysiology/Zstack0134 /processing/Acquired_ROIs/ImageSegmentation/Zstack0134/laser_power: dtype=float64 shape=(9,) val="0xcbb20604" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0134/num_lines: dtype=float64 shape=(9,) val="0x480001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0134/num_lines: dtype=int64 shape=(9,) val="0x480001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0134/num_pixels: dtype=int64 shape=(9,) val="0x1b0000a" @description: type=str val="Pixels in ROI" @@ -18051,7 +18051,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0135/imaging_plane -> /general/optophysiology/Zstack0135 /processing/Acquired_ROIs/ImageSegmentation/Zstack0135/laser_power: dtype=float64 shape=(6,) val="0x5e2c044b" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0135/num_lines: dtype=float64 shape=(6,) val="0x300001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0135/num_lines: dtype=int64 shape=(6,) val="0x300001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0135/num_pixels: dtype=int64 shape=(6,) val="0xd80007" @description: type=str val="Pixels in ROI" @@ -18096,7 +18096,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0136/imaging_plane -> /general/optophysiology/Zstack0136 /processing/Acquired_ROIs/ImageSegmentation/Zstack0136/laser_power: dtype=float64 shape=(8,) val="0xb6f00619" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0136/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0136/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0136/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" @@ -18141,7 +18141,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0137/imaging_plane -> /general/optophysiology/Zstack0137 /processing/Acquired_ROIs/ImageSegmentation/Zstack0137/laser_power: dtype=float64 shape=(8,) val="0xc2900679" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0137/num_lines: dtype=float64 shape=(8,) val="0x400001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0137/num_lines: dtype=int64 shape=(8,) val="0x400001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0137/num_pixels: dtype=int64 shape=(8,) val="0x1600009" @description: type=str val="Pixels in ROI" @@ -18186,7 +18186,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0138/imaging_plane -> /general/optophysiology/Zstack0138 /processing/Acquired_ROIs/ImageSegmentation/Zstack0138/laser_power: dtype=float64 shape=(4,) val="0x2f68035d" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0138/num_lines: dtype=float64 shape=(4,) val="0x200001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0138/num_lines: dtype=int64 shape=(4,) val="0x200001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0138/num_pixels: dtype=int64 shape=(4,) val="0x700005" @description: type=str val="Pixels in ROI" @@ -18231,7 +18231,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0139/imaging_plane -> /general/optophysiology/Zstack0139 /processing/Acquired_ROIs/ImageSegmentation/Zstack0139/laser_power: dtype=float64 shape=(10,) val="0x526b08df" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0139/num_lines: dtype=float64 shape=(10,) val="0x500001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0139/num_lines: dtype=int64 shape=(10,) val="0x500001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0139/num_pixels: dtype=int64 shape=(10,) val="0x208000b" @description: type=str val="Pixels in ROI" @@ -18276,7 +18276,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0140/imaging_plane -> /general/optophysiology/Zstack0140 /processing/Acquired_ROIs/ImageSegmentation/Zstack0140/laser_power: dtype=float64 shape=(7,) val="0xab3a068a" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0140/num_lines: dtype=float64 shape=(7,) val="0x380001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0140/num_lines: dtype=int64 shape=(7,) val="0x380001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0140/num_pixels: dtype=int64 shape=(7,) val="0x1180008" @description: type=str val="Pixels in ROI" @@ -18321,7 +18321,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0141/imaging_plane -> /general/optophysiology/Zstack0141 /processing/Acquired_ROIs/ImageSegmentation/Zstack0141/laser_power: dtype=float64 shape=(9,) val="0x2e3108d4" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0141/num_lines: dtype=float64 shape=(9,) val="0x480001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0141/num_lines: dtype=int64 shape=(9,) val="0x480001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0141/num_pixels: dtype=int64 shape=(9,) val="0x1b0000a" @description: type=str val="Pixels in ROI" @@ -18366,7 +18366,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0142/imaging_plane -> /general/optophysiology/Zstack0142 /processing/Acquired_ROIs/ImageSegmentation/Zstack0142/laser_power: dtype=float64 shape=(5,) val="0x5f5a0538" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0142/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0142/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0142/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -18411,7 +18411,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0143/imaging_plane -> /general/optophysiology/Zstack0143 /processing/Acquired_ROIs/ImageSegmentation/Zstack0143/laser_power: dtype=float64 shape=(5,) val="0x63ce0574" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0143/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0143/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0143/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -18456,7 +18456,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0144/imaging_plane -> /general/optophysiology/Zstack0144 /processing/Acquired_ROIs/ImageSegmentation/Zstack0144/laser_power: dtype=float64 shape=(2,) val="0xe6c0247" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0144/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0144/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0144/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -18501,7 +18501,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0145/imaging_plane -> /general/optophysiology/Zstack0145 /processing/Acquired_ROIs/ImageSegmentation/Zstack0145/laser_power: dtype=float64 shape=(1,) val="[47.3125]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0145/num_lines: dtype=float64 shape=(1,) val="[0]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0145/num_lines: dtype=int64 shape=(1,) val="[0]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0145/num_pixels: dtype=int64 shape=(1,) val="[1]" @description: type=str val="Pixels in ROI" @@ -18546,7 +18546,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0146/imaging_plane -> /general/optophysiology/Zstack0146 /processing/Acquired_ROIs/ImageSegmentation/Zstack0146/laser_power: dtype=float64 shape=(3,) val="0x265e03b2" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0146/num_lines: dtype=float64 shape=(3,) val="0x180001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0146/num_lines: dtype=int64 shape=(3,) val="0x180001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0146/num_pixels: dtype=int64 shape=(3,) val="0x480004" @description: type=str val="Pixels in ROI" @@ -18591,7 +18591,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0147/imaging_plane -> /general/optophysiology/Zstack0147 /processing/Acquired_ROIs/ImageSegmentation/Zstack0147/laser_power: dtype=float64 shape=(7,) val="0xef26090e" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0147/num_lines: dtype=float64 shape=(7,) val="0x380001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0147/num_lines: dtype=int64 shape=(7,) val="0x380001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0147/num_pixels: dtype=int64 shape=(7,) val="0x1180008" @description: type=str val="Pixels in ROI" @@ -18636,7 +18636,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0148/imaging_plane -> /general/optophysiology/Zstack0148 /processing/Acquired_ROIs/ImageSegmentation/Zstack0148/laser_power: dtype=float64 shape=(10,) val="0x3320d67" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0148/num_lines: dtype=float64 shape=(10,) val="0x500001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0148/num_lines: dtype=int64 shape=(10,) val="0x500001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0148/num_pixels: dtype=int64 shape=(10,) val="0x208000b" @description: type=str val="Pixels in ROI" @@ -18681,7 +18681,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0149/imaging_plane -> /general/optophysiology/Zstack0149 /processing/Acquired_ROIs/ImageSegmentation/Zstack0149/laser_power: dtype=float64 shape=(12,) val="0x55510a5" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0149/num_lines: dtype=float64 shape=(12,) val="0x600001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0149/num_lines: dtype=int64 shape=(12,) val="0x600001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0149/num_pixels: dtype=int64 shape=(12,) val="0x2d0000d" @description: type=str val="Pixels in ROI" @@ -18726,7 +18726,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0150/imaging_plane -> /general/optophysiology/Zstack0150 /processing/Acquired_ROIs/ImageSegmentation/Zstack0150/laser_power: dtype=float64 shape=(5,) val="0x85f20740" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0150/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0150/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0150/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -18771,7 +18771,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0151/imaging_plane -> /general/optophysiology/Zstack0151 /processing/Acquired_ROIs/ImageSegmentation/Zstack0151/laser_power: dtype=float64 shape=(7,) val="0x15990a7a" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0151/num_lines: dtype=float64 shape=(7,) val="0x380001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0151/num_lines: dtype=int64 shape=(7,) val="0x380001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0151/num_pixels: dtype=int64 shape=(7,) val="0x1180008" @description: type=str val="Pixels in ROI" @@ -18816,7 +18816,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0152/imaging_plane -> /general/optophysiology/Zstack0152 /processing/Acquired_ROIs/ImageSegmentation/Zstack0152/laser_power: dtype=float64 shape=(12,) val="0x2b7f0691" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0152/num_lines: dtype=float64 shape=(12,) val="0x600001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0152/num_lines: dtype=int64 shape=(12,) val="0x600001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0152/num_pixels: dtype=int64 shape=(12,) val="0x2d0000d" @description: type=str val="Pixels in ROI" @@ -18861,7 +18861,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0153/imaging_plane -> /general/optophysiology/Zstack0153 /processing/Acquired_ROIs/ImageSegmentation/Zstack0153/laser_power: dtype=float64 shape=(13,) val="0x8a5307ed" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0153/num_lines: dtype=float64 shape=(13,) val="0x680001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0153/num_lines: dtype=int64 shape=(13,) val="0x680001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0153/num_pixels: dtype=int64 shape=(13,) val="0x340000e" @description: type=str val="Pixels in ROI" @@ -18906,7 +18906,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0154/imaging_plane -> /general/optophysiology/Zstack0154 /processing/Acquired_ROIs/ImageSegmentation/Zstack0154/laser_power: dtype=float64 shape=(6,) val="0x561003f1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0154/num_lines: dtype=float64 shape=(6,) val="0x300001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0154/num_lines: dtype=int64 shape=(6,) val="0x300001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0154/num_pixels: dtype=int64 shape=(6,) val="0xd80007" @description: type=str val="Pixels in ROI" @@ -18951,7 +18951,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0163/imaging_plane -> /general/optophysiology/Zstack0163 /processing/Acquired_ROIs/ImageSegmentation/Zstack0163/laser_power: dtype=float64 shape=(3,) val="0x24f00391" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0163/num_lines: dtype=float64 shape=(3,) val="0x180001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0163/num_lines: dtype=int64 shape=(3,) val="0x180001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0163/num_pixels: dtype=int64 shape=(3,) val="0x480004" @description: type=str val="Pixels in ROI" @@ -18996,7 +18996,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0165/imaging_plane -> /general/optophysiology/Zstack0165 /processing/Acquired_ROIs/ImageSegmentation/Zstack0165/laser_power: dtype=float64 shape=(1,) val="[49.5625]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0165/num_lines: dtype=float64 shape=(1,) val="[0]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0165/num_lines: dtype=int64 shape=(1,) val="[0]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0165/num_pixels: dtype=int64 shape=(1,) val="[1]" @description: type=str val="Pixels in ROI" @@ -19041,7 +19041,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0167/imaging_plane -> /general/optophysiology/Zstack0167 /processing/Acquired_ROIs/ImageSegmentation/Zstack0167/laser_power: dtype=float64 shape=(2,) val="0x12a002e1" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0167/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0167/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0167/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -19086,7 +19086,7 @@ Generating signature for 170714_22_26_27.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0168/imaging_plane -> /general/optophysiology/Zstack0168 /processing/Acquired_ROIs/ImageSegmentation/Zstack0168/laser_power: dtype=float64 shape=(17,) val="0xa01a1981" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0168/num_lines: dtype=float64 shape=(17,) val="0x880001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0168/num_lines: dtype=int64 shape=(17,) val="0x880001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0168/num_pixels: dtype=int64 shape=(17,) val="0x5500012" @description: type=str val="Pixels in ROI" diff --git a/tests/data/200228_14_15_57.sig2 b/tests/data/200228_14_15_57.sig2 new file mode 100644 index 0000000..30e2d3a --- /dev/null +++ b/tests/data/200228_14_15_57.sig2 @@ -0,0 +1,6424 @@ +Generating signature for 200228_14_15_57.nwb + +/ + @.specloc: type=Reference val="->/specifications" +/acquisition/ROI_001_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_001." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_001_Green/data: dtype=float64 shape=(621, 58, 441) val="0x698516b8" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_001_Green/dimension: dtype=int32 shape=(2,) val="0x6bf00f5" +/acquisition/ROI_001_Green/field_of_view: dtype=float64 shape=(2,) val="0x3e7b0731" +/acquisition/ROI_001_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_001_Green/imaging_plane -> /general/optophysiology/Zstack0008_ROI_1 +/acquisition/ROI_001_Green/pixel_time_offsets: dtype=float64 shape=(621, 58, 441) val="0x2f5332be" +/acquisition/ROI_001_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_001_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_001." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_001_Red/data: dtype=float64 shape=(621, 58, 441) val="0xece01dc" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_001_Red/dimension: dtype=int32 shape=(2,) val="0x6bf00f5" +/acquisition/ROI_001_Red/field_of_view: dtype=float64 shape=(2,) val="0x3e7b0731" +/acquisition/ROI_001_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_001_Red/imaging_plane -> /general/optophysiology/Zstack0008_ROI_1 +/acquisition/ROI_001_Red/pixel_time_offsets: dtype=float64 shape=(621, 58, 441) val="0x2f5332be" +/acquisition/ROI_001_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_002_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_002." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_002_Green/data: dtype=float64 shape=(621, 58, 414) val="0xeaaf453f" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_002_Green/dimension: dtype=int32 shape=(2,) val="0x5e700da" +/acquisition/ROI_002_Green/field_of_view: dtype=float64 shape=(2,) val="0x3edd0724" +/acquisition/ROI_002_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_002_Green/imaging_plane -> /general/optophysiology/Zstack0010_ROI_2 +/acquisition/ROI_002_Green/pixel_time_offsets: dtype=float64 shape=(621, 58, 414) val="0x82f08d90" +/acquisition/ROI_002_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_002_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_002." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_002_Red/data: dtype=float64 shape=(621, 58, 414) val="0x9931cca8" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_002_Red/dimension: dtype=int32 shape=(2,) val="0x5e700da" +/acquisition/ROI_002_Red/field_of_view: dtype=float64 shape=(2,) val="0x3edd0724" +/acquisition/ROI_002_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_002_Red/imaging_plane -> /general/optophysiology/Zstack0010_ROI_2 +/acquisition/ROI_002_Red/pixel_time_offsets: dtype=float64 shape=(621, 58, 414) val="0x82f08d90" +/acquisition/ROI_002_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_003_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_003." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_003_Green/data: dtype=float64 shape=(621, 63, 432) val="0x5e3e90a8" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_003_Green/dimension: dtype=int32 shape=(2,) val="0x68b00f1" +/acquisition/ROI_003_Green/field_of_view: dtype=float64 shape=(2,) val="0x3f86077a" +/acquisition/ROI_003_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_003_Green/imaging_plane -> /general/optophysiology/Zstack0012_ROI_3 +/acquisition/ROI_003_Green/pixel_time_offsets: dtype=float64 shape=(621, 63, 432) val="0x208aee76" +/acquisition/ROI_003_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_003_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_003." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_003_Red/data: dtype=float64 shape=(621, 63, 432) val="0x446fae49" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_003_Red/dimension: dtype=int32 shape=(2,) val="0x68b00f1" +/acquisition/ROI_003_Red/field_of_view: dtype=float64 shape=(2,) val="0x3f86077a" +/acquisition/ROI_003_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_003_Red/imaging_plane -> /general/optophysiology/Zstack0012_ROI_3 +/acquisition/ROI_003_Red/pixel_time_offsets: dtype=float64 shape=(621, 63, 432) val="0x208aee76" +/acquisition/ROI_003_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_004_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_004." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_004_Green/data: dtype=float64 shape=(621, 58, 418) val="0x3fcbdebe" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_004_Green/dimension: dtype=int32 shape=(2,) val="0x60700de" +/acquisition/ROI_004_Green/field_of_view: dtype=float64 shape=(2,) val="0x40a4075f" +/acquisition/ROI_004_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_004_Green/imaging_plane -> /general/optophysiology/Zstack0015_ROI_4 +/acquisition/ROI_004_Green/pixel_time_offsets: dtype=float64 shape=(621, 58, 418) val="0xab297152" +/acquisition/ROI_004_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_004_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_004." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_004_Red/data: dtype=float64 shape=(621, 58, 418) val="0x743818dc" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_004_Red/dimension: dtype=int32 shape=(2,) val="0x60700de" +/acquisition/ROI_004_Red/field_of_view: dtype=float64 shape=(2,) val="0x40a4075f" +/acquisition/ROI_004_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_004_Red/imaging_plane -> /general/optophysiology/Zstack0015_ROI_4 +/acquisition/ROI_004_Red/pixel_time_offsets: dtype=float64 shape=(621, 58, 418) val="0xab297152" +/acquisition/ROI_004_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_005_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_005." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_005_Green/data: dtype=float64 shape=(621, 54, 396) val="0x446c2892" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_005_Green/dimension: dtype=int32 shape=(2,) val="0x54700c4" +/acquisition/ROI_005_Green/field_of_view: dtype=float64 shape=(2,) val="0x38170645" +/acquisition/ROI_005_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_005_Green/imaging_plane -> /general/optophysiology/Zstack0017_ROI_5 +/acquisition/ROI_005_Green/pixel_time_offsets: dtype=float64 shape=(621, 54, 396) val="0x765fd405" +/acquisition/ROI_005_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_005_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_005." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_005_Red/data: dtype=float64 shape=(621, 54, 396) val="0x94444b03" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_005_Red/dimension: dtype=int32 shape=(2,) val="0x54700c4" +/acquisition/ROI_005_Red/field_of_view: dtype=float64 shape=(2,) val="0x38170645" +/acquisition/ROI_005_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_005_Red/imaging_plane -> /general/optophysiology/Zstack0017_ROI_5 +/acquisition/ROI_005_Red/pixel_time_offsets: dtype=float64 shape=(621, 54, 396) val="0x765fd405" +/acquisition/ROI_005_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_006_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_006." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_006_Green/data: dtype=float64 shape=(621, 15, 40) val="0x2f116e70" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_006_Green/dimension: dtype=int32 shape=(2,) val="0x1840038" +/acquisition/ROI_006_Green/field_of_view: dtype=float64 shape=(2,) val="0x2de806af" +/acquisition/ROI_006_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_006_Green/imaging_plane -> /general/optophysiology/Zstack0034_ROI_6 +/acquisition/ROI_006_Green/pixel_time_offsets: dtype=float64 shape=(621, 15, 40) val="0xd650d1e6" +/acquisition/ROI_006_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_006_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_006." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_006_Red/data: dtype=float64 shape=(621, 15, 40) val="0x6a200570" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_006_Red/dimension: dtype=int32 shape=(2,) val="0x1840038" +/acquisition/ROI_006_Red/field_of_view: dtype=float64 shape=(2,) val="0x2de806af" +/acquisition/ROI_006_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_006_Red/imaging_plane -> /general/optophysiology/Zstack0034_ROI_6 +/acquisition/ROI_006_Red/pixel_time_offsets: dtype=float64 shape=(621, 15, 40) val="0xd650d1e6" +/acquisition/ROI_006_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_007_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_007." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_007_Green/data: dtype=float64 shape=(621, 7, 11) val="0x61c6ba2a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_007_Green/dimension: dtype=int32 shape=(2,) val="0x7c0013" +/acquisition/ROI_007_Green/field_of_view: dtype=float64 shape=(2,) val="0x4cd60827" +/acquisition/ROI_007_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_007_Green/imaging_plane -> /general/optophysiology/Zstack0036_ROI_7 +/acquisition/ROI_007_Green/pixel_time_offsets: dtype=float64 shape=(621, 7, 11) val="0x19791494" +/acquisition/ROI_007_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_007_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_007." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_007_Red/data: dtype=float64 shape=(621, 7, 11) val="0xad2e6ebf" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_007_Red/dimension: dtype=int32 shape=(2,) val="0x7c0013" +/acquisition/ROI_007_Red/field_of_view: dtype=float64 shape=(2,) val="0x4cd60827" +/acquisition/ROI_007_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_007_Red/imaging_plane -> /general/optophysiology/Zstack0036_ROI_7 +/acquisition/ROI_007_Red/pixel_time_offsets: dtype=float64 shape=(621, 7, 11) val="0x19791494" +/acquisition/ROI_007_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_008_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_008." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_008_Green/data: dtype=float64 shape=(621, 8, 15) val="0xd4ac5fa8" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_008_Green/dimension: dtype=int32 shape=(2,) val="0xa00018" +/acquisition/ROI_008_Green/field_of_view: dtype=float64 shape=(2,) val="0x49f50831" +/acquisition/ROI_008_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_008_Green/imaging_plane -> /general/optophysiology/Zstack0036_ROI_8 +/acquisition/ROI_008_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 15) val="0x9a24f367" +/acquisition/ROI_008_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_008_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_008." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_008_Red/data: dtype=float64 shape=(621, 8, 15) val="0xd0368725" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_008_Red/dimension: dtype=int32 shape=(2,) val="0xa00018" +/acquisition/ROI_008_Red/field_of_view: dtype=float64 shape=(2,) val="0x49f50831" +/acquisition/ROI_008_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_008_Red/imaging_plane -> /general/optophysiology/Zstack0036_ROI_8 +/acquisition/ROI_008_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 15) val="0x9a24f367" +/acquisition/ROI_008_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_009_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_009." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_009_Green/data: dtype=float64 shape=(621, 9, 35) val="0x5951ce14" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_009_Green/dimension: dtype=int32 shape=(2,) val="0x144002d" +/acquisition/ROI_009_Green/field_of_view: dtype=float64 shape=(2,) val="0x3f950789" +/acquisition/ROI_009_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_009_Green/imaging_plane -> /general/optophysiology/Zstack0035_ROI_9 +/acquisition/ROI_009_Green/pixel_time_offsets: dtype=float64 shape=(621, 9, 35) val="0x3328dc" +/acquisition/ROI_009_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_009_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_009." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_009_Red/data: dtype=float64 shape=(621, 9, 35) val="0xd4556d63" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_009_Red/dimension: dtype=int32 shape=(2,) val="0x144002d" +/acquisition/ROI_009_Red/field_of_view: dtype=float64 shape=(2,) val="0x3f950789" +/acquisition/ROI_009_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_009_Red/imaging_plane -> /general/optophysiology/Zstack0035_ROI_9 +/acquisition/ROI_009_Red/pixel_time_offsets: dtype=float64 shape=(621, 9, 35) val="0x3328dc" +/acquisition/ROI_009_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_010_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_010." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_010_Green/data: dtype=float64 shape=(621, 8, 16) val="0x18b73564" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_010_Green/dimension: dtype=int32 shape=(2,) val="0xa80019" +/acquisition/ROI_010_Green/field_of_view: dtype=float64 shape=(2,) val="0x3c160709" +/acquisition/ROI_010_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_010_Green/imaging_plane -> /general/optophysiology/Zstack0036_ROI_10 +/acquisition/ROI_010_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 16) val="0xab8c850" +/acquisition/ROI_010_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_010_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_010." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_010_Red/data: dtype=float64 shape=(621, 8, 16) val="0x6762b554" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_010_Red/dimension: dtype=int32 shape=(2,) val="0xa80019" +/acquisition/ROI_010_Red/field_of_view: dtype=float64 shape=(2,) val="0x3c160709" +/acquisition/ROI_010_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_010_Red/imaging_plane -> /general/optophysiology/Zstack0036_ROI_10 +/acquisition/ROI_010_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 16) val="0xab8c850" +/acquisition/ROI_010_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_011_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_011." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_011_Green/data: dtype=float64 shape=(621, 12, 13) val="0xbf357f20" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_011_Green/dimension: dtype=int32 shape=(2,) val="0xa0001a" +/acquisition/ROI_011_Green/field_of_view: dtype=float64 shape=(2,) val="0x56540a34" +/acquisition/ROI_011_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_011_Green/imaging_plane -> /general/optophysiology/Zstack0037_ROI_11 +/acquisition/ROI_011_Green/pixel_time_offsets: dtype=float64 shape=(621, 12, 13) val="0xd40a2524" +/acquisition/ROI_011_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_011_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_011." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_011_Red/data: dtype=float64 shape=(621, 12, 13) val="0xa7f2c9a5" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_011_Red/dimension: dtype=int32 shape=(2,) val="0xa0001a" +/acquisition/ROI_011_Red/field_of_view: dtype=float64 shape=(2,) val="0x56540a34" +/acquisition/ROI_011_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_011_Red/imaging_plane -> /general/optophysiology/Zstack0037_ROI_11 +/acquisition/ROI_011_Red/pixel_time_offsets: dtype=float64 shape=(621, 12, 13) val="0xd40a2524" +/acquisition/ROI_011_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_012_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_012." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_012_Green/data: dtype=float64 shape=(621, 9, 35) val="0x5d5694b1" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_012_Green/dimension: dtype=int32 shape=(2,) val="0x144002d" +/acquisition/ROI_012_Green/field_of_view: dtype=float64 shape=(2,) val="0x3f950789" +/acquisition/ROI_012_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_012_Green/imaging_plane -> /general/optophysiology/Zstack0041_ROI_12 +/acquisition/ROI_012_Green/pixel_time_offsets: dtype=float64 shape=(621, 9, 35) val="0x7c98bb42" +/acquisition/ROI_012_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_012_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_012." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_012_Red/data: dtype=float64 shape=(621, 9, 35) val="0x6c6f2fdb" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_012_Red/dimension: dtype=int32 shape=(2,) val="0x144002d" +/acquisition/ROI_012_Red/field_of_view: dtype=float64 shape=(2,) val="0x3f950789" +/acquisition/ROI_012_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_012_Red/imaging_plane -> /general/optophysiology/Zstack0041_ROI_12 +/acquisition/ROI_012_Red/pixel_time_offsets: dtype=float64 shape=(621, 9, 35) val="0x7c98bb42" +/acquisition/ROI_012_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_013_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_013." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_013_Green/data: dtype=float64 shape=(621, 8, 12) val="0xb3766edd" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_013_Green/dimension: dtype=int32 shape=(2,) val="0x880015" +/acquisition/ROI_013_Green/field_of_view: dtype=float64 shape=(2,) val="0x4fa308ab" +/acquisition/ROI_013_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_013_Green/imaging_plane -> /general/optophysiology/Zstack0039_ROI_13 +/acquisition/ROI_013_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 12) val="0xc877926a" +/acquisition/ROI_013_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_013_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_013." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_013_Red/data: dtype=float64 shape=(621, 8, 12) val="0x9f158001" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_013_Red/dimension: dtype=int32 shape=(2,) val="0x880015" +/acquisition/ROI_013_Red/field_of_view: dtype=float64 shape=(2,) val="0x4fa308ab" +/acquisition/ROI_013_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_013_Red/imaging_plane -> /general/optophysiology/Zstack0039_ROI_13 +/acquisition/ROI_013_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 12) val="0xc877926a" +/acquisition/ROI_013_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_014_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_014." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_014_Green/data: dtype=float64 shape=(621, 8, 14) val="0x4ff7a74c" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_014_Green/dimension: dtype=int32 shape=(2,) val="0x980017" +/acquisition/ROI_014_Green/field_of_view: dtype=float64 shape=(2,) val="0x42e7075b" +/acquisition/ROI_014_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_014_Green/imaging_plane -> /general/optophysiology/Zstack0047_ROI_14 +/acquisition/ROI_014_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 14) val="0xb5032dfa" +/acquisition/ROI_014_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_014_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_014." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_014_Red/data: dtype=float64 shape=(621, 8, 14) val="0xa24be0eb" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_014_Red/dimension: dtype=int32 shape=(2,) val="0x980017" +/acquisition/ROI_014_Red/field_of_view: dtype=float64 shape=(2,) val="0x42e7075b" +/acquisition/ROI_014_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_014_Red/imaging_plane -> /general/optophysiology/Zstack0047_ROI_14 +/acquisition/ROI_014_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 14) val="0xb5032dfa" +/acquisition/ROI_014_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_015_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_015." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_015_Green/data: dtype=float64 shape=(621, 10, 23) val="0x7006ff62" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_015_Green/dimension: dtype=int32 shape=(2,) val="0xe80022" +/acquisition/ROI_015_Green/field_of_view: dtype=float64 shape=(2,) val="0x28e30530" +/acquisition/ROI_015_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_015_Green/imaging_plane -> /general/optophysiology/Zstack0046_ROI_15 +/acquisition/ROI_015_Green/pixel_time_offsets: dtype=float64 shape=(621, 10, 23) val="0x172c7568" +/acquisition/ROI_015_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_015_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_015." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_015_Red/data: dtype=float64 shape=(621, 10, 23) val="0x6c3e54aa" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_015_Red/dimension: dtype=int32 shape=(2,) val="0xe80022" +/acquisition/ROI_015_Red/field_of_view: dtype=float64 shape=(2,) val="0x28e30530" +/acquisition/ROI_015_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_015_Red/imaging_plane -> /general/optophysiology/Zstack0046_ROI_15 +/acquisition/ROI_015_Red/pixel_time_offsets: dtype=float64 shape=(621, 10, 23) val="0x172c7568" +/acquisition/ROI_015_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_016_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_016." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_016_Green/data: dtype=float64 shape=(621, 8, 9) val="0xfb11a8b7" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_016_Green/dimension: dtype=int32 shape=(2,) val="0x700012" +/acquisition/ROI_016_Green/field_of_view: dtype=float64 shape=(2,) val="0x439707a6" +/acquisition/ROI_016_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_016_Green/imaging_plane -> /general/optophysiology/Zstack0043_ROI_16 +/acquisition/ROI_016_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 9) val="0xe3be4b91" +/acquisition/ROI_016_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_016_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_016." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_016_Red/data: dtype=float64 shape=(621, 8, 9) val="0x50e9ce7a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_016_Red/dimension: dtype=int32 shape=(2,) val="0x700012" +/acquisition/ROI_016_Red/field_of_view: dtype=float64 shape=(2,) val="0x439707a6" +/acquisition/ROI_016_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_016_Red/imaging_plane -> /general/optophysiology/Zstack0043_ROI_16 +/acquisition/ROI_016_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 9) val="0xe3be4b91" +/acquisition/ROI_016_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_017_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_017." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_017_Green/data: dtype=float64 shape=(621, 8, 10) val="0x8d8b2b96" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_017_Green/dimension: dtype=int32 shape=(2,) val="0x780013" +/acquisition/ROI_017_Green/field_of_view: dtype=float64 shape=(2,) val="0x31e00656" +/acquisition/ROI_017_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_017_Green/imaging_plane -> /general/optophysiology/Zstack0042_ROI_17 +/acquisition/ROI_017_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 10) val="0xfe1cb066" +/acquisition/ROI_017_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_017_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_017." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_017_Red/data: dtype=float64 shape=(621, 8, 10) val="0xb0694ac2" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_017_Red/dimension: dtype=int32 shape=(2,) val="0x780013" +/acquisition/ROI_017_Red/field_of_view: dtype=float64 shape=(2,) val="0x31e00656" +/acquisition/ROI_017_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_017_Red/imaging_plane -> /general/optophysiology/Zstack0042_ROI_17 +/acquisition/ROI_017_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 10) val="0xfe1cb066" +/acquisition/ROI_017_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_018_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_018." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_018_Green/data: dtype=float64 shape=(621, 8, 10) val="0x1beaa970" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_018_Green/dimension: dtype=int32 shape=(2,) val="0x780013" +/acquisition/ROI_018_Green/field_of_view: dtype=float64 shape=(2,) val="0x31e00656" +/acquisition/ROI_018_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_018_Green/imaging_plane -> /general/optophysiology/Zstack0041_ROI_18 +/acquisition/ROI_018_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 10) val="0x94ec9e2d" +/acquisition/ROI_018_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_018_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_018." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_018_Red/data: dtype=float64 shape=(621, 8, 10) val="0x12f0f5cd" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_018_Red/dimension: dtype=int32 shape=(2,) val="0x780013" +/acquisition/ROI_018_Red/field_of_view: dtype=float64 shape=(2,) val="0x31e00656" +/acquisition/ROI_018_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_018_Red/imaging_plane -> /general/optophysiology/Zstack0041_ROI_18 +/acquisition/ROI_018_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 10) val="0x94ec9e2d" +/acquisition/ROI_018_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_019_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_019." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_019_Green/data: dtype=float64 shape=(621, 7, 9) val="0xc92429b0" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_019_Green/dimension: dtype=int32 shape=(2,) val="0x6c0011" +/acquisition/ROI_019_Green/field_of_view: dtype=float64 shape=(2,) val="0x47d807f8" +/acquisition/ROI_019_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_019_Green/imaging_plane -> /general/optophysiology/Zstack0040_ROI_19 +/acquisition/ROI_019_Green/pixel_time_offsets: dtype=float64 shape=(621, 7, 9) val="0xa8314f0d" +/acquisition/ROI_019_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_019_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_019." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_019_Red/data: dtype=float64 shape=(621, 7, 9) val="0xa0b69c48" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_019_Red/dimension: dtype=int32 shape=(2,) val="0x6c0011" +/acquisition/ROI_019_Red/field_of_view: dtype=float64 shape=(2,) val="0x47d807f8" +/acquisition/ROI_019_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_019_Red/imaging_plane -> /general/optophysiology/Zstack0040_ROI_19 +/acquisition/ROI_019_Red/pixel_time_offsets: dtype=float64 shape=(621, 7, 9) val="0xa8314f0d" +/acquisition/ROI_019_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_020_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_020." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_020_Green/data: dtype=float64 shape=(621, 10, 11) val="0x390cc2" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_020_Green/dimension: dtype=int32 shape=(2,) val="0x880016" +/acquisition/ROI_020_Green/field_of_view: dtype=float64 shape=(2,) val="0x44170732" +/acquisition/ROI_020_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_020_Green/imaging_plane -> /general/optophysiology/Zstack0041_ROI_20 +/acquisition/ROI_020_Green/pixel_time_offsets: dtype=float64 shape=(621, 10, 11) val="0xef0ea404" +/acquisition/ROI_020_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_020_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_020." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_020_Red/data: dtype=float64 shape=(621, 10, 11) val="0xa6fc383c" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_020_Red/dimension: dtype=int32 shape=(2,) val="0x880016" +/acquisition/ROI_020_Red/field_of_view: dtype=float64 shape=(2,) val="0x44170732" +/acquisition/ROI_020_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_020_Red/imaging_plane -> /general/optophysiology/Zstack0041_ROI_20 +/acquisition/ROI_020_Red/pixel_time_offsets: dtype=float64 shape=(621, 10, 11) val="0xef0ea404" +/acquisition/ROI_020_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_021_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_021." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_021_Green/data: dtype=float64 shape=(621, 11, 13) val="0xe3a044a0" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_021_Green/dimension: dtype=int32 shape=(2,) val="0x9c0019" +/acquisition/ROI_021_Green/field_of_view: dtype=float64 shape=(2,) val="0x55f6095e" +/acquisition/ROI_021_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_021_Green/imaging_plane -> /general/optophysiology/Zstack0039_ROI_21 +/acquisition/ROI_021_Green/pixel_time_offsets: dtype=float64 shape=(621, 11, 13) val="0x5938a377" +/acquisition/ROI_021_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_021_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_021." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_021_Red/data: dtype=float64 shape=(621, 11, 13) val="0x424e35b3" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_021_Red/dimension: dtype=int32 shape=(2,) val="0x9c0019" +/acquisition/ROI_021_Red/field_of_view: dtype=float64 shape=(2,) val="0x55f6095e" +/acquisition/ROI_021_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_021_Red/imaging_plane -> /general/optophysiology/Zstack0039_ROI_21 +/acquisition/ROI_021_Red/pixel_time_offsets: dtype=float64 shape=(621, 11, 13) val="0x5938a377" +/acquisition/ROI_021_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_022_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_022." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_022_Green/data: dtype=float64 shape=(621, 11, 12) val="0x40cb9fb9" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_022_Green/dimension: dtype=int32 shape=(2,) val="0x940018" +/acquisition/ROI_022_Green/field_of_view: dtype=float64 shape=(2,) val="0x55e20987" +/acquisition/ROI_022_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_022_Green/imaging_plane -> /general/optophysiology/Zstack0033_ROI_22 +/acquisition/ROI_022_Green/pixel_time_offsets: dtype=float64 shape=(621, 11, 12) val="0x3247e315" +/acquisition/ROI_022_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_022_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_022." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_022_Red/data: dtype=float64 shape=(621, 11, 12) val="0x6946bb52" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_022_Red/dimension: dtype=int32 shape=(2,) val="0x940018" +/acquisition/ROI_022_Red/field_of_view: dtype=float64 shape=(2,) val="0x55e20987" +/acquisition/ROI_022_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_022_Red/imaging_plane -> /general/optophysiology/Zstack0033_ROI_22 +/acquisition/ROI_022_Red/pixel_time_offsets: dtype=float64 shape=(621, 11, 12) val="0x3247e315" +/acquisition/ROI_022_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_023_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_023." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_023_Green/data: dtype=float64 shape=(621, 8, 11) val="0x8888eba4" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_023_Green/dimension: dtype=int32 shape=(2,) val="0x800014" +/acquisition/ROI_023_Green/field_of_view: dtype=float64 shape=(2,) val="0x489507d5" +/acquisition/ROI_023_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_023_Green/imaging_plane -> /general/optophysiology/Zstack0035_ROI_23 +/acquisition/ROI_023_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 11) val="0x9201f0aa" +/acquisition/ROI_023_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_023_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_023." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_023_Red/data: dtype=float64 shape=(621, 8, 11) val="0x637be544" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_023_Red/dimension: dtype=int32 shape=(2,) val="0x800014" +/acquisition/ROI_023_Red/field_of_view: dtype=float64 shape=(2,) val="0x489507d5" +/acquisition/ROI_023_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_023_Red/imaging_plane -> /general/optophysiology/Zstack0035_ROI_23 +/acquisition/ROI_023_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 11) val="0x9201f0aa" +/acquisition/ROI_023_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_024_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_024." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_024_Green/data: dtype=float64 shape=(621, 11, 12) val="0xd84d6ed1" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_024_Green/dimension: dtype=int32 shape=(2,) val="0x940018" +/acquisition/ROI_024_Green/field_of_view: dtype=float64 shape=(2,) val="0x55e20987" +/acquisition/ROI_024_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_024_Green/imaging_plane -> /general/optophysiology/Zstack0037_ROI_24 +/acquisition/ROI_024_Green/pixel_time_offsets: dtype=float64 shape=(621, 11, 12) val="0x908ea6a9" +/acquisition/ROI_024_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_024_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_024." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_024_Red/data: dtype=float64 shape=(621, 11, 12) val="0x16455018" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_024_Red/dimension: dtype=int32 shape=(2,) val="0x940018" +/acquisition/ROI_024_Red/field_of_view: dtype=float64 shape=(2,) val="0x55e20987" +/acquisition/ROI_024_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_024_Red/imaging_plane -> /general/optophysiology/Zstack0037_ROI_24 +/acquisition/ROI_024_Red/pixel_time_offsets: dtype=float64 shape=(621, 11, 12) val="0x908ea6a9" +/acquisition/ROI_024_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_025_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_025." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_025_Green/data: dtype=float64 shape=(621, 8, 9) val="0x26dcea81" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_025_Green/dimension: dtype=int32 shape=(2,) val="0x700012" +/acquisition/ROI_025_Green/field_of_view: dtype=float64 shape=(2,) val="0x439707a6" +/acquisition/ROI_025_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_025_Green/imaging_plane -> /general/optophysiology/Zstack0041_ROI_25 +/acquisition/ROI_025_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 9) val="0x8807fbea" +/acquisition/ROI_025_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_025_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_025." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_025_Red/data: dtype=float64 shape=(621, 8, 9) val="0xc215d470" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_025_Red/dimension: dtype=int32 shape=(2,) val="0x700012" +/acquisition/ROI_025_Red/field_of_view: dtype=float64 shape=(2,) val="0x439707a6" +/acquisition/ROI_025_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_025_Red/imaging_plane -> /general/optophysiology/Zstack0041_ROI_25 +/acquisition/ROI_025_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 9) val="0x8807fbea" +/acquisition/ROI_025_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_026_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_026." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_026_Green/data: dtype=float64 shape=(621, 10, 14) val="0xb2a78f75" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_026_Green/dimension: dtype=int32 shape=(2,) val="0xa00019" +/acquisition/ROI_026_Green/field_of_view: dtype=float64 shape=(2,) val="0x3e6906b8" +/acquisition/ROI_026_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_026_Green/imaging_plane -> /general/optophysiology/Zstack0033_ROI_26 +/acquisition/ROI_026_Green/pixel_time_offsets: dtype=float64 shape=(621, 10, 14) val="0x5fa0fad4" +/acquisition/ROI_026_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_026_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_026." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_026_Red/data: dtype=float64 shape=(621, 10, 14) val="0xc0974bf6" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_026_Red/dimension: dtype=int32 shape=(2,) val="0xa00019" +/acquisition/ROI_026_Red/field_of_view: dtype=float64 shape=(2,) val="0x3e6906b8" +/acquisition/ROI_026_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_026_Red/imaging_plane -> /general/optophysiology/Zstack0033_ROI_26 +/acquisition/ROI_026_Red/pixel_time_offsets: dtype=float64 shape=(621, 10, 14) val="0x5fa0fad4" +/acquisition/ROI_026_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_027_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_027." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_027_Green/data: dtype=float64 shape=(621, 9, 10) val="0xa780ef82" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_027_Green/dimension: dtype=int32 shape=(2,) val="0x7c0014" +/acquisition/ROI_027_Green/field_of_view: dtype=float64 shape=(2,) val="0x34990703" +/acquisition/ROI_027_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_027_Green/imaging_plane -> /general/optophysiology/Zstack0036_ROI_27 +/acquisition/ROI_027_Green/pixel_time_offsets: dtype=float64 shape=(621, 9, 10) val="0x119bf29f" +/acquisition/ROI_027_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_027_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_027." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_027_Red/data: dtype=float64 shape=(621, 9, 10) val="0x8080cfab" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_027_Red/dimension: dtype=int32 shape=(2,) val="0x7c0014" +/acquisition/ROI_027_Red/field_of_view: dtype=float64 shape=(2,) val="0x34990703" +/acquisition/ROI_027_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_027_Red/imaging_plane -> /general/optophysiology/Zstack0036_ROI_27 +/acquisition/ROI_027_Red/pixel_time_offsets: dtype=float64 shape=(621, 9, 10) val="0x119bf29f" +/acquisition/ROI_027_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_028_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_028." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_028_Green/data: dtype=float64 shape=(621, 9, 12) val="0x2139f608" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_028_Green/dimension: dtype=int32 shape=(2,) val="0x8c0016" +/acquisition/ROI_028_Green/field_of_view: dtype=float64 shape=(2,) val="0x525c0958" +/acquisition/ROI_028_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_028_Green/imaging_plane -> /general/optophysiology/Zstack0037_ROI_28 +/acquisition/ROI_028_Green/pixel_time_offsets: dtype=float64 shape=(621, 9, 12) val="0x3d5317d6" +/acquisition/ROI_028_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_028_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_028." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_028_Red/data: dtype=float64 shape=(621, 9, 12) val="0x9613a94" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_028_Red/dimension: dtype=int32 shape=(2,) val="0x8c0016" +/acquisition/ROI_028_Red/field_of_view: dtype=float64 shape=(2,) val="0x525c0958" +/acquisition/ROI_028_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_028_Red/imaging_plane -> /general/optophysiology/Zstack0037_ROI_28 +/acquisition/ROI_028_Red/pixel_time_offsets: dtype=float64 shape=(621, 9, 12) val="0x3d5317d6" +/acquisition/ROI_028_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_029_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_029." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_029_Green/data: dtype=float64 shape=(621, 8, 9) val="0xb5a41e57" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_029_Green/dimension: dtype=int32 shape=(2,) val="0x700012" +/acquisition/ROI_029_Green/field_of_view: dtype=float64 shape=(2,) val="0x439707a6" +/acquisition/ROI_029_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_029_Green/imaging_plane -> /general/optophysiology/Zstack0038_ROI_29 +/acquisition/ROI_029_Green/pixel_time_offsets: dtype=float64 shape=(621, 8, 9) val="0x3dee72e7" +/acquisition/ROI_029_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_029_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_029." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_029_Red/data: dtype=float64 shape=(621, 8, 9) val="0x8c545e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_029_Red/dimension: dtype=int32 shape=(2,) val="0x700012" +/acquisition/ROI_029_Red/field_of_view: dtype=float64 shape=(2,) val="0x439707a6" +/acquisition/ROI_029_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_029_Red/imaging_plane -> /general/optophysiology/Zstack0038_ROI_29 +/acquisition/ROI_029_Red/pixel_time_offsets: dtype=float64 shape=(621, 8, 9) val="0x3dee72e7" +/acquisition/ROI_029_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_030_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_030." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_030_Green/data: dtype=float64 shape=(621, 9, 10) val="0x1dc57ace" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_030_Green/dimension: dtype=int32 shape=(2,) val="0x7c0014" +/acquisition/ROI_030_Green/field_of_view: dtype=float64 shape=(2,) val="0x34990703" +/acquisition/ROI_030_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_030_Green/imaging_plane -> /general/optophysiology/Zstack0036_ROI_30 +/acquisition/ROI_030_Green/pixel_time_offsets: dtype=float64 shape=(621, 9, 10) val="0x4b0d5757" +/acquisition/ROI_030_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_030_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_030." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_030_Red/data: dtype=float64 shape=(621, 9, 10) val="0x140dce17" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_030_Red/dimension: dtype=int32 shape=(2,) val="0x7c0014" +/acquisition/ROI_030_Red/field_of_view: dtype=float64 shape=(2,) val="0x34990703" +/acquisition/ROI_030_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_030_Red/imaging_plane -> /general/optophysiology/Zstack0036_ROI_30 +/acquisition/ROI_030_Red/pixel_time_offsets: dtype=float64 shape=(621, 9, 10) val="0x4b0d5757" +/acquisition/ROI_030_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_031_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_031." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_031_Green/data: dtype=float64 shape=(621, 14, 18) val="0xd66cbb14" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_031_Green/dimension: dtype=int32 shape=(2,) val="0xd00021" +/acquisition/ROI_031_Green/field_of_view: dtype=float64 shape=(2,) val="0x48980818" +/acquisition/ROI_031_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_031_Green/imaging_plane -> /general/optophysiology/Zstack0041_ROI_31 +/acquisition/ROI_031_Green/pixel_time_offsets: dtype=float64 shape=(621, 14, 18) val="0x96995c43" +/acquisition/ROI_031_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_031_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_031." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_031_Red/data: dtype=float64 shape=(621, 14, 18) val="0x52073b71" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_031_Red/dimension: dtype=int32 shape=(2,) val="0xd00021" +/acquisition/ROI_031_Red/field_of_view: dtype=float64 shape=(2,) val="0x48980818" +/acquisition/ROI_031_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_031_Red/imaging_plane -> /general/optophysiology/Zstack0041_ROI_31 +/acquisition/ROI_031_Red/pixel_time_offsets: dtype=float64 shape=(621, 14, 18) val="0x96995c43" +/acquisition/ROI_031_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_032_Green + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the green channel in ROI_032." + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_032_Green/data: dtype=float64 shape=(621, 9, 10) val="0x69a6309f" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_032_Green/dimension: dtype=int32 shape=(2,) val="0x7c0014" +/acquisition/ROI_032_Green/field_of_view: dtype=float64 shape=(2,) val="0x34990703" +/acquisition/ROI_032_Green/format: dtype=object shape=() val="raw" +/acquisition/ROI_032_Green/imaging_plane -> /general/optophysiology/Zstack0036_ROI_32 +/acquisition/ROI_032_Green/pixel_time_offsets: dtype=float64 shape=(621, 9, 10) val="0xfd1eaddb" +/acquisition/ROI_032_Green/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/ROI_032_Red + @comments: type=str val="The AOL microscope can acquire just the pixels comprising defined ROIs. This timeseries records those pixels over time for a single ROI & channel." + @description: type=str val="Fluorescence data acquired from the red channel in ROI_032." + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/ROI_032_Red/data: dtype=float64 shape=(621, 9, 10) val="0xc4b3b611" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/ROI_032_Red/dimension: dtype=int32 shape=(2,) val="0x7c0014" +/acquisition/ROI_032_Red/field_of_view: dtype=float64 shape=(2,) val="0x34990703" +/acquisition/ROI_032_Red/format: dtype=object shape=() val="raw" +/acquisition/ROI_032_Red/imaging_plane -> /general/optophysiology/Zstack0036_ROI_32 +/acquisition/ROI_032_Red/pixel_time_offsets: dtype=float64 shape=(621, 9, 10) val="0xfd1eaddb" +/acquisition/ROI_032_Red/timestamps: dtype=float64 shape=(621,) val="0x3f3a6b13" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0001 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0001/data: dtype=uint16 shape=(1, 200, 200) val="0xe7f85534" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0001/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0001/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0001/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0001/imaging_plane -> /general/optophysiology/Zstack0001 +/acquisition/Zstack_Green_0001/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0002 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0002/data: dtype=uint16 shape=(1, 200, 200) val="0xc44df28f" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0002/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0002/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0002/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0002/imaging_plane -> /general/optophysiology/Zstack0002 +/acquisition/Zstack_Green_0002/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0003 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0003/data: dtype=uint16 shape=(1, 200, 200) val="0x7f0ffee7" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0003/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0003/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0003/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0003/imaging_plane -> /general/optophysiology/Zstack0003 +/acquisition/Zstack_Green_0003/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0004 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0004/data: dtype=uint16 shape=(1, 200, 200) val="0x9812b376" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0004/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0004/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0004/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0004/imaging_plane -> /general/optophysiology/Zstack0004 +/acquisition/Zstack_Green_0004/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0005 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0005/data: dtype=uint16 shape=(1, 200, 200) val="0xf904e2f3" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0005/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0005/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0005/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0005/imaging_plane -> /general/optophysiology/Zstack0005 +/acquisition/Zstack_Green_0005/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0006 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0006/data: dtype=uint16 shape=(1, 200, 200) val="0xa6591142" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0006/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0006/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0006/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0006/imaging_plane -> /general/optophysiology/Zstack0006 +/acquisition/Zstack_Green_0006/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0007 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0007/data: dtype=uint16 shape=(1, 200, 200) val="0x1f516b30" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0007/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0007/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0007/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0007/imaging_plane -> /general/optophysiology/Zstack0007 +/acquisition/Zstack_Green_0007/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0008 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0008/data: dtype=uint16 shape=(1, 200, 200) val="0xb50a66e2" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0008/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0008/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0008/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0008/imaging_plane -> /general/optophysiology/Zstack0008 +/acquisition/Zstack_Green_0008/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0009 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0009/data: dtype=uint16 shape=(1, 200, 200) val="0x3a7e3077" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0009/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0009/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0009/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0009/imaging_plane -> /general/optophysiology/Zstack0009 +/acquisition/Zstack_Green_0009/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0010 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0010/data: dtype=uint16 shape=(1, 200, 200) val="0x98827145" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0010/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0010/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0010/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0010/imaging_plane -> /general/optophysiology/Zstack0010 +/acquisition/Zstack_Green_0010/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0011 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0011/data: dtype=uint16 shape=(1, 200, 200) val="0xe5209bd3" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0011/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0011/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0011/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0011/imaging_plane -> /general/optophysiology/Zstack0011 +/acquisition/Zstack_Green_0011/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0012 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0012/data: dtype=uint16 shape=(1, 200, 200) val="0x75fb7eec" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0012/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0012/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0012/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0012/imaging_plane -> /general/optophysiology/Zstack0012 +/acquisition/Zstack_Green_0012/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0013 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0013/data: dtype=uint16 shape=(1, 200, 200) val="0xe5415bf2" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0013/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0013/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0013/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0013/imaging_plane -> /general/optophysiology/Zstack0013 +/acquisition/Zstack_Green_0013/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0014 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0014/data: dtype=uint16 shape=(1, 200, 200) val="0x738d3594" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0014/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0014/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0014/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0014/imaging_plane -> /general/optophysiology/Zstack0014 +/acquisition/Zstack_Green_0014/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0015 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0015/data: dtype=uint16 shape=(1, 200, 200) val="0xa5ff1839" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0015/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0015/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0015/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0015/imaging_plane -> /general/optophysiology/Zstack0015 +/acquisition/Zstack_Green_0015/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0016 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0016/data: dtype=uint16 shape=(1, 200, 200) val="0x635be73e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0016/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0016/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0016/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0016/imaging_plane -> /general/optophysiology/Zstack0016 +/acquisition/Zstack_Green_0016/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0017 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0017/data: dtype=uint16 shape=(1, 200, 200) val="0xbc4bc668" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0017/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0017/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0017/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0017/imaging_plane -> /general/optophysiology/Zstack0017 +/acquisition/Zstack_Green_0017/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0018 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0018/data: dtype=uint16 shape=(1, 200, 200) val="0x907d926e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0018/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0018/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0018/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0018/imaging_plane -> /general/optophysiology/Zstack0018 +/acquisition/Zstack_Green_0018/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0019 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0019/data: dtype=uint16 shape=(1, 200, 200) val="0x18bdb4ae" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0019/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0019/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0019/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0019/imaging_plane -> /general/optophysiology/Zstack0019 +/acquisition/Zstack_Green_0019/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0020 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0020/data: dtype=uint16 shape=(1, 200, 200) val="0x886080ad" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0020/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0020/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0020/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0020/imaging_plane -> /general/optophysiology/Zstack0020 +/acquisition/Zstack_Green_0020/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0021 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0021/data: dtype=uint16 shape=(1, 200, 200) val="0xe04b6d4c" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0021/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0021/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0021/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0021/imaging_plane -> /general/optophysiology/Zstack0021 +/acquisition/Zstack_Green_0021/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0022 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0022/data: dtype=uint16 shape=(1, 200, 200) val="0xa24f75f5" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0022/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0022/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0022/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0022/imaging_plane -> /general/optophysiology/Zstack0022 +/acquisition/Zstack_Green_0022/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0023 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0023/data: dtype=uint16 shape=(1, 200, 200) val="0x4c009b89" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0023/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0023/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0023/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0023/imaging_plane -> /general/optophysiology/Zstack0023 +/acquisition/Zstack_Green_0023/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0024 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0024/data: dtype=uint16 shape=(1, 200, 200) val="0x3fb304b2" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0024/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0024/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0024/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0024/imaging_plane -> /general/optophysiology/Zstack0024 +/acquisition/Zstack_Green_0024/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0025 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0025/data: dtype=uint16 shape=(1, 200, 200) val="0xad0e6386" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0025/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0025/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0025/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0025/imaging_plane -> /general/optophysiology/Zstack0025 +/acquisition/Zstack_Green_0025/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0026 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0026/data: dtype=uint16 shape=(1, 200, 200) val="0x140fe4d5" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0026/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0026/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0026/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0026/imaging_plane -> /general/optophysiology/Zstack0026 +/acquisition/Zstack_Green_0026/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0027 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0027/data: dtype=uint16 shape=(1, 200, 200) val="0xde39fa39" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0027/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0027/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0027/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0027/imaging_plane -> /general/optophysiology/Zstack0027 +/acquisition/Zstack_Green_0027/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0028 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0028/data: dtype=uint16 shape=(1, 200, 200) val="0x8b81aa26" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0028/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0028/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0028/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0028/imaging_plane -> /general/optophysiology/Zstack0028 +/acquisition/Zstack_Green_0028/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0029 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0029/data: dtype=uint16 shape=(1, 200, 200) val="0xc802bfbe" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0029/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0029/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0029/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0029/imaging_plane -> /general/optophysiology/Zstack0029 +/acquisition/Zstack_Green_0029/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0030 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0030/data: dtype=uint16 shape=(1, 200, 200) val="0x7fb91cce" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0030/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0030/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0030/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0030/imaging_plane -> /general/optophysiology/Zstack0030 +/acquisition/Zstack_Green_0030/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0031 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0031/data: dtype=uint16 shape=(1, 200, 200) val="0x20f26ed6" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0031/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0031/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0031/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0031/imaging_plane -> /general/optophysiology/Zstack0031 +/acquisition/Zstack_Green_0031/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0032 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0032/data: dtype=uint16 shape=(1, 200, 200) val="0x40ee3b66" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0032/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0032/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0032/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0032/imaging_plane -> /general/optophysiology/Zstack0032 +/acquisition/Zstack_Green_0032/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0033 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0033/data: dtype=uint16 shape=(1, 200, 200) val="0x67b7af53" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0033/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0033/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0033/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0033/imaging_plane -> /general/optophysiology/Zstack0033 +/acquisition/Zstack_Green_0033/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0034 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0034/data: dtype=uint16 shape=(1, 200, 200) val="0x6f636436" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0034/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0034/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0034/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0034/imaging_plane -> /general/optophysiology/Zstack0034 +/acquisition/Zstack_Green_0034/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0035 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0035/data: dtype=uint16 shape=(1, 200, 200) val="0x71b6814a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0035/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0035/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0035/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0035/imaging_plane -> /general/optophysiology/Zstack0035 +/acquisition/Zstack_Green_0035/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0036 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0036/data: dtype=uint16 shape=(1, 200, 200) val="0x15ce17ba" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0036/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0036/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0036/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0036/imaging_plane -> /general/optophysiology/Zstack0036 +/acquisition/Zstack_Green_0036/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0037 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0037/data: dtype=uint16 shape=(1, 200, 200) val="0x1d23baf5" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0037/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0037/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0037/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0037/imaging_plane -> /general/optophysiology/Zstack0037 +/acquisition/Zstack_Green_0037/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0038 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0038/data: dtype=uint16 shape=(1, 200, 200) val="0x6dec529f" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0038/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0038/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0038/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0038/imaging_plane -> /general/optophysiology/Zstack0038 +/acquisition/Zstack_Green_0038/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0039 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0039/data: dtype=uint16 shape=(1, 200, 200) val="0x428fa1c1" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0039/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0039/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0039/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0039/imaging_plane -> /general/optophysiology/Zstack0039 +/acquisition/Zstack_Green_0039/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0040 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0040/data: dtype=uint16 shape=(1, 200, 200) val="0x500a7dbb" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0040/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0040/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0040/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0040/imaging_plane -> /general/optophysiology/Zstack0040 +/acquisition/Zstack_Green_0040/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0041 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0041/data: dtype=uint16 shape=(1, 200, 200) val="0x7354e2ce" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0041/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0041/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0041/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0041/imaging_plane -> /general/optophysiology/Zstack0041 +/acquisition/Zstack_Green_0041/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0042 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0042/data: dtype=uint16 shape=(1, 200, 200) val="0x78f64bc7" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0042/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0042/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0042/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0042/imaging_plane -> /general/optophysiology/Zstack0042 +/acquisition/Zstack_Green_0042/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0043 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0043/data: dtype=uint16 shape=(1, 200, 200) val="0x4a1d6c81" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0043/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0043/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0043/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0043/imaging_plane -> /general/optophysiology/Zstack0043 +/acquisition/Zstack_Green_0043/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0044 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0044/data: dtype=uint16 shape=(1, 200, 200) val="0x691fd987" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0044/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0044/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0044/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0044/imaging_plane -> /general/optophysiology/Zstack0044 +/acquisition/Zstack_Green_0044/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0045 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0045/data: dtype=uint16 shape=(1, 200, 200) val="0x719522de" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0045/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0045/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0045/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0045/imaging_plane -> /general/optophysiology/Zstack0045 +/acquisition/Zstack_Green_0045/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0046 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0046/data: dtype=uint16 shape=(1, 200, 200) val="0x2da0eb27" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0046/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0046/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0046/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0046/imaging_plane -> /general/optophysiology/Zstack0046 +/acquisition/Zstack_Green_0046/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0047 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0047/data: dtype=uint16 shape=(1, 200, 200) val="0x91383da9" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0047/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0047/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0047/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0047/imaging_plane -> /general/optophysiology/Zstack0047 +/acquisition/Zstack_Green_0047/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0048 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0048/data: dtype=uint16 shape=(1, 200, 200) val="0x1396b3c3" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0048/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0048/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0048/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0048/imaging_plane -> /general/optophysiology/Zstack0048 +/acquisition/Zstack_Green_0048/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0049 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0049/data: dtype=uint16 shape=(1, 200, 200) val="0xea0896da" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0049/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0049/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0049/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0049/imaging_plane -> /general/optophysiology/Zstack0049 +/acquisition/Zstack_Green_0049/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0050 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0050/data: dtype=uint16 shape=(1, 200, 200) val="0x2ff403c7" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0050/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0050/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0050/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0050/imaging_plane -> /general/optophysiology/Zstack0050 +/acquisition/Zstack_Green_0050/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0051 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0051/data: dtype=uint16 shape=(1, 200, 200) val="0x491c5dee" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0051/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0051/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0051/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0051/imaging_plane -> /general/optophysiology/Zstack0051 +/acquisition/Zstack_Green_0051/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0052 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0052/data: dtype=uint16 shape=(1, 200, 200) val="0x6a8b1f01" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0052/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0052/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0052/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0052/imaging_plane -> /general/optophysiology/Zstack0052 +/acquisition/Zstack_Green_0052/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0053 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0053/data: dtype=uint16 shape=(1, 200, 200) val="0xbde9d5f0" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0053/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0053/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0053/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0053/imaging_plane -> /general/optophysiology/Zstack0053 +/acquisition/Zstack_Green_0053/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0054 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0054/data: dtype=uint16 shape=(1, 200, 200) val="0xafec86fc" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0054/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0054/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0054/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0054/imaging_plane -> /general/optophysiology/Zstack0054 +/acquisition/Zstack_Green_0054/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0055 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0055/data: dtype=uint16 shape=(1, 200, 200) val="0xdb0246d5" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0055/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0055/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0055/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0055/imaging_plane -> /general/optophysiology/Zstack0055 +/acquisition/Zstack_Green_0055/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0056 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0056/data: dtype=uint16 shape=(1, 200, 200) val="0x827d1679" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0056/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0056/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0056/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0056/imaging_plane -> /general/optophysiology/Zstack0056 +/acquisition/Zstack_Green_0056/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0057 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0057/data: dtype=uint16 shape=(1, 200, 200) val="0xf05cdb45" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0057/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0057/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0057/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0057/imaging_plane -> /general/optophysiology/Zstack0057 +/acquisition/Zstack_Green_0057/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0058 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0058/data: dtype=uint16 shape=(1, 200, 200) val="0xdf6ba690" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0058/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0058/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0058/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0058/imaging_plane -> /general/optophysiology/Zstack0058 +/acquisition/Zstack_Green_0058/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0059 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0059/data: dtype=uint16 shape=(1, 200, 200) val="0x42807164" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0059/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0059/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0059/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0059/imaging_plane -> /general/optophysiology/Zstack0059 +/acquisition/Zstack_Green_0059/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0060 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0060/data: dtype=uint16 shape=(1, 200, 200) val="0x1dc5358b" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0060/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0060/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0060/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0060/imaging_plane -> /general/optophysiology/Zstack0060 +/acquisition/Zstack_Green_0060/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0061 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0061/data: dtype=uint16 shape=(1, 200, 200) val="0x87cd2b43" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0061/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0061/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0061/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0061/imaging_plane -> /general/optophysiology/Zstack0061 +/acquisition/Zstack_Green_0061/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0062 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0062/data: dtype=uint16 shape=(1, 200, 200) val="0xac2ce364" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0062/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0062/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0062/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0062/imaging_plane -> /general/optophysiology/Zstack0062 +/acquisition/Zstack_Green_0062/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0063 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0063/data: dtype=uint16 shape=(1, 200, 200) val="0xab7ca9cd" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0063/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0063/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0063/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0063/imaging_plane -> /general/optophysiology/Zstack0063 +/acquisition/Zstack_Green_0063/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0064 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0064/data: dtype=uint16 shape=(1, 200, 200) val="0x512b110" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0064/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0064/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0064/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0064/imaging_plane -> /general/optophysiology/Zstack0064 +/acquisition/Zstack_Green_0064/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0065 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0065/data: dtype=uint16 shape=(1, 200, 200) val="0x494eb298" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0065/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0065/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0065/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0065/imaging_plane -> /general/optophysiology/Zstack0065 +/acquisition/Zstack_Green_0065/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0066 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0066/data: dtype=uint16 shape=(1, 200, 200) val="0xde23792f" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0066/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0066/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0066/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0066/imaging_plane -> /general/optophysiology/Zstack0066 +/acquisition/Zstack_Green_0066/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0067 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0067/data: dtype=uint16 shape=(1, 200, 200) val="0x459189a1" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0067/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0067/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0067/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0067/imaging_plane -> /general/optophysiology/Zstack0067 +/acquisition/Zstack_Green_0067/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0068 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0068/data: dtype=uint16 shape=(1, 200, 200) val="0x41b67685" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0068/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0068/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0068/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0068/imaging_plane -> /general/optophysiology/Zstack0068 +/acquisition/Zstack_Green_0068/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0069 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0069/data: dtype=uint16 shape=(1, 200, 200) val="0xba6570bc" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0069/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0069/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0069/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0069/imaging_plane -> /general/optophysiology/Zstack0069 +/acquisition/Zstack_Green_0069/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0070 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0070/data: dtype=uint16 shape=(1, 200, 200) val="0x9e6950a1" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0070/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0070/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0070/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0070/imaging_plane -> /general/optophysiology/Zstack0070 +/acquisition/Zstack_Green_0070/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0071 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0071/data: dtype=uint16 shape=(1, 200, 200) val="0x3d2a484a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0071/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0071/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0071/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0071/imaging_plane -> /general/optophysiology/Zstack0071 +/acquisition/Zstack_Green_0071/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0072 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0072/data: dtype=uint16 shape=(1, 200, 200) val="0x94434568" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0072/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0072/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0072/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0072/imaging_plane -> /general/optophysiology/Zstack0072 +/acquisition/Zstack_Green_0072/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0073 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0073/data: dtype=uint16 shape=(1, 200, 200) val="0xd45b1f71" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0073/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0073/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0073/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0073/imaging_plane -> /general/optophysiology/Zstack0073 +/acquisition/Zstack_Green_0073/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0074 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0074/data: dtype=uint16 shape=(1, 200, 200) val="0x30eb2572" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0074/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0074/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0074/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0074/imaging_plane -> /general/optophysiology/Zstack0074 +/acquisition/Zstack_Green_0074/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0075 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0075/data: dtype=uint16 shape=(1, 200, 200) val="0xa6fe02b0" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0075/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0075/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0075/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0075/imaging_plane -> /general/optophysiology/Zstack0075 +/acquisition/Zstack_Green_0075/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0076 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0076/data: dtype=uint16 shape=(1, 200, 200) val="0xc6d20b34" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0076/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0076/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0076/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0076/imaging_plane -> /general/optophysiology/Zstack0076 +/acquisition/Zstack_Green_0076/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0077 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0077/data: dtype=uint16 shape=(1, 200, 200) val="0xcdbb0a84" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0077/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0077/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0077/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0077/imaging_plane -> /general/optophysiology/Zstack0077 +/acquisition/Zstack_Green_0077/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0078 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0078/data: dtype=uint16 shape=(1, 200, 200) val="0xd5dd05d6" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0078/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0078/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0078/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0078/imaging_plane -> /general/optophysiology/Zstack0078 +/acquisition/Zstack_Green_0078/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0079 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0079/data: dtype=uint16 shape=(1, 200, 200) val="0x59a0a67" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0079/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0079/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0079/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0079/imaging_plane -> /general/optophysiology/Zstack0079 +/acquisition/Zstack_Green_0079/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0080 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0080/data: dtype=uint16 shape=(1, 200, 200) val="0xb0f0734" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0080/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0080/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0080/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0080/imaging_plane -> /general/optophysiology/Zstack0080 +/acquisition/Zstack_Green_0080/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Green_0081 + @comments: type=str val="Contains single slice from green channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="650" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Green_0081/data: dtype=uint16 shape=(1, 200, 200) val="0x2fca11d8" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Green_0081/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Green_0081/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Green_0081/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Green_0081/imaging_plane -> /general/optophysiology/Zstack0081 +/acquisition/Zstack_Green_0081/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0001 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0001/data: dtype=uint16 shape=(1, 200, 200) val="0xfdaa294e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0001/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0001/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0001/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0001/imaging_plane -> /general/optophysiology/Zstack0001 +/acquisition/Zstack_Red_0001/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0002 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0002/data: dtype=uint16 shape=(1, 200, 200) val="0xd822bc20" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0002/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0002/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0002/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0002/imaging_plane -> /general/optophysiology/Zstack0002 +/acquisition/Zstack_Red_0002/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0003 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0003/data: dtype=uint16 shape=(1, 200, 200) val="0x9e024d5e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0003/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0003/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0003/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0003/imaging_plane -> /general/optophysiology/Zstack0003 +/acquisition/Zstack_Red_0003/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0004 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0004/data: dtype=uint16 shape=(1, 200, 200) val="0x62df8146" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0004/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0004/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0004/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0004/imaging_plane -> /general/optophysiology/Zstack0004 +/acquisition/Zstack_Red_0004/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0005 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0005/data: dtype=uint16 shape=(1, 200, 200) val="0x881d4dee" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0005/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0005/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0005/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0005/imaging_plane -> /general/optophysiology/Zstack0005 +/acquisition/Zstack_Red_0005/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0006 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0006/data: dtype=uint16 shape=(1, 200, 200) val="0xe53d1c6c" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0006/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0006/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0006/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0006/imaging_plane -> /general/optophysiology/Zstack0006 +/acquisition/Zstack_Red_0006/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0007 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0007/data: dtype=uint16 shape=(1, 200, 200) val="0x5b3ff750" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0007/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0007/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0007/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0007/imaging_plane -> /general/optophysiology/Zstack0007 +/acquisition/Zstack_Red_0007/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0008 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0008/data: dtype=uint16 shape=(1, 200, 200) val="0xfe0c0544" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0008/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0008/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0008/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0008/imaging_plane -> /general/optophysiology/Zstack0008 +/acquisition/Zstack_Red_0008/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0009 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0009/data: dtype=uint16 shape=(1, 200, 200) val="0x5607d6a6" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0009/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0009/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0009/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0009/imaging_plane -> /general/optophysiology/Zstack0009 +/acquisition/Zstack_Red_0009/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0010 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0010/data: dtype=uint16 shape=(1, 200, 200) val="0x54a9b597" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0010/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0010/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0010/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0010/imaging_plane -> /general/optophysiology/Zstack0010 +/acquisition/Zstack_Red_0010/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0011 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0011/data: dtype=uint16 shape=(1, 200, 200) val="0x408cdf06" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0011/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0011/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0011/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0011/imaging_plane -> /general/optophysiology/Zstack0011 +/acquisition/Zstack_Red_0011/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0012 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0012/data: dtype=uint16 shape=(1, 200, 200) val="0x1bb5d945" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0012/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0012/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0012/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0012/imaging_plane -> /general/optophysiology/Zstack0012 +/acquisition/Zstack_Red_0012/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0013 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0013/data: dtype=uint16 shape=(1, 200, 200) val="0x5340e859" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0013/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0013/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0013/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0013/imaging_plane -> /general/optophysiology/Zstack0013 +/acquisition/Zstack_Red_0013/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0014 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0014/data: dtype=uint16 shape=(1, 200, 200) val="0x4d4dff7f" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0014/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0014/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0014/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0014/imaging_plane -> /general/optophysiology/Zstack0014 +/acquisition/Zstack_Red_0014/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0015 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0015/data: dtype=uint16 shape=(1, 200, 200) val="0x22310a3b" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0015/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0015/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0015/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0015/imaging_plane -> /general/optophysiology/Zstack0015 +/acquisition/Zstack_Red_0015/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0016 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0016/data: dtype=uint16 shape=(1, 200, 200) val="0x8b71111d" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0016/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0016/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0016/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0016/imaging_plane -> /general/optophysiology/Zstack0016 +/acquisition/Zstack_Red_0016/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0017 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0017/data: dtype=uint16 shape=(1, 200, 200) val="0xe722564" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0017/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0017/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0017/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0017/imaging_plane -> /general/optophysiology/Zstack0017 +/acquisition/Zstack_Red_0017/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0018 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0018/data: dtype=uint16 shape=(1, 200, 200) val="0x87b84186" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0018/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0018/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0018/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0018/imaging_plane -> /general/optophysiology/Zstack0018 +/acquisition/Zstack_Red_0018/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0019 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0019/data: dtype=uint16 shape=(1, 200, 200) val="0xd2c5956a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0019/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0019/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0019/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0019/imaging_plane -> /general/optophysiology/Zstack0019 +/acquisition/Zstack_Red_0019/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0020 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0020/data: dtype=uint16 shape=(1, 200, 200) val="0xef979454" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0020/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0020/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0020/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0020/imaging_plane -> /general/optophysiology/Zstack0020 +/acquisition/Zstack_Red_0020/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0021 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0021/data: dtype=uint16 shape=(1, 200, 200) val="0x32f9c586" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0021/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0021/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0021/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0021/imaging_plane -> /general/optophysiology/Zstack0021 +/acquisition/Zstack_Red_0021/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0022 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0022/data: dtype=uint16 shape=(1, 200, 200) val="0x668fee1e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0022/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0022/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0022/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0022/imaging_plane -> /general/optophysiology/Zstack0022 +/acquisition/Zstack_Red_0022/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0023 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0023/data: dtype=uint16 shape=(1, 200, 200) val="0x92ff52b" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0023/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0023/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0023/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0023/imaging_plane -> /general/optophysiology/Zstack0023 +/acquisition/Zstack_Red_0023/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0024 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0024/data: dtype=uint16 shape=(1, 200, 200) val="0x3c3920d9" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0024/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0024/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0024/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0024/imaging_plane -> /general/optophysiology/Zstack0024 +/acquisition/Zstack_Red_0024/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0025 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0025/data: dtype=uint16 shape=(1, 200, 200) val="0xcfa24624" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0025/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0025/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0025/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0025/imaging_plane -> /general/optophysiology/Zstack0025 +/acquisition/Zstack_Red_0025/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0026 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0026/data: dtype=uint16 shape=(1, 200, 200) val="0xbda5940c" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0026/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0026/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0026/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0026/imaging_plane -> /general/optophysiology/Zstack0026 +/acquisition/Zstack_Red_0026/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0027 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0027/data: dtype=uint16 shape=(1, 200, 200) val="0xe8f5e6e6" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0027/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0027/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0027/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0027/imaging_plane -> /general/optophysiology/Zstack0027 +/acquisition/Zstack_Red_0027/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0028 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0028/data: dtype=uint16 shape=(1, 200, 200) val="0xc4a65d8b" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0028/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0028/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0028/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0028/imaging_plane -> /general/optophysiology/Zstack0028 +/acquisition/Zstack_Red_0028/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0029 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0029/data: dtype=uint16 shape=(1, 200, 200) val="0x1bb5f574" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0029/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0029/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0029/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0029/imaging_plane -> /general/optophysiology/Zstack0029 +/acquisition/Zstack_Red_0029/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0030 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0030/data: dtype=uint16 shape=(1, 200, 200) val="0x783977d9" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0030/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0030/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0030/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0030/imaging_plane -> /general/optophysiology/Zstack0030 +/acquisition/Zstack_Red_0030/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0031 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0031/data: dtype=uint16 shape=(1, 200, 200) val="0x622893ba" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0031/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0031/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0031/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0031/imaging_plane -> /general/optophysiology/Zstack0031 +/acquisition/Zstack_Red_0031/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0032 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0032/data: dtype=uint16 shape=(1, 200, 200) val="0xb1bb9c82" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0032/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0032/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0032/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0032/imaging_plane -> /general/optophysiology/Zstack0032 +/acquisition/Zstack_Red_0032/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0033 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0033/data: dtype=uint16 shape=(1, 200, 200) val="0xa888a5df" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0033/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0033/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0033/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0033/imaging_plane -> /general/optophysiology/Zstack0033 +/acquisition/Zstack_Red_0033/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0034 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0034/data: dtype=uint16 shape=(1, 200, 200) val="0x2830539" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0034/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0034/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0034/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0034/imaging_plane -> /general/optophysiology/Zstack0034 +/acquisition/Zstack_Red_0034/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0035 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0035/data: dtype=uint16 shape=(1, 200, 200) val="0x277204c9" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0035/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0035/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0035/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0035/imaging_plane -> /general/optophysiology/Zstack0035 +/acquisition/Zstack_Red_0035/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0036 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0036/data: dtype=uint16 shape=(1, 200, 200) val="0x3e58261e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0036/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0036/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0036/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0036/imaging_plane -> /general/optophysiology/Zstack0036 +/acquisition/Zstack_Red_0036/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0037 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0037/data: dtype=uint16 shape=(1, 200, 200) val="0x78102278" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0037/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0037/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0037/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0037/imaging_plane -> /general/optophysiology/Zstack0037 +/acquisition/Zstack_Red_0037/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0038 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0038/data: dtype=uint16 shape=(1, 200, 200) val="0x2a15454e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0038/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0038/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0038/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0038/imaging_plane -> /general/optophysiology/Zstack0038 +/acquisition/Zstack_Red_0038/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0039 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0039/data: dtype=uint16 shape=(1, 200, 200) val="0xf29b3013" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0039/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0039/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0039/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0039/imaging_plane -> /general/optophysiology/Zstack0039 +/acquisition/Zstack_Red_0039/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0040 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0040/data: dtype=uint16 shape=(1, 200, 200) val="0x78161778" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0040/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0040/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0040/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0040/imaging_plane -> /general/optophysiology/Zstack0040 +/acquisition/Zstack_Red_0040/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0041 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0041/data: dtype=uint16 shape=(1, 200, 200) val="0xcd42c36f" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0041/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0041/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0041/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0041/imaging_plane -> /general/optophysiology/Zstack0041 +/acquisition/Zstack_Red_0041/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0042 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0042/data: dtype=uint16 shape=(1, 200, 200) val="0x6c4c8a83" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0042/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0042/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0042/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0042/imaging_plane -> /general/optophysiology/Zstack0042 +/acquisition/Zstack_Red_0042/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0043 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0043/data: dtype=uint16 shape=(1, 200, 200) val="0x78553279" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0043/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0043/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0043/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0043/imaging_plane -> /general/optophysiology/Zstack0043 +/acquisition/Zstack_Red_0043/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0044 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0044/data: dtype=uint16 shape=(1, 200, 200) val="0x7a09e7c0" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0044/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0044/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0044/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0044/imaging_plane -> /general/optophysiology/Zstack0044 +/acquisition/Zstack_Red_0044/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0045 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0045/data: dtype=uint16 shape=(1, 200, 200) val="0x39f0b8ce" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0045/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0045/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0045/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0045/imaging_plane -> /general/optophysiology/Zstack0045 +/acquisition/Zstack_Red_0045/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0046 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0046/data: dtype=uint16 shape=(1, 200, 200) val="0x86ea8a86" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0046/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0046/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0046/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0046/imaging_plane -> /general/optophysiology/Zstack0046 +/acquisition/Zstack_Red_0046/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0047 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0047/data: dtype=uint16 shape=(1, 200, 200) val="0x7e6f68e7" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0047/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0047/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0047/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0047/imaging_plane -> /general/optophysiology/Zstack0047 +/acquisition/Zstack_Red_0047/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0048 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0048/data: dtype=uint16 shape=(1, 200, 200) val="0xf46d5bd5" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0048/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0048/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0048/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0048/imaging_plane -> /general/optophysiology/Zstack0048 +/acquisition/Zstack_Red_0048/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0049 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0049/data: dtype=uint16 shape=(1, 200, 200) val="0x60cf0430" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0049/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0049/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0049/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0049/imaging_plane -> /general/optophysiology/Zstack0049 +/acquisition/Zstack_Red_0049/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0050 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0050/data: dtype=uint16 shape=(1, 200, 200) val="0xd46bc30e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0050/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0050/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0050/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0050/imaging_plane -> /general/optophysiology/Zstack0050 +/acquisition/Zstack_Red_0050/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0051 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0051/data: dtype=uint16 shape=(1, 200, 200) val="0x43cf806e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0051/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0051/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0051/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0051/imaging_plane -> /general/optophysiology/Zstack0051 +/acquisition/Zstack_Red_0051/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0052 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0052/data: dtype=uint16 shape=(1, 200, 200) val="0xf6811fac" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0052/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0052/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0052/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0052/imaging_plane -> /general/optophysiology/Zstack0052 +/acquisition/Zstack_Red_0052/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0053 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0053/data: dtype=uint16 shape=(1, 200, 200) val="0xc1b6f3e2" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0053/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0053/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0053/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0053/imaging_plane -> /general/optophysiology/Zstack0053 +/acquisition/Zstack_Red_0053/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0054 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0054/data: dtype=uint16 shape=(1, 200, 200) val="0x9cc6b355" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0054/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0054/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0054/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0054/imaging_plane -> /general/optophysiology/Zstack0054 +/acquisition/Zstack_Red_0054/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0055 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0055/data: dtype=uint16 shape=(1, 200, 200) val="0xa13b8884" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0055/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0055/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0055/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0055/imaging_plane -> /general/optophysiology/Zstack0055 +/acquisition/Zstack_Red_0055/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0056 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0056/data: dtype=uint16 shape=(1, 200, 200) val="0x98e540aa" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0056/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0056/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0056/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0056/imaging_plane -> /general/optophysiology/Zstack0056 +/acquisition/Zstack_Red_0056/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0057 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0057/data: dtype=uint16 shape=(1, 200, 200) val="0x93eb154a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0057/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0057/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0057/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0057/imaging_plane -> /general/optophysiology/Zstack0057 +/acquisition/Zstack_Red_0057/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0058 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0058/data: dtype=uint16 shape=(1, 200, 200) val="0x6951fae5" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0058/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0058/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0058/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0058/imaging_plane -> /general/optophysiology/Zstack0058 +/acquisition/Zstack_Red_0058/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0059 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0059/data: dtype=uint16 shape=(1, 200, 200) val="0x8126ad17" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0059/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0059/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0059/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0059/imaging_plane -> /general/optophysiology/Zstack0059 +/acquisition/Zstack_Red_0059/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0060 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0060/data: dtype=uint16 shape=(1, 200, 200) val="0x99469858" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0060/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0060/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0060/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0060/imaging_plane -> /general/optophysiology/Zstack0060 +/acquisition/Zstack_Red_0060/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0061 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0061/data: dtype=uint16 shape=(1, 200, 200) val="0xc95c6a43" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0061/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0061/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0061/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0061/imaging_plane -> /general/optophysiology/Zstack0061 +/acquisition/Zstack_Red_0061/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0062 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0062/data: dtype=uint16 shape=(1, 200, 200) val="0x13153560" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0062/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0062/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0062/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0062/imaging_plane -> /general/optophysiology/Zstack0062 +/acquisition/Zstack_Red_0062/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0063 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0063/data: dtype=uint16 shape=(1, 200, 200) val="0x71691268" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0063/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0063/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0063/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0063/imaging_plane -> /general/optophysiology/Zstack0063 +/acquisition/Zstack_Red_0063/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0064 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0064/data: dtype=uint16 shape=(1, 200, 200) val="0x6985008c" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0064/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0064/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0064/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0064/imaging_plane -> /general/optophysiology/Zstack0064 +/acquisition/Zstack_Red_0064/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0065 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0065/data: dtype=uint16 shape=(1, 200, 200) val="0x33cce16a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0065/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0065/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0065/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0065/imaging_plane -> /general/optophysiology/Zstack0065 +/acquisition/Zstack_Red_0065/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0066 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0066/data: dtype=uint16 shape=(1, 200, 200) val="0xef36b540" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0066/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0066/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0066/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0066/imaging_plane -> /general/optophysiology/Zstack0066 +/acquisition/Zstack_Red_0066/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0067 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0067/data: dtype=uint16 shape=(1, 200, 200) val="0x28d7b76d" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0067/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0067/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0067/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0067/imaging_plane -> /general/optophysiology/Zstack0067 +/acquisition/Zstack_Red_0067/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0068 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0068/data: dtype=uint16 shape=(1, 200, 200) val="0x814ba6a1" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0068/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0068/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0068/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0068/imaging_plane -> /general/optophysiology/Zstack0068 +/acquisition/Zstack_Red_0068/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0069 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0069/data: dtype=uint16 shape=(1, 200, 200) val="0x94f88d64" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0069/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0069/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0069/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0069/imaging_plane -> /general/optophysiology/Zstack0069 +/acquisition/Zstack_Red_0069/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0070 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0070/data: dtype=uint16 shape=(1, 200, 200) val="0x7d3d7a2e" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0070/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0070/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0070/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0070/imaging_plane -> /general/optophysiology/Zstack0070 +/acquisition/Zstack_Red_0070/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0071 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0071/data: dtype=uint16 shape=(1, 200, 200) val="0xc5356e3a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0071/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0071/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0071/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0071/imaging_plane -> /general/optophysiology/Zstack0071 +/acquisition/Zstack_Red_0071/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0072 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0072/data: dtype=uint16 shape=(1, 200, 200) val="0xd243846a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0072/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0072/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0072/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0072/imaging_plane -> /general/optophysiology/Zstack0072 +/acquisition/Zstack_Red_0072/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0073 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0073/data: dtype=uint16 shape=(1, 200, 200) val="0xf9db660a" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0073/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0073/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0073/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0073/imaging_plane -> /general/optophysiology/Zstack0073 +/acquisition/Zstack_Red_0073/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0074 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0074/data: dtype=uint16 shape=(1, 200, 200) val="0x9c036f51" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0074/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0074/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0074/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0074/imaging_plane -> /general/optophysiology/Zstack0074 +/acquisition/Zstack_Red_0074/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0075 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0075/data: dtype=uint16 shape=(1, 200, 200) val="0xc3b25b28" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0075/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0075/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0075/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0075/imaging_plane -> /general/optophysiology/Zstack0075 +/acquisition/Zstack_Red_0075/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0076 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0076/data: dtype=uint16 shape=(1, 200, 200) val="0xc87f4f81" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0076/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0076/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0076/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0076/imaging_plane -> /general/optophysiology/Zstack0076 +/acquisition/Zstack_Red_0076/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0077 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0077/data: dtype=uint16 shape=(1, 200, 200) val="0xb7ca424d" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0077/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0077/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0077/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0077/imaging_plane -> /general/optophysiology/Zstack0077 +/acquisition/Zstack_Red_0077/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0078 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0078/data: dtype=uint16 shape=(1, 200, 200) val="0x3b774c27" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0078/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0078/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0078/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0078/imaging_plane -> /general/optophysiology/Zstack0078 +/acquisition/Zstack_Red_0078/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0079 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0079/data: dtype=uint16 shape=(1, 200, 200) val="0xacd55415" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0079/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0079/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0079/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0079/imaging_plane -> /general/optophysiology/Zstack0079 +/acquisition/Zstack_Red_0079/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0080 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0080/data: dtype=uint16 shape=(1, 200, 200) val="0xecc25218" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0080/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0080/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0080/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0080/imaging_plane -> /general/optophysiology/Zstack0080 +/acquisition/Zstack_Red_0080/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/acquisition/Zstack_Red_0081 + @comments: type=str val="Contains single slice from red channel" + @description: type=str val="Initial reference Z stack plane" + @pmt_gain: dtype=float64 shape=() val="600" + @scan_line_rate: dtype=float64 shape=() val="19.25441699" +/acquisition/Zstack_Red_0081/data: dtype=uint16 shape=(1, 200, 200) val="0xe7674835" + @conversion: dtype=float64 shape=() val="1" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="intensity" +/acquisition/Zstack_Red_0081/dimension: dtype=int64 shape=(2,) val="0x12d00191" +/acquisition/Zstack_Red_0081/field_of_view: dtype=float64 shape=(2,) val="0x283004bb" +/acquisition/Zstack_Red_0081/format: dtype=object shape=() val="tiff" +/acquisition/Zstack_Red_0081/imaging_plane -> /general/optophysiology/Zstack0081 +/acquisition/Zstack_Red_0081/timestamps: dtype=float64 shape=(1,) val="[0]" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/file_create_date: dtype=ignored shape=ignored val="ignored" +/general/devices/AOL_microscope + @description: type=str val="Random access 3d acousto-optic lens two-photon microscope" +/general/devices/air_puff_device + @description: type=str val="Delivers an air puff stimulus to the mouse's whiskers" +/general/devices/mouse_wheel_device + @description: type=str val="Records mouse speed data" +/general/experimenter: dtype=object shape=(1,) val="[Sameer Punde]" +/general/institution: dtype=object shape=() val="University College London" +/general/lab: dtype=object shape=() val="Silver Lab (http://silverla...0xc56c0ba8" +/general/optophysiology/Zstack0001/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0001/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0001/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0001/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0001/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0001/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0001/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0001/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0001/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0001/origin_coords: dtype=float64 shape=(3,) val="0x12a00aa" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0001/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0001/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0001/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0002/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0002/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0002/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0002/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0002/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0002/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0002/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0002/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0002/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0002/origin_coords: dtype=float64 shape=(3,) val="0x2480109" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0002/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0002/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0002/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0003/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0003/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0003/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0003/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0003/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0003/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0003/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0003/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0003/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0003/origin_coords: dtype=float64 shape=(3,) val="0x3660168" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0003/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0003/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0003/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0004/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0004/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0004/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0004/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0004/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0004/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0004/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0004/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0004/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0004/origin_coords: dtype=float64 shape=(3,) val="0x18600c8" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0004/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0004/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0004/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0005/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0005/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0005/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0005/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0005/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0005/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0005/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0005/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0005/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0005/origin_coords: dtype=float64 shape=(3,) val="0x2a40127" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0005/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0005/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0005/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0006/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0006/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0006/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0006/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0006/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0006/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0006/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0006/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0006/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0006/origin_coords: dtype=float64 shape=(3,) val="0x3c20186" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0006/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0006/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0006/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0007/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0007/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0007/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0007/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0007/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0007/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0007/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0007/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0007/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0007/origin_coords: dtype=float64 shape=(3,) val="0x1e200e6" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0007/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0007/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0007/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0008/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0008/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0008/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0008/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0008/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0008/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0008/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0008/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0008/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0008/origin_coords: dtype=float64 shape=(3,) val="0x3000145" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0008/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0008/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0008/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0008_ROI_1/description: dtype=object shape=() val="Imaging plane for variable ...0x398b0e1e" +/general/optophysiology/Zstack0008_ROI_1/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0008_ROI_1/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0008_ROI_1/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0008_ROI_1/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0008_ROI_1/grid_spacing: dtype=float32 shape=(3,) val="0x1af602f7" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0008_ROI_1/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0008_ROI_1/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0008_ROI_1/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0008_ROI_1/origin_coords: dtype=float64 shape=(3,) val="0x1262026a" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0008_ROI_1/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0008_ROI_1/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0008_ROI_1/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0009/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0009/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0009/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0009/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0009/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0009/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0009/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0009/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0009/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0009/origin_coords: dtype=float64 shape=(3,) val="0x12000a5" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0009/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0009/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0009/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0010/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0010/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0010/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0010/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0010/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0010/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0010/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0010/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0010/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0010/origin_coords: dtype=float64 shape=(3,) val="0x23e0104" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0010/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0010/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0010/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0010_ROI_2/description: dtype=object shape=() val="Imaging plane for variable ...0x398c0e1f" +/general/optophysiology/Zstack0010_ROI_2/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0010_ROI_2/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0010_ROI_2/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0010_ROI_2/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0010_ROI_2/grid_spacing: dtype=float32 shape=(3,) val="0x1af602f7" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0010_ROI_2/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0010_ROI_2/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0010_ROI_2/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0010_ROI_2/origin_coords: dtype=float64 shape=(3,) val="0x174402af" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0010_ROI_2/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0010_ROI_2/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0010_ROI_2/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0011/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0011/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0011/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0011/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0011/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0011/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0011/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0011/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0011/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0011/origin_coords: dtype=float64 shape=(3,) val="0x35c0163" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0011/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0011/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0011/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0012/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0012/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0012/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0012/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0012/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0012/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0012/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0012/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0012/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0012/origin_coords: dtype=float64 shape=(3,) val="0x17c00c3" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0012/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0012/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0012/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0012_ROI_3/description: dtype=object shape=() val="Imaging plane for variable ...0x398d0e20" +/general/optophysiology/Zstack0012_ROI_3/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0012_ROI_3/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0012_ROI_3/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0012_ROI_3/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0012_ROI_3/grid_spacing: dtype=float32 shape=(3,) val="0x1af602f7" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0012_ROI_3/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0012_ROI_3/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0012_ROI_3/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0012_ROI_3/origin_coords: dtype=float64 shape=(3,) val="0x10cc01e7" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0012_ROI_3/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0012_ROI_3/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0012_ROI_3/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0013/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0013/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0013/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0013/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0013/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0013/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0013/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0013/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0013/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0013/origin_coords: dtype=float64 shape=(3,) val="0x29a0122" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0013/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0013/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0013/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0014/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0014/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0014/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0014/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0014/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0014/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0014/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0014/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0014/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0014/origin_coords: dtype=float64 shape=(3,) val="0x3b80181" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0014/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0014/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0014/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0015/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0015/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0015/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0015/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0015/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0015/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0015/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0015/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0015/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0015/origin_coords: dtype=float64 shape=(3,) val="0x1d800e1" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0015/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0015/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0015/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0015_ROI_4/description: dtype=object shape=() val="Imaging plane for variable ...0x398e0e21" +/general/optophysiology/Zstack0015_ROI_4/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0015_ROI_4/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0015_ROI_4/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0015_ROI_4/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0015_ROI_4/grid_spacing: dtype=float32 shape=(3,) val="0x1af602f7" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0015_ROI_4/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0015_ROI_4/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0015_ROI_4/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0015_ROI_4/origin_coords: dtype=float64 shape=(3,) val="0x1de602d0" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0015_ROI_4/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0015_ROI_4/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0015_ROI_4/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0016/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0016/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0016/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0016/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0016/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0016/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0016/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0016/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0016/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0016/origin_coords: dtype=float64 shape=(3,) val="0x1d600e0" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0016/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0016/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0016/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0017/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0017/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0017/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0017/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0017/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0017/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0017/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0017/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0017/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0017/origin_coords: dtype=float64 shape=(3,) val="0x114009f" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0017/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0017/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0017/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0017_ROI_5/description: dtype=object shape=() val="Imaging plane for variable ...0x398f0e22" +/general/optophysiology/Zstack0017_ROI_5/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0017_ROI_5/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0017_ROI_5/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0017_ROI_5/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0017_ROI_5/grid_spacing: dtype=float32 shape=(3,) val="0x1af602f7" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0017_ROI_5/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0017_ROI_5/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0017_ROI_5/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0017_ROI_5/origin_coords: dtype=float64 shape=(3,) val="0x246c0307" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0017_ROI_5/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0017_ROI_5/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0017_ROI_5/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0018/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0018/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0018/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0018/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0018/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0018/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0018/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0018/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0018/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0018/origin_coords: dtype=float64 shape=(3,) val="0x350015d" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0018/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0018/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0018/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0019/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0019/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0019/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0019/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0019/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0019/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0019/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0019/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0019/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0019/origin_coords: dtype=float64 shape=(3,) val="0x28e011c" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0019/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0019/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0019/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0020/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0020/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0020/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0020/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0020/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0020/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0020/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0020/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0020/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0020/origin_coords: dtype=float64 shape=(3,) val="0x1cc00db" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0020/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0020/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0020/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0021/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0021/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0021/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0021/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0021/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0021/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0021/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0021/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0021/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0021/origin_coords: dtype=float64 shape=(3,) val="0x10a009a" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0021/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0021/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0021/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0022/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0022/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0022/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0022/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0022/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0022/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0022/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0022/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0022/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0022/origin_coords: dtype=float64 shape=(3,) val="0x3460158" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0022/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0022/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0022/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0023/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0023/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0023/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0023/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0023/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0023/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0023/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0023/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0023/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0023/origin_coords: dtype=float64 shape=(3,) val="0x2840117" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0023/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0023/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0023/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0024/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0024/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0024/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0024/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0024/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0024/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0024/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0024/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0024/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0024/origin_coords: dtype=float64 shape=(3,) val="0x1c200d6" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0024/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0024/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0024/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0025/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0025/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0025/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0025/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0025/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0025/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0025/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0025/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0025/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0025/origin_coords: dtype=float64 shape=(3,) val="0x1000095" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0025/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0025/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0025/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0026/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0026/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0026/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0026/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0026/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0026/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0026/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0026/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0026/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0026/origin_coords: dtype=float64 shape=(3,) val="0x33c0153" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0026/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0026/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0026/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0027/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0027/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0027/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0027/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0027/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0027/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0027/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0027/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0027/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0027/origin_coords: dtype=float64 shape=(3,) val="0x27a0112" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0027/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0027/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0027/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0028/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0028/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0028/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0028/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0028/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0028/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0028/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0028/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0028/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0028/origin_coords: dtype=float64 shape=(3,) val="0x1b800d1" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0028/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0028/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0028/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0029/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0029/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0029/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0029/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0029/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0029/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0029/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0029/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0029/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0029/origin_coords: dtype=float64 shape=(3,) val="0xf4008f" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0029/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0029/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0029/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0030/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0030/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0030/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0030/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0030/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0030/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0030/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0030/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0030/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0030/origin_coords: dtype=float64 shape=(3,) val="0x26e010c" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0030/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0030/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0030/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0031/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0031/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0031/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0031/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0031/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0031/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0031/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0031/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0031/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0031/origin_coords: dtype=float64 shape=(3,) val="0xea008a" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0031/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0031/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0031/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0032/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0032/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0032/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0032/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0032/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0032/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0032/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0032/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0032/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0032/origin_coords: dtype=float64 shape=(3,) val="0x2640107" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0032/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0032/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0032/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0033/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0033/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0033/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0033/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0033/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0033/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0033/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0033/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0033/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0033/origin_coords: dtype=float64 shape=(3,) val="0xe00085" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0033/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0033/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0033/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0033_ROI_22/description: dtype=object shape=() val="Imaging plane for variable ...0x47dd0e51" +/general/optophysiology/Zstack0033_ROI_22/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0033_ROI_22/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0033_ROI_22/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0033_ROI_22/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0033_ROI_22/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0033_ROI_22/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0033_ROI_22/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0033_ROI_22/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0033_ROI_22/origin_coords: dtype=float64 shape=(3,) val="0x225e02cc" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0033_ROI_22/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0033_ROI_22/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0033_ROI_22/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0033_ROI_26/description: dtype=object shape=() val="Imaging plane for variable ...0x47e10e55" +/general/optophysiology/Zstack0033_ROI_26/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0033_ROI_26/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0033_ROI_26/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0033_ROI_26/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0033_ROI_26/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0033_ROI_26/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0033_ROI_26/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0033_ROI_26/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0033_ROI_26/origin_coords: dtype=float64 shape=(3,) val="0x1a760234" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0033_ROI_26/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0033_ROI_26/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0033_ROI_26/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0034/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0034/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0034/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0034/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0034/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0034/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0034/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0034/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0034/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0034/origin_coords: dtype=float64 shape=(3,) val="0x25a0102" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0034/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0034/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0034/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0034_ROI_6/description: dtype=object shape=() val="Imaging plane for variable ...0x39900e23" +/general/optophysiology/Zstack0034_ROI_6/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0034_ROI_6/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0034_ROI_6/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0034_ROI_6/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0034_ROI_6/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0034_ROI_6/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0034_ROI_6/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0034_ROI_6/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0034_ROI_6/origin_coords: dtype=float64 shape=(3,) val="0x1258022d" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0034_ROI_6/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0034_ROI_6/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0034_ROI_6/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0035/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0035/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0035/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0035/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0035/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0035/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0035/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0035/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0035/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0035/origin_coords: dtype=float64 shape=(3,) val="0xd4007f" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0035/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0035/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0035/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0035_ROI_23/description: dtype=object shape=() val="Imaging plane for variable ...0x47de0e52" +/general/optophysiology/Zstack0035_ROI_23/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0035_ROI_23/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0035_ROI_23/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0035_ROI_23/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0035_ROI_23/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0035_ROI_23/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0035_ROI_23/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0035_ROI_23/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0035_ROI_23/origin_coords: dtype=float64 shape=(3,) val="0x118c01b3" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0035_ROI_23/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0035_ROI_23/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0035_ROI_23/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0035_ROI_9/description: dtype=object shape=() val="Imaging plane for variable ...0x39930e26" +/general/optophysiology/Zstack0035_ROI_9/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0035_ROI_9/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0035_ROI_9/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0035_ROI_9/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0035_ROI_9/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0035_ROI_9/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0035_ROI_9/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0035_ROI_9/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0035_ROI_9/origin_coords: dtype=float64 shape=(3,) val="0x119601d4" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0035_ROI_9/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0035_ROI_9/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0035_ROI_9/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0036/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0036/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0036/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0036/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0036/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036/origin_coords: dtype=float64 shape=(3,) val="0xca007a" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0036/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0036_ROI_10/description: dtype=object shape=() val="Imaging plane for variable ...0x47d90e4e" +/general/optophysiology/Zstack0036_ROI_10/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0036_ROI_10/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_10/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0036_ROI_10/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_10/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_10/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0036_ROI_10/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_10/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_10/origin_coords: dtype=float64 shape=(3,) val="0x219002d9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_10/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0036_ROI_10/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_10/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0036_ROI_27/description: dtype=object shape=() val="Imaging plane for variable ...0x47e20e56" +/general/optophysiology/Zstack0036_ROI_27/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0036_ROI_27/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_27/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0036_ROI_27/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_27/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_27/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0036_ROI_27/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_27/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_27/origin_coords: dtype=float64 shape=(3,) val="0x246602e4" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_27/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0036_ROI_27/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_27/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0036_ROI_30/description: dtype=object shape=() val="Imaging plane for variable ...0x47dd0e50" +/general/optophysiology/Zstack0036_ROI_30/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0036_ROI_30/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_30/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0036_ROI_30/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_30/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_30/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0036_ROI_30/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_30/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_30/origin_coords: dtype=float64 shape=(3,) val="0x24c402ff" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_30/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0036_ROI_30/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_30/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0036_ROI_32/description: dtype=object shape=() val="Imaging plane for variable ...0x47df0e52" +/general/optophysiology/Zstack0036_ROI_32/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0036_ROI_32/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_32/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0036_ROI_32/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_32/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_32/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0036_ROI_32/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_32/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_32/origin_coords: dtype=float64 shape=(3,) val="0xdc40173" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_32/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0036_ROI_32/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_32/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0036_ROI_7/description: dtype=object shape=() val="Imaging plane for variable ...0x39910e24" +/general/optophysiology/Zstack0036_ROI_7/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0036_ROI_7/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_7/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0036_ROI_7/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_7/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_7/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0036_ROI_7/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_7/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_7/origin_coords: dtype=float64 shape=(3,) val="0x1acc022f" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_7/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0036_ROI_7/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_7/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0036_ROI_8/description: dtype=object shape=() val="Imaging plane for variable ...0x39920e25" +/general/optophysiology/Zstack0036_ROI_8/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0036_ROI_8/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_8/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0036_ROI_8/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_8/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_8/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0036_ROI_8/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_8/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0036_ROI_8/origin_coords: dtype=float64 shape=(3,) val="0x16240227" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0036_ROI_8/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0036_ROI_8/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0036_ROI_8/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0037/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0037/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0037/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0037/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0037/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0037/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0037/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0037/origin_coords: dtype=float64 shape=(3,) val="0xc00075" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0037/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0037/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0037_ROI_11/description: dtype=object shape=() val="Imaging plane for variable ...0x47da0e4f" +/general/optophysiology/Zstack0037_ROI_11/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0037_ROI_11/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037_ROI_11/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0037_ROI_11/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037_ROI_11/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0037_ROI_11/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0037_ROI_11/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0037_ROI_11/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0037_ROI_11/origin_coords: dtype=float64 shape=(3,) val="0x1aa80255" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0037_ROI_11/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0037_ROI_11/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037_ROI_11/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0037_ROI_24/description: dtype=object shape=() val="Imaging plane for variable ...0x47df0e53" +/general/optophysiology/Zstack0037_ROI_24/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0037_ROI_24/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037_ROI_24/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0037_ROI_24/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037_ROI_24/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0037_ROI_24/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0037_ROI_24/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0037_ROI_24/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0037_ROI_24/origin_coords: dtype=float64 shape=(3,) val="0x159a01da" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0037_ROI_24/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0037_ROI_24/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037_ROI_24/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0037_ROI_28/description: dtype=object shape=() val="Imaging plane for variable ...0x47e30e57" +/general/optophysiology/Zstack0037_ROI_28/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0037_ROI_28/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037_ROI_28/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0037_ROI_28/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037_ROI_28/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0037_ROI_28/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0037_ROI_28/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0037_ROI_28/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0037_ROI_28/origin_coords: dtype=float64 shape=(3,) val="0x253402f3" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0037_ROI_28/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0037_ROI_28/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0037_ROI_28/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0038/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0038/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0038/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0038/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0038/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0038/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0038/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0038/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0038/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0038/origin_coords: dtype=float64 shape=(3,) val="0xb4006f" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0038/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0038/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0038/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0038_ROI_29/description: dtype=object shape=() val="Imaging plane for variable ...0x47e40e58" +/general/optophysiology/Zstack0038_ROI_29/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0038_ROI_29/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0038_ROI_29/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0038_ROI_29/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0038_ROI_29/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0038_ROI_29/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0038_ROI_29/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0038_ROI_29/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0038_ROI_29/origin_coords: dtype=float64 shape=(3,) val="0x227602a8" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0038_ROI_29/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0038_ROI_29/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0038_ROI_29/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0039/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0039/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0039/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0039/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0039/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0039/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0039/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0039/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0039/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0039/origin_coords: dtype=float64 shape=(3,) val="0xa00065" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0039/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0039/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0039/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0039_ROI_13/description: dtype=object shape=() val="Imaging plane for variable ...0x47dc0e51" +/general/optophysiology/Zstack0039_ROI_13/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0039_ROI_13/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0039_ROI_13/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0039_ROI_13/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0039_ROI_13/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0039_ROI_13/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0039_ROI_13/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0039_ROI_13/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0039_ROI_13/origin_coords: dtype=float64 shape=(3,) val="0x1a4a0242" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0039_ROI_13/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0039_ROI_13/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0039_ROI_13/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0039_ROI_21/description: dtype=object shape=() val="Imaging plane for variable ...0x47dc0e50" +/general/optophysiology/Zstack0039_ROI_21/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0039_ROI_21/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0039_ROI_21/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0039_ROI_21/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0039_ROI_21/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0039_ROI_21/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0039_ROI_21/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0039_ROI_21/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0039_ROI_21/origin_coords: dtype=float64 shape=(3,) val="0x1af4024f" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0039_ROI_21/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0039_ROI_21/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0039_ROI_21/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0040/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0040/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0040/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0040/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0040/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0040/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0040/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0040/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0040/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0040/origin_coords: dtype=float64 shape=(3,) val="0x800055" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0040/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0040/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0040/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0040_ROI_19/description: dtype=object shape=() val="Imaging plane for variable ...0x47e20e57" +/general/optophysiology/Zstack0040_ROI_19/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0040_ROI_19/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0040_ROI_19/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0040_ROI_19/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0040_ROI_19/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0040_ROI_19/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0040_ROI_19/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0040_ROI_19/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0040_ROI_19/origin_coords: dtype=float64 shape=(3,) val="0x15fc021b" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0040_ROI_19/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0040_ROI_19/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0040_ROI_19/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0041/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0041/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0041/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0041/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0041/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041/origin_coords: dtype=float64 shape=(3,) val="0x180001" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0041/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0041_ROI_12/description: dtype=object shape=() val="Imaging plane for variable ...0x47db0e50" +/general/optophysiology/Zstack0041_ROI_12/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0041_ROI_12/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_12/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0041_ROI_12/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_12/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_12/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0041_ROI_12/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_12/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_12/origin_coords: dtype=float64 shape=(3,) val="0x14d4019b" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_12/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0041_ROI_12/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_12/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0041_ROI_18/description: dtype=object shape=() val="Imaging plane for variable ...0x47e10e56" +/general/optophysiology/Zstack0041_ROI_18/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0041_ROI_18/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_18/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0041_ROI_18/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_18/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_18/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0041_ROI_18/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_18/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_18/origin_coords: dtype=float64 shape=(3,) val="0x1cf201c6" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_18/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0041_ROI_18/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_18/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0041_ROI_20/description: dtype=object shape=() val="Imaging plane for variable ...0x47db0e4f" +/general/optophysiology/Zstack0041_ROI_20/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0041_ROI_20/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_20/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0041_ROI_20/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_20/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_20/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0041_ROI_20/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_20/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_20/origin_coords: dtype=float64 shape=(3,) val="0x13740177" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_20/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0041_ROI_20/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_20/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0041_ROI_25/description: dtype=object shape=() val="Imaging plane for variable ...0x47e00e54" +/general/optophysiology/Zstack0041_ROI_25/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0041_ROI_25/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_25/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0041_ROI_25/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_25/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_25/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0041_ROI_25/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_25/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_25/origin_coords: dtype=float64 shape=(3,) val="0x1c3c01eb" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_25/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0041_ROI_25/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_25/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0041_ROI_31/description: dtype=object shape=() val="Imaging plane for variable ...0x47de0e51" +/general/optophysiology/Zstack0041_ROI_31/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0041_ROI_31/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_31/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0041_ROI_31/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_31/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_31/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0041_ROI_31/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_31/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0041_ROI_31/origin_coords: dtype=float64 shape=(3,) val="0x23060290" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0041_ROI_31/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0041_ROI_31/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0041_ROI_31/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0042/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0042/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0042/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0042/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0042/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0042/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0042/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0042/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0042/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0042/origin_coords: dtype=float64 shape=(3,) val="0x10000d5" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0042/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0042/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0042/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0042_ROI_17/description: dtype=object shape=() val="Imaging plane for variable ...0x47e00e55" +/general/optophysiology/Zstack0042_ROI_17/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0042_ROI_17/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0042_ROI_17/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0042_ROI_17/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0042_ROI_17/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0042_ROI_17/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0042_ROI_17/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0042_ROI_17/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0042_ROI_17/origin_coords: dtype=float64 shape=(3,) val="0x18800265" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0042_ROI_17/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0042_ROI_17/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0042_ROI_17/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0043/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0043/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0043/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0043/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0043/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0043/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0043/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0043/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0043/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0043/origin_coords: dtype=float64 shape=(3,) val="0x12000e5" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0043/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0043/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0043/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0043_ROI_16/description: dtype=object shape=() val="Imaging plane for variable ...0x47df0e54" +/general/optophysiology/Zstack0043_ROI_16/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0043_ROI_16/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0043_ROI_16/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0043_ROI_16/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0043_ROI_16/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0043_ROI_16/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0043_ROI_16/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0043_ROI_16/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0043_ROI_16/origin_coords: dtype=float64 shape=(3,) val="0x1dae02d8" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0043_ROI_16/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0043_ROI_16/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0043_ROI_16/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0044/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0044/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0044/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0044/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0044/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0044/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0044/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0044/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0044/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0044/origin_coords: dtype=float64 shape=(3,) val="0x13400ef" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0044/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0044/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0044/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0045/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0045/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0045/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0045/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0045/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0045/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0045/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0045/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0045/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0045/origin_coords: dtype=float64 shape=(3,) val="0x14000f5" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0045/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0045/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0045/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0046/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0046/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0046/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0046/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0046/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0046/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0046/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0046/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0046/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0046/origin_coords: dtype=float64 shape=(3,) val="0x14a00fa" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0046/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0046/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0046/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0046_ROI_15/description: dtype=object shape=() val="Imaging plane for variable ...0x47de0e53" +/general/optophysiology/Zstack0046_ROI_15/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0046_ROI_15/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0046_ROI_15/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0046_ROI_15/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0046_ROI_15/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0046_ROI_15/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0046_ROI_15/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0046_ROI_15/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0046_ROI_15/origin_coords: dtype=float64 shape=(3,) val="0x25be035c" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0046_ROI_15/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0046_ROI_15/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0046_ROI_15/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0047/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0047/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0047/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0047/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0047/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0047/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0047/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0047/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0047/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0047/origin_coords: dtype=float64 shape=(3,) val="0x15400ff" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0047/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0047/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0047/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0047_ROI_14/description: dtype=object shape=() val="Imaging plane for variable ...0x47dd0e52" +/general/optophysiology/Zstack0047_ROI_14/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0047_ROI_14/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0047_ROI_14/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0047_ROI_14/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0047_ROI_14/grid_spacing: dtype=float32 shape=(3,) val="0x167a0291" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0047_ROI_14/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0047_ROI_14/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0047_ROI_14/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0047_ROI_14/origin_coords: dtype=float64 shape=(3,) val="0xf3001fd" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0047_ROI_14/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0047_ROI_14/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0047_ROI_14/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0048/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0048/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0048/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0048/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0048/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0048/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0048/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0048/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0048/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0048/origin_coords: dtype=float64 shape=(3,) val="0x2da0182" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0048/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0048/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0048/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0049/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0049/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0049/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0049/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0049/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0049/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0049/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0049/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0049/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0049/origin_coords: dtype=float64 shape=(3,) val="0x1600105" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0049/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0049/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0049/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0050/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0050/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0050/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0050/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0050/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0050/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0050/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0050/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0050/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0050/origin_coords: dtype=float64 shape=(3,) val="0x2e40187" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0050/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0050/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0050/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0051/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0051/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0051/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0051/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0051/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0051/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0051/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0051/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0051/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0051/origin_coords: dtype=float64 shape=(3,) val="0x16a010a" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0051/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0051/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0051/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0052/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0052/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0052/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0052/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0052/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0052/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0052/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0052/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0052/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0052/origin_coords: dtype=float64 shape=(3,) val="0x2ee018c" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0052/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0052/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0052/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0053/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0053/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0053/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0053/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0053/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0053/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0053/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0053/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0053/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0053/origin_coords: dtype=float64 shape=(3,) val="0x174010f" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0053/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0053/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0053/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0054/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0054/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0054/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0054/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0054/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0054/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0054/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0054/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0054/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0054/origin_coords: dtype=float64 shape=(3,) val="0x2380151" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0054/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0054/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0054/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0055/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0055/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0055/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0055/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0055/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0055/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0055/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0055/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0055/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0055/origin_coords: dtype=float64 shape=(3,) val="0x2fa0192" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0055/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0055/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0055/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0056/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0056/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0056/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0056/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0056/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0056/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0056/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0056/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0056/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0056/origin_coords: dtype=float64 shape=(3,) val="0x3bc01d3" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0056/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0056/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0056/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0057/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0057/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0057/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0057/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0057/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0057/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0057/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0057/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0057/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0057/origin_coords: dtype=float64 shape=(3,) val="0x1800115" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0057/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0057/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0057/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0058/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0058/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0058/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0058/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0058/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0058/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0058/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0058/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0058/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0058/origin_coords: dtype=float64 shape=(3,) val="0x2420156" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0058/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0058/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0058/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0059/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0059/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0059/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0059/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0059/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0059/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0059/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0059/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0059/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0059/origin_coords: dtype=float64 shape=(3,) val="0x3040197" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0059/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0059/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0059/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0060/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0060/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0060/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0060/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0060/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0060/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0060/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0060/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0060/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0060/origin_coords: dtype=float64 shape=(3,) val="0x3c601d8" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0060/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0060/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0060/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0061/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0061/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0061/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0061/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0061/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0061/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0061/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0061/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0061/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0061/origin_coords: dtype=float64 shape=(3,) val="0x18a011a" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0061/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0061/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0061/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0062/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0062/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0062/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0062/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0062/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0062/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0062/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0062/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0062/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0062/origin_coords: dtype=float64 shape=(3,) val="0x24c015b" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0062/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0062/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0062/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0063/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0063/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0063/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0063/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0063/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0063/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0063/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0063/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0063/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0063/origin_coords: dtype=float64 shape=(3,) val="0x30e019c" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0063/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0063/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0063/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0064/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0064/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0064/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0064/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0064/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0064/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0064/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0064/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0064/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0064/origin_coords: dtype=float64 shape=(3,) val="0x3d001dd" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0064/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0064/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0064/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0065/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0065/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0065/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0065/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0065/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0065/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0065/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0065/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0065/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0065/origin_coords: dtype=float64 shape=(3,) val="0x194011f" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0065/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0065/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0065/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0066/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0066/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0066/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0066/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0066/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0066/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0066/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0066/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0066/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0066/origin_coords: dtype=float64 shape=(3,) val="0x2560160" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0066/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0066/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0066/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0067/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0067/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0067/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0067/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0067/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0067/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0067/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0067/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0067/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0067/origin_coords: dtype=float64 shape=(3,) val="0x2580161" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0067/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0067/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0067/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0068/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0068/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0068/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0068/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0068/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0068/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0068/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0068/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0068/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0068/origin_coords: dtype=float64 shape=(3,) val="0x4380201" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0068/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0068/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0068/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0069/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0069/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0069/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0069/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0069/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0069/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0069/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0069/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0069/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0069/origin_coords: dtype=float64 shape=(3,) val="0x31a01a2" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0069/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0069/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0069/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0070/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0070/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0070/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0070/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0070/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0070/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0070/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0070/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0070/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0070/origin_coords: dtype=float64 shape=(3,) val="0x1fc0143" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0070/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0070/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0070/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0071/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0071/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0071/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0071/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0071/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0071/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0071/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0071/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0071/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0071/origin_coords: dtype=float64 shape=(3,) val="0x3dc01e3" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0071/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0071/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0071/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0072/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0072/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0072/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0072/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0072/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0072/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0072/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0072/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0072/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0072/origin_coords: dtype=float64 shape=(3,) val="0x2be0184" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0072/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0072/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0072/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0073/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0073/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0073/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0073/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0073/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0073/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0073/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0073/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0073/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0073/origin_coords: dtype=float64 shape=(3,) val="0x1a00125" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0073/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0073/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0073/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0074/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0074/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0074/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0074/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0074/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0074/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0074/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0074/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0074/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0074/origin_coords: dtype=float64 shape=(3,) val="0x38001c5" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0074/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0074/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0074/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0075/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0075/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0075/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0075/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0075/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0075/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0075/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0075/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0075/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0075/origin_coords: dtype=float64 shape=(3,) val="0x2620166" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0075/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0075/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0075/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0076/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0076/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0076/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0076/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0076/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0076/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0076/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0076/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0076/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0076/origin_coords: dtype=float64 shape=(3,) val="0x4420206" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0076/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0076/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0076/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0077/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0077/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0077/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0077/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0077/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0077/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0077/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0077/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0077/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0077/origin_coords: dtype=float64 shape=(3,) val="0x32401a7" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0077/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0077/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0077/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0078/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0078/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0078/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0078/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0078/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0078/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0078/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0078/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0078/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0078/origin_coords: dtype=float64 shape=(3,) val="0x2060148" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0078/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0078/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0078/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0079/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0079/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0079/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0079/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0079/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0079/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0079/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0079/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0079/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0079/origin_coords: dtype=float64 shape=(3,) val="0x3e601e8" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0079/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0079/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0079/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0080/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0080/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0080/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0080/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0080/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0080/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0080/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0080/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0080/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0080/origin_coords: dtype=float64 shape=(3,) val="0x2c80189" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0080/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0080/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0080/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/optophysiology/Zstack0081/description: dtype=object shape=() val="Reference Z stack" +/general/optophysiology/Zstack0081/device -> /general/devices/AOL_microscope +/general/optophysiology/Zstack0081/excitation_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0081/green/description: dtype=object shape=() val="Green channel, typically us...0xb22811b2" +/general/optophysiology/Zstack0081/green/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0081/grid_spacing: dtype=float32 shape=(3,) val="0x34b605e9" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0081/imaging_rate: dtype=float64 shape=() val="19.25441699" +/general/optophysiology/Zstack0081/indicator: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0081/location: dtype=object shape=() val="Not specified" +/general/optophysiology/Zstack0081/origin_coords: dtype=float64 shape=(3,) val="0x1aa012a" + @unit: type=str val="micrometers" +/general/optophysiology/Zstack0081/red/description: dtype=object shape=() val="Red channel, typically used...0x49f80f71" +/general/optophysiology/Zstack0081/red/emission_lambda: dtype=float64 shape=() val="nan" +/general/optophysiology/Zstack0081/reference_frame: dtype=object shape=() val="TODO: In lab book (partly?)" +/general/session_id: dtype=object shape=() val="200228_14_15_57" +/general/silverlab_metadata + @labview_version: type=str val="3.0.0" + @silverlab_api_version: type=str val="0.2" +/general/silverlab_optophysiology + @cycle_time: dtype=float64 shape=() val="0.051936135" + @cycles_per_trial: dtype=int64 shape=() val="207" + @frame_size: dtype=int64 shape=(2,) val="0x12d00191" + @imaging_mode: type=str val="miniscan" +/general/silverlab_optophysiology/pockels: dtype=float64 shape=(81, 4) val="0x752ff2" + @columns: dtype=object shape=(4,) val="0xcab00abd" +/identifier: dtype=ignored shape=ignored val="ignored" +/intervals/epochs + @colnames: dtype=object shape=(3,) val="0xc06c0c20" + @description: type=str val="experimental epochs" +/intervals/epochs/epoch_name: dtype=object shape=(3,) val="0x9f6a09b8" + @description: type=str val="the name of the epoch" +/intervals/epochs/id: dtype=int64 shape=(3,) val="0x380004" +/intervals/epochs/start_time: dtype=float64 shape=(3,) val="0x2dc005e8" + @description: type=str val="Start time of epoch, in seconds" +/intervals/epochs/stop_time: dtype=float64 shape=(3,) val="0xa8e30c22" + @description: type=str val="Stop time of epoch, in seconds" +/intervals/trials + @colnames: dtype=object shape=(2,) val="0x594e0811" + @description: type=str val="experimental trials" +/intervals/trials/id: dtype=int64 shape=(3,) val="0x380004" +/intervals/trials/start_time: dtype=float64 shape=(3,) val="0x25d30570" + @description: type=str val="Start time of epoch, in seconds" +/intervals/trials/stop_time: dtype=float64 shape=(3,) val="0x9d190bc1" + @description: type=str val="Stop time of epoch, in seconds" +/processing/Acquired_ROIs + @description: type=str val="ROI locations and acquired fluorescence readings made directly by the AOL microscope." +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/apparent_frame_size: dtype=float64 shape=(1,) val="[900]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/dimensions: dtype=int32 shape=(1, 2) val="0x6bf00f5" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/id: dtype=int64 shape=(1,) val="[1]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/imaging_plane -> /general/optophysiology/Zstack0008 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/laser_power: dtype=float64 shape=(1,) val="[35.40625]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/num_lines: dtype=int64 shape=(1,) val="[58]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/num_pixels: dtype=int64 shape=(1,) val="[25578]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/pixel_mask: dtype=int64 shape=(25578, 3) val="0xacfc6eed" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/pixel_mask_index: dtype=int64 shape=(1,) val="[25578]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/pixels_per_miniscan: dtype=int64 shape=(1,) val="[441]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/reference_images/Zstack_Red_0008 -> /acquisition/Zstack_Red_0008 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/reference_images/reference_images -> /acquisition/Zstack_Red_0008 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/resolution: dtype=float64 shape=(1,) val="[0.3332519531]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/roi_index: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/roi_time_ns: dtype=float64 shape=(1,) val="[inf]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/x_start: dtype=int64 shape=(1,) val="[60]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/x_stop: dtype=int64 shape=(1,) val="[157]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/y_start: dtype=int64 shape=(1,) val="[92]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/y_stop: dtype=int64 shape=(1,) val="[104]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/z_start: dtype=float64 shape=(1,) val="[165]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/z_stop: dtype=float64 shape=(1,) val="[165]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0008/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/apparent_frame_size: dtype=float64 shape=(1,) val="[900]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/dimensions: dtype=int32 shape=(1, 2) val="0x5e700da" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/id: dtype=int64 shape=(1,) val="[2]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/imaging_plane -> /general/optophysiology/Zstack0010 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/laser_power: dtype=float64 shape=(1,) val="[35.53125]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/num_lines: dtype=int64 shape=(1,) val="[58]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/num_pixels: dtype=int64 shape=(1,) val="[24012]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/pixel_mask: dtype=int64 shape=(24012, 3) val="0xb1bdcc87" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/pixel_mask_index: dtype=int64 shape=(1,) val="[24012]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/pixels_per_miniscan: dtype=int64 shape=(1,) val="[414]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/reference_images/Zstack_Red_0010 -> /acquisition/Zstack_Red_0010 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/reference_images/reference_images -> /acquisition/Zstack_Red_0010 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/resolution: dtype=float64 shape=(1,) val="[0.3332519531]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/roi_index: dtype=float64 shape=(1,) val="[2]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/roi_time_ns: dtype=float64 shape=(1,) val="[inf]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/x_start: dtype=int64 shape=(1,) val="[54]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/x_stop: dtype=int64 shape=(1,) val="[145]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/y_start: dtype=int64 shape=(1,) val="[132]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/y_stop: dtype=int64 shape=(1,) val="[144]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/z_start: dtype=float64 shape=(1,) val="[155]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/z_stop: dtype=float64 shape=(1,) val="[155]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0010/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/apparent_frame_size: dtype=float64 shape=(1,) val="[900]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/dimensions: dtype=int32 shape=(1, 2) val="0x68b00f1" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/id: dtype=int64 shape=(1,) val="[3]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/imaging_plane -> /general/optophysiology/Zstack0012 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/laser_power: dtype=float64 shape=(1,) val="[35.65625]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/num_lines: dtype=int64 shape=(1,) val="[63]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/num_pixels: dtype=int64 shape=(1,) val="[27216]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/pixel_mask: dtype=int64 shape=(27216, 3) val="0x9585bd14" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/pixel_mask_index: dtype=int64 shape=(1,) val="[27216]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/pixels_per_miniscan: dtype=int64 shape=(1,) val="[432]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/reference_images/Zstack_Red_0012 -> /acquisition/Zstack_Red_0012 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/reference_images/reference_images -> /acquisition/Zstack_Red_0012 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/resolution: dtype=float64 shape=(1,) val="[0.3332519531]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/roi_index: dtype=float64 shape=(1,) val="[3]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/roi_time_ns: dtype=float64 shape=(1,) val="[inf]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/x_start: dtype=int64 shape=(1,) val="[58]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/x_stop: dtype=int64 shape=(1,) val="[153]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/y_start: dtype=int64 shape=(1,) val="[92]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/y_stop: dtype=int64 shape=(1,) val="[105]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/z_start: dtype=float64 shape=(1,) val="[145]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/z_stop: dtype=float64 shape=(1,) val="[145]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0012/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/apparent_frame_size: dtype=float64 shape=(1,) val="[900]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/dimensions: dtype=int32 shape=(1, 2) val="0x60700de" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/id: dtype=int64 shape=(1,) val="[4]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/imaging_plane -> /general/optophysiology/Zstack0015 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/laser_power: dtype=float64 shape=(1,) val="[35.8125]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/num_lines: dtype=int64 shape=(1,) val="[58]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/num_pixels: dtype=int64 shape=(1,) val="[24244]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/pixel_mask: dtype=int64 shape=(24244, 3) val="0x3330b05b" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/pixel_mask_index: dtype=int64 shape=(1,) val="[24244]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/pixels_per_miniscan: dtype=int64 shape=(1,) val="[418]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/reference_images/Zstack_Red_0015 -> /acquisition/Zstack_Red_0015 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/reference_images/reference_images -> /acquisition/Zstack_Red_0015 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/resolution: dtype=float64 shape=(1,) val="[0.3332519531]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/roi_index: dtype=float64 shape=(1,) val="[4]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/roi_time_ns: dtype=float64 shape=(1,) val="[inf]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/x_start: dtype=int64 shape=(1,) val="[63]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/x_stop: dtype=int64 shape=(1,) val="[155]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/y_start: dtype=int64 shape=(1,) val="[130]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/y_stop: dtype=int64 shape=(1,) val="[142]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/z_start: dtype=float64 shape=(1,) val="[130]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/z_stop: dtype=float64 shape=(1,) val="[130]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0015/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/apparent_frame_size: dtype=float64 shape=(1,) val="[900]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/dimensions: dtype=int32 shape=(1, 2) val="0x54700c4" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/id: dtype=int64 shape=(1,) val="[5]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/imaging_plane -> /general/optophysiology/Zstack0017 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/laser_power: dtype=float64 shape=(1,) val="[35.9375]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/num_lines: dtype=int64 shape=(1,) val="[54]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/num_pixels: dtype=int64 shape=(1,) val="[21384]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/pixel_mask: dtype=int64 shape=(21384, 3) val="0x9e41f081" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/pixel_mask_index: dtype=int64 shape=(1,) val="[21384]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/pixels_per_miniscan: dtype=int64 shape=(1,) val="[396]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/reference_images/Zstack_Red_0017 -> /acquisition/Zstack_Red_0017 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/reference_images/reference_images -> /acquisition/Zstack_Red_0017 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/resolution: dtype=float64 shape=(1,) val="[0.3332519531]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/roi_index: dtype=float64 shape=(1,) val="[5]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/roi_time_ns: dtype=float64 shape=(1,) val="[inf]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/x_start: dtype=int64 shape=(1,) val="[71]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/x_stop: dtype=int64 shape=(1,) val="[158]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/y_start: dtype=int64 shape=(1,) val="[94]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/y_stop: dtype=int64 shape=(1,) val="[105]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/z_start: dtype=float64 shape=(1,) val="[120]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/z_stop: dtype=float64 shape=(1,) val="[120]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0017/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/angle_deg: dtype=float64 shape=(2,) val="0x100001" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/apparent_frame_size: dtype=float64 shape=(2,) val="0x77c0153" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/composite_id: dtype=float64 shape=(2,) val="0x100001" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/dimensions: dtype=int32 shape=(2, 2) val="0x1ec0030" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/frame_size: dtype=float64 shape=(2,) val="0x77c0153" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/id: dtype=int64 shape=(2,) val="0x2400031" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/imaging_plane -> /general/optophysiology/Zstack0033 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/laser_power: dtype=float64 shape=(2,) val="0xc0001ed" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=int64 shape=(2,) val="0x1100016" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_pixels: dtype=int64 shape=(2,) val="0xcb00111" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/original_fov_um: dtype=float64 shape=(2,) val="0x126802e5" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/pixel_dwell_time: dtype=float64 shape=(2,) val="0x14420341" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/pixel_mask: dtype=int64 shape=(272, 3) val="0x8c92da7f" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/pixel_mask_index: dtype=int64 shape=(2,) val="0x8d70096" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/pixels_per_miniscan: dtype=int64 shape=(2,) val="0x140001b" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/reference_images/Zstack_Red_0033 -> /acquisition/Zstack_Red_0033 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/reference_images/reference_images -> /acquisition/Zstack_Red_0033 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/resolution: dtype=float64 shape=(2,) val="0xe26026f" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/roi_group_id: dtype=float64 shape=(2,) val="0x100001" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/roi_index: dtype=float64 shape=(2,) val="0x52000f1" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/roi_time_ns: dtype=float64 shape=(2,) val="0x16600355" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/x_start: dtype=int64 shape=(2,) val="0xcf00100" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/x_stop: dtype=int64 shape=(2,) val="0xe080118" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/y_start: dtype=int64 shape=(2,) val="0x5800086" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/y_stop: dtype=int64 shape=(2,) val="0x6680099" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/z_start: dtype=float64 shape=(2,) val="0x5c00109" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/z_stop: dtype=float64 shape=(2,) val="0x5c00109" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/zoom: dtype=float64 shape=(2,) val="0xdc6025f" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/apparent_frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/dimensions: dtype=int32 shape=(1, 2) val="0x1840038" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/id: dtype=int64 shape=(1,) val="[6]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/imaging_plane -> /general/optophysiology/Zstack0034 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/laser_power: dtype=float64 shape=(1,) val="[36.96875]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_lines: dtype=int64 shape=(1,) val="[15]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/num_pixels: dtype=int64 shape=(1,) val="[600]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/pixel_mask: dtype=int64 shape=(600, 3) val="0xc2f0d3a4" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/pixel_mask_index: dtype=int64 shape=(1,) val="[600]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/pixels_per_miniscan: dtype=int64 shape=(1,) val="[40]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/reference_images/Zstack_Red_0034 -> /acquisition/Zstack_Red_0034 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/reference_images/reference_images -> /acquisition/Zstack_Red_0034 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/resolution: dtype=float64 shape=(1,) val="[1.5]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/roi_index: dtype=float64 shape=(1,) val="[6]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/roi_time_ns: dtype=float64 shape=(1,) val="[inf]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/x_start: dtype=int64 shape=(1,) val="[104]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/x_stop: dtype=int64 shape=(1,) val="[143]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/y_start: dtype=int64 shape=(1,) val="[68]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/y_stop: dtype=int64 shape=(1,) val="[82]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/z_start: dtype=float64 shape=(1,) val="[35]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/z_stop: dtype=float64 shape=(1,) val="[35]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0034/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/angle_deg: dtype=float64 shape=(2,) val="0x100001" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/apparent_frame_size: dtype=float64 shape=(2,) val="0x77c0153" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/composite_id: dtype=float64 shape=(2,) val="0x100001" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/dimensions: dtype=int32 shape=(2, 2) val="0x3240040" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/frame_size: dtype=float64 shape=(2,) val="0x77c0153" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/id: dtype=int64 shape=(2,) val="0x1580021" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/imaging_plane -> /general/optophysiology/Zstack0035 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/laser_power: dtype=float64 shape=(2,) val="0xce0020d" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_lines: dtype=int64 shape=(2,) val="0xe00012" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/num_pixels: dtype=int64 shape=(2,) val="0x68f0095" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/original_fov_um: dtype=float64 shape=(2,) val="0x126802e5" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/pixel_dwell_time: dtype=float64 shape=(2,) val="0x14420341" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/pixel_mask: dtype=int64 shape=(403, 3) val="0x9ab22467" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/pixel_mask_index: dtype=int64 shape=(2,) val="0x86e00d1" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/pixels_per_miniscan: dtype=int64 shape=(2,) val="0x298002f" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/reference_images/Zstack_Red_0035 -> /acquisition/Zstack_Red_0035 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/reference_images/reference_images -> /acquisition/Zstack_Red_0035 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/resolution: dtype=float64 shape=(2,) val="0xe26026f" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/roi_group_id: dtype=float64 shape=(2,) val="0x100001" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/roi_index: dtype=float64 shape=(2,) val="0x45200da" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/roi_time_ns: dtype=float64 shape=(2,) val="0x167a0334" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/x_start: dtype=int64 shape=(2,) val="0x6f000c7" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/x_stop: dtype=int64 shape=(2,) val="0x96000f3" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/y_start: dtype=int64 shape=(2,) val="0x9c000ba" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/y_stop: dtype=int64 shape=(2,) val="0xa7800c9" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/z_start: dtype=float64 shape=(2,) val="0x57800fd" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/z_stop: dtype=float64 shape=(2,) val="0x57800fd" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0035/zoom: dtype=float64 shape=(2,) val="0xdc6025f" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/angle_deg: dtype=float64 shape=(6,) val="0x13fc0117" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/apparent_frame_size: dtype=float64 shape=(6,) val="0x55d403f7" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/composite_id: dtype=float64 shape=(6,) val="0x300001" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/dimensions: dtype=int32 shape=(6, 2) val="0xcf0007b" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/frame_size: dtype=float64 shape=(6,) val="0x55d403f7" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/id: dtype=int64 shape=(6,) val="0x9680073" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/imaging_plane -> /general/optophysiology/Zstack0036 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/laser_power: dtype=float64 shape=(6,) val="0x8d300655" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/num_lines: dtype=int64 shape=(6,) val="0x5700033" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/num_pixels: dtype=int64 shape=(6,) val="0x42400254" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/original_fov_um: dtype=float64 shape=(6,) val="0xc1f808ad" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/pixel_dwell_time: dtype=float64 shape=(6,) val="0xd8c609c1" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/pixel_mask: dtype=int64 shape=(595, 3) val="0xce64b0a6" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/pixel_mask_index: dtype=int64 shape=(6,) val="0x576b0348" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/pixels_per_miniscan: dtype=int64 shape=(6,) val="0x8780049" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/reference_images/Zstack_Red_0036 -> /acquisition/Zstack_Red_0036 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/reference_images/reference_images -> /acquisition/Zstack_Red_0036 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/resolution: dtype=float64 shape=(6,) val="0x9f12074b" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/roi_group_id: dtype=float64 shape=(6,) val="0x300001" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/roi_index: dtype=float64 shape=(6,) val="0x3342029a" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/roi_time_ns: dtype=float64 shape=(6,) val="0xb25208b2" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/x_start: dtype=int64 shape=(6,) val="0x3c080200" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/x_stop: dtype=int64 shape=(6,) val="0x43900241" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/y_start: dtype=int64 shape=(6,) val="0x3f900233" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/y_stop: dtype=int64 shape=(6,) val="0x44400260" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/z_start: dtype=float64 shape=(6,) val="0x3d1402d7" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/z_stop: dtype=float64 shape=(6,) val="0x3d1402d7" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0036/zoom: dtype=float64 shape=(6,) val="0x9af2071b" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/angle_deg: dtype=float64 shape=(3,) val="0x180001" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/apparent_frame_size: dtype=float64 shape=(3,) val="0x132601fc" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/composite_id: dtype=float64 shape=(3,) val="0x180001" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/dimensions: dtype=int32 shape=(3, 2) val="0x4080046" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/frame_size: dtype=float64 shape=(3,) val="0x132601fc" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/id: dtype=int64 shape=(3,) val="0x3800040" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/imaging_plane -> /general/optophysiology/Zstack0037 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/laser_power: dtype=float64 shape=(3,) val="0x21a80343" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/num_lines: dtype=int64 shape=(3,) val="0x2300021" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/num_pixels: dtype=int64 shape=(3,) val="0x1a58018d" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/original_fov_um: dtype=float64 shape=(3,) val="0x2cf40457" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/pixel_dwell_time: dtype=float64 shape=(3,) val="0x31e304e1" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/pixel_mask: dtype=int64 shape=(396, 3) val="0x291c4d46" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/pixel_mask_index: dtype=int64 shape=(3,) val="0x152e014b" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/pixels_per_miniscan: dtype=int64 shape=(3,) val="0x2700026" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/reference_images/Zstack_Red_0037 -> /acquisition/Zstack_Red_0037 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/reference_images/reference_images -> /acquisition/Zstack_Red_0037 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/resolution: dtype=float64 shape=(3,) val="0x23cd03a6" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/roi_group_id: dtype=float64 shape=(3,) val="0x180001" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/roi_index: dtype=float64 shape=(3,) val="0xc2c015b" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/roi_time_ns: dtype=float64 shape=(3,) val="0x326004a5" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/x_start: dtype=int64 shape=(3,) val="0x18e80187" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/x_stop: dtype=int64 shape=(3,) val="0x1b1001a9" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/y_start: dtype=int64 shape=(3,) val="0xb2000f4" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/y_stop: dtype=int64 shape=(3,) val="0xd080111" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/z_start: dtype=float64 shape=(3,) val="0xcf0015d" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/z_stop: dtype=float64 shape=(3,) val="0xcf0015d" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0037/zoom: dtype=float64 shape=(3,) val="0x22dd038e" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/apparent_frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/dimensions: dtype=int32 shape=(1, 2) val="0x700012" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/id: dtype=int64 shape=(1,) val="[29]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/imaging_plane -> /general/optophysiology/Zstack0038 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/laser_power: dtype=float64 shape=(1,) val="[37.21875]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/num_lines: dtype=int64 shape=(1,) val="[8]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/num_pixels: dtype=int64 shape=(1,) val="[72]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/pixel_mask: dtype=int64 shape=(72, 3) val="0xf3c5459d" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/pixel_mask_index: dtype=int64 shape=(1,) val="[72]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/pixels_per_miniscan: dtype=int64 shape=(1,) val="[9]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/reference_images/Zstack_Red_0038 -> /acquisition/Zstack_Red_0038 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/reference_images/reference_images -> /acquisition/Zstack_Red_0038 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/resolution: dtype=float64 shape=(1,) val="[1.5]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/roi_index: dtype=float64 shape=(1,) val="[29]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/roi_time_ns: dtype=float64 shape=(1,) val="[14400]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/x_start: dtype=int64 shape=(1,) val="[142]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/x_stop: dtype=int64 shape=(1,) val="[150]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/y_start: dtype=int64 shape=(1,) val="[97]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/y_stop: dtype=int64 shape=(1,) val="[104]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/z_start: dtype=float64 shape=(1,) val="[15]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/z_stop: dtype=float64 shape=(1,) val="[15]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/angle_deg: dtype=float64 shape=(2,) val="0x100001" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/apparent_frame_size: dtype=float64 shape=(2,) val="0x77c0153" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/composite_id: dtype=float64 shape=(2,) val="0x100001" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/dimensions: dtype=int32 shape=(2, 2) val="0x1c4002d" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/frame_size: dtype=float64 shape=(2,) val="0x77c0153" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/id: dtype=int64 shape=(2,) val="0x1880023" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/imaging_plane -> /general/optophysiology/Zstack0039 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/laser_power: dtype=float64 shape=(2,) val="0xea0024d" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/num_lines: dtype=int64 shape=(2,) val="0xe80014" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/num_pixels: dtype=int64 shape=(2,) val="0xa8800f0" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/original_fov_um: dtype=float64 shape=(2,) val="0x126802e5" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/pixel_dwell_time: dtype=float64 shape=(2,) val="0x14420341" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/pixel_mask: dtype=int64 shape=(239, 3) val="0x1dafcae3" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/pixel_mask_index: dtype=int64 shape=(2,) val="0xd880150" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/pixels_per_miniscan: dtype=int64 shape=(2,) val="0x138001a" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/reference_images/Zstack_Red_0039 -> /acquisition/Zstack_Red_0039 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/reference_images/reference_images -> /acquisition/Zstack_Red_0039 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/resolution: dtype=float64 shape=(2,) val="0xe26026f" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/roi_group_id: dtype=float64 shape=(2,) val="0x100001" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/roi_index: dtype=float64 shape=(2,) val="0x49e00e0" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/roi_time_ns: dtype=float64 shape=(2,) val="0x178a03de" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/x_start: dtype=int64 shape=(2,) val="0xb2800ef" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/x_stop: dtype=int64 shape=(2,) val="0xc380106" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/y_start: dtype=int64 shape=(2,) val="0xa0800bd" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/y_stop: dtype=int64 shape=(2,) val="0xac800ce" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/z_start: dtype=float64 shape=(2,) val="0x44000c9" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/z_stop: dtype=float64 shape=(2,) val="0x44000c9" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0039/zoom: dtype=float64 shape=(2,) val="0xdc6025f" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/apparent_frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/dimensions: dtype=int32 shape=(1, 2) val="0x6c0011" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/id: dtype=int64 shape=(1,) val="[19]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/imaging_plane -> /general/optophysiology/Zstack0040 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/laser_power: dtype=float64 shape=(1,) val="[37.34375]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/num_lines: dtype=int64 shape=(1,) val="[7]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/num_pixels: dtype=int64 shape=(1,) val="[63]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/pixel_mask: dtype=int64 shape=(63, 3) val="0x38c51c4e" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/pixel_mask_index: dtype=int64 shape=(1,) val="[63]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/pixels_per_miniscan: dtype=int64 shape=(1,) val="[9]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/reference_images/Zstack_Red_0040 -> /acquisition/Zstack_Red_0040 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/reference_images/reference_images -> /acquisition/Zstack_Red_0040 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/resolution: dtype=float64 shape=(1,) val="[1.5]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/roi_index: dtype=float64 shape=(1,) val="[19]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/roi_time_ns: dtype=float64 shape=(1,) val="[12600]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/x_start: dtype=int64 shape=(1,) val="[16]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/x_stop: dtype=int64 shape=(1,) val="[24]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/y_start: dtype=int64 shape=(1,) val="[91]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/y_stop: dtype=int64 shape=(1,) val="[97]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/z_start: dtype=float64 shape=(1,) val="[5]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/z_stop: dtype=float64 shape=(1,) val="[5]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0040/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/angle_deg: dtype=float64 shape=(5,) val="0x13f40117" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/apparent_frame_size: dtype=float64 shape=(5,) val="0x3a52034e" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/composite_id: dtype=float64 shape=(5,) val="0x280001" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/dimensions: dtype=int32 shape=(5, 2) val="0xc8c0085" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/frame_size: dtype=float64 shape=(5,) val="0x3a52034e" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/id: dtype=int64 shape=(5,) val="0x8b0006b" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/imaging_plane -> /general/optophysiology/Zstack0041 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/laser_power: dtype=float64 shape=(5,) val="0x6f68060f" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/num_lines: dtype=int64 shape=(5,) val="0x4700032" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/num_pixels: dtype=int64 shape=(5,) val="0x2a37023f" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/original_fov_um: dtype=float64 shape=(5,) val="0x84bc073b" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/pixel_dwell_time: dtype=float64 shape=(5,) val="0x94250821" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/pixel_mask: dtype=int64 shape=(829, 3) val="0x62ab4f07" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/pixel_mask_index: dtype=int64 shape=(5,) val="0x38a00246" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/pixels_per_miniscan: dtype=int64 shape=(5,) val="0x9080054" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/reference_images/Zstack_Red_0041 -> /acquisition/Zstack_Red_0041 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/reference_images/reference_images -> /acquisition/Zstack_Red_0041 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/resolution: dtype=float64 shape=(5,) val="0x6c430614" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/roi_group_id: dtype=float64 shape=(5,) val="0x280001" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/roi_index: dtype=float64 shape=(5,) val="0x262c0247" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/roi_time_ns: dtype=float64 shape=(5,) val="0x90c007c3" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/x_start: dtype=int64 shape=(5,) val="0x318001f5" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/x_stop: dtype=int64 shape=(5,) val="0x39d00242" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/y_start: dtype=int64 shape=(5,) val="0x18e0015d" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/y_stop: dtype=int64 shape=(5,) val="0x1cc8018a" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/z_start: dtype=float64 shape=(5,) val="0x280001" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/z_stop: dtype=float64 shape=(5,) val="0x280001" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0041/zoom: dtype=float64 shape=(5,) val="0x697305ec" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/apparent_frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/dimensions: dtype=int32 shape=(1, 2) val="0x780013" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/id: dtype=int64 shape=(1,) val="[17]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/imaging_plane -> /general/optophysiology/Zstack0042 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/laser_power: dtype=float64 shape=(1,) val="[37.46875]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/num_lines: dtype=int64 shape=(1,) val="[8]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/num_pixels: dtype=int64 shape=(1,) val="[80]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/pixel_mask: dtype=int64 shape=(80, 3) val="0xad213fc1" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/pixel_mask_index: dtype=int64 shape=(1,) val="[80]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/pixels_per_miniscan: dtype=int64 shape=(1,) val="[10]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/reference_images/Zstack_Red_0042 -> /acquisition/Zstack_Red_0042 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/reference_images/reference_images -> /acquisition/Zstack_Red_0042 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/resolution: dtype=float64 shape=(1,) val="[1.5]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/roi_index: dtype=float64 shape=(1,) val="[17]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/roi_time_ns: dtype=float64 shape=(1,) val="[16000]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/x_start: dtype=int64 shape=(1,) val="[131]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/x_stop: dtype=int64 shape=(1,) val="[140]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/y_start: dtype=int64 shape=(1,) val="[64]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/y_stop: dtype=int64 shape=(1,) val="[71]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/z_start: dtype=float64 shape=(1,) val="[-5]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/z_stop: dtype=float64 shape=(1,) val="[-5]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0042/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/apparent_frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/dimensions: dtype=int32 shape=(1, 2) val="0x700012" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/id: dtype=int64 shape=(1,) val="[16]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/imaging_plane -> /general/optophysiology/Zstack0043 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/laser_power: dtype=float64 shape=(1,) val="[37.53125]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/num_lines: dtype=int64 shape=(1,) val="[8]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/num_pixels: dtype=int64 shape=(1,) val="[72]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/pixel_mask: dtype=int64 shape=(72, 3) val="0x1d033c9d" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/pixel_mask_index: dtype=int64 shape=(1,) val="[72]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/pixels_per_miniscan: dtype=int64 shape=(1,) val="[9]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/reference_images/Zstack_Red_0043 -> /acquisition/Zstack_Red_0043 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/reference_images/reference_images -> /acquisition/Zstack_Red_0043 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/resolution: dtype=float64 shape=(1,) val="[1.5]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/roi_index: dtype=float64 shape=(1,) val="[16]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/roi_time_ns: dtype=float64 shape=(1,) val="[14400]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/x_start: dtype=int64 shape=(1,) val="[106]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/x_stop: dtype=int64 shape=(1,) val="[114]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/y_start: dtype=int64 shape=(1,) val="[101]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/y_stop: dtype=int64 shape=(1,) val="[108]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/z_start: dtype=float64 shape=(1,) val="[-10]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/z_stop: dtype=float64 shape=(1,) val="[-10]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0043/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/apparent_frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/dimensions: dtype=int32 shape=(1, 2) val="0xe80022" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/id: dtype=int64 shape=(1,) val="[15]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/imaging_plane -> /general/optophysiology/Zstack0046 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/laser_power: dtype=float64 shape=(1,) val="[37.71875]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/num_lines: dtype=int64 shape=(1,) val="[10]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/num_pixels: dtype=int64 shape=(1,) val="[230]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/pixel_mask: dtype=int64 shape=(230, 3) val="0xf7da0b59" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/pixel_mask_index: dtype=int64 shape=(1,) val="[230]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/pixels_per_miniscan: dtype=int64 shape=(1,) val="[23]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/reference_images/Zstack_Red_0046 -> /acquisition/Zstack_Red_0046 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/reference_images/reference_images -> /acquisition/Zstack_Red_0046 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/resolution: dtype=float64 shape=(1,) val="[1.5]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/roi_index: dtype=float64 shape=(1,) val="[15]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/roi_time_ns: dtype=float64 shape=(1,) val="[46016]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/x_start: dtype=int64 shape=(1,) val="[135]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/x_stop: dtype=int64 shape=(1,) val="[157]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/y_start: dtype=int64 shape=(1,) val="[146]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/y_stop: dtype=int64 shape=(1,) val="[155]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/z_start: dtype=float64 shape=(1,) val="[-25]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/z_stop: dtype=float64 shape=(1,) val="[-25]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0046/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047 + @colnames: dtype=object shape=(23,) val="0x71cf62e4" + @description: type=str val="Reference Z stack" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/angle_deg: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Angle (deg)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/apparent_frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Apparent Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/composite_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="Composite ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/dimensions: dtype=int32 shape=(1, 2) val="0x980017" + @description: type=str val="Dimensions of the ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/frame_size: dtype=float64 shape=(1,) val="[200]" + @description: type=str val="Frame Size" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/id: dtype=int64 shape=(1,) val="[14]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/imaging_plane -> /general/optophysiology/Zstack0047 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/laser_power: dtype=float64 shape=(1,) val="[37.78125]" + @description: type=str val="Laser Power (%)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_lines: dtype=int64 shape=(1,) val="[8]" + @description: type=str val="Number of lines" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/num_pixels: dtype=int64 shape=(1,) val="[112]" + @description: type=str val="Pixels in ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/original_fov_um: dtype=float64 shape=(1,) val="[300]" + @description: type=str val="Original FOV (um)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/pixel_dwell_time: dtype=float64 shape=(1,) val="[0.1999511719]" + @description: type=str val="Dwell Time per pixel" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/pixel_mask: dtype=int64 shape=(112, 3) val="0xb92b2611" + @description: type=str val="Pixel masks for each ROI" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/pixel_mask_index: dtype=int64 shape=(1,) val="[112]" + @target: type=Reference val="->/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/pixel_mask" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/pixels_per_miniscan: dtype=int64 shape=(1,) val="[14]" + @description: type=str val="Pixels per miniscan" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/reference_images/Zstack_Red_0047 -> /acquisition/Zstack_Red_0047 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/reference_images/reference_images -> /acquisition/Zstack_Red_0047 +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/resolution: dtype=float64 shape=(1,) val="[1.5]" + @description: type=str val="Resolution" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/roi_group_id: dtype=float64 shape=(1,) val="[0]" + @description: type=str val="ROI group ID" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/roi_index: dtype=float64 shape=(1,) val="[14]" + @description: type=str val="ROI index" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/roi_time_ns: dtype=float64 shape=(1,) val="[22400]" + @description: type=str val="ROI Time (ns)" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/x_start: dtype=int64 shape=(1,) val="[60]" + @description: type=str val="X start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/x_stop: dtype=int64 shape=(1,) val="[73]" + @description: type=str val="X stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/y_start: dtype=int64 shape=(1,) val="[16]" + @description: type=str val="Y start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/y_stop: dtype=int64 shape=(1,) val="[23]" + @description: type=str val="Y stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/z_start: dtype=float64 shape=(1,) val="[-30]" + @description: type=str val="Z start" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/z_stop: dtype=float64 shape=(1,) val="[-30]" + @description: type=str val="Z stop" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0047/zoom: dtype=float64 shape=(1,) val="[1]" + @description: type=str val="Zoom" +/session_description: dtype=object shape=() val="One or two sentences descri...0x65b618d5" +/session_start_time: dtype=object shape=() val="2020-11-17T16:04:52.543777+...0x6aad0677" +/stimulus/presentation/air_puff + @comments: type=str val="Delivered 'instantaneously' at the specified times" + @description: type=str val="Air puff stimulus" +/stimulus/presentation/air_puff/data: dtype=object shape=(3,) val="0x214b0514" + @conversion: dtype=float64 shape=() val="nan" + @resolution: dtype=float64 shape=() val="nan" + @unit: type=str val="n/a" +/stimulus/presentation/air_puff/timestamps: dtype=float64 shape=(3,) val="0x33d6064b" + @interval: dtype=int32 shape=() val="1" + @unit: type=str val="seconds" +/timestamps_reference_time: dtype=object shape=() val="2020-11-17T16:04:52.543777+...0x6aad0677" diff --git a/tests/data/real life Experiment Header v300.ini b/tests/data/real life Experiment Header v300.ini new file mode 100644 index 0000000..1233450 --- /dev/null +++ b/tests/data/real life Experiment Header v300.ini @@ -0,0 +1,227 @@ +[LOGIN] +User = "S" +Profile = "Previous session" +Software Version = "3.0.0" +Experiment Date Time = "28/02/2020 14:09:23" + +[GLOBAL PARAMETERS] +MicroscopeID = "Rig 2" +Microscope Type = "AOLM" +Objective = "Leica 25X" +Field of View (um) = 6.383 +Fill time (us) = 24.475 +Experiment Type = "In vivo" +Stimuli Trigger = FALSE +Speed Logging = FALSE + +[IMAGING MODES] +Time Series = FALSE +Motor Zstack = FALSE +AOL Zstack = TRUE +Functional Imaging = TRUE +Volume Imaging = FALSE + +[TIME SERIES] +Wavelength (nm) = 0.000 +# averaged frames = 0.000 +laser power (%) = 0.000 +Pockels = 0.000 +pixel dwell time (us) = 0.000 +pmt 1 = 0.000 +pmt 2 = 0.000 +back apperture = 0.000 +zoom = 0.000 +field of view = 0.000 +Frame Size = 0 +AOL x centre = 0.000 +AOL y centre = 0.000 +Stage x position = 0.000 +Stage y position = 0.000 +Stage z position = 0.000 +AOL z = 0.000 + +[MOTOR Z-STACK ] +Wavelength (nm) = 0.000 +# averaged frames = 0.000 +laser power (%) = 0.000 +Pockels = 0.000 +pixel dwell time (us) = 0.000 +pmt 1 = 0.000 +pmt 2 = 0.000 +back apperture = 0.000 +zoom = 0.000 +field of view = 0.000 +Frame Size = 0 +AOL x centre = 0.000 +AOL y centre = 0.000 +Stage x position = 0.000 +Stage y position = 0.000 +Stage z position = 0.000 +Z Start = 0.000 +Z Stop = 0.000 +No of Planes = 0 +Laser Power (%) at Z Start = 0.000 +Laser Power (%) at Z Stop = 0.000 + +[AOL Z-STACK] +Wavelength (nm) = 920.000 +# averaged frames = 5.000 +laser power (%) = 35.000 +Pockels = 0.645 +pixel dwell time (us) = 0.200 +pmt 1 = 600.000 +pmt 2 = 650.000 +back apperture = 53.900 +zoom = 1.000 +field of view = 300.000 +Frame Size = 200 +AOL x centre = 0.000 +AOL y centre = 0.000 +Stage x position = 0.000 +Stage y position = 0.000 +Stage z position = 0.000 +Z Start = 200.000 +Z Stop = -200.000 +No of Planes = 81 +Laser Power (%) at Z Start = 35.000 +Laser Power (%) at Z Stop = 40.000 + +[FUNCTIONAL IMAGING] +Functional Mode = "Patch" +Variable Length = TRUE +Variable Resolution = TRUE +Pockels Modulation = TRUE +Stimuli Trigger = FALSE +Cool down enabled = FALSE +AOL Mode = "Mini Scan" +Plane Mode = 0 +Miniscan Dwell time per pixel (us) = 0.200 +poi dwell time = 0.200 +Number of trials = 3.000 +Number of cycles = 207.000 +Number of pois = 0.000 +Number of miniscans = 543.000 +Number of pixels in miniscan = 10.000 +Rectangle ROI length = 10.000 +Rectangle ROI height = 17.000 +Frame rate (fps) = 20.574 +Acquisition Length = 7.984 +video length (sec) = 0.000 +Stimuli delay (sec) = 0.000 +Cool down time (sec) = 0.000 +Wavelength (nm) = 920.000 +# averaged frames = 5.000 +laser power (%) = 35.000 +Pockels = 0.645 +pixel dwell time (us) = 0.200 +pmt 1 = 600.000 +pmt 2 = 650.000 +back apperture = 53.900 +zoom = 1.000 +field of view = 300.000 +Frame Size = 200 +AOL x centre = 0.000 +AOL y centre = 0.000 +Stage x position = 0.000 +Stage y position = 0.000 +Stage z position = 0.000 +Z Start (um) = 200.000 +Z Stop (um) = -200.000 + +[VOLUME IMAGING] +Functional Mode = "Point" +Variable Length = FALSE +Variable Resolution = FALSE +Pockels Modulation = FALSE +Stimuli Trigger = FALSE +Cool down enabled = FALSE +AOL Mode = "Raster" +Plane Mode = 0 +Miniscan Dwell time per pixel (us) = 0.000 +poi dwell time = 0.000 +Number of trials = 0.000 +Number of cycles = 0.000 +Number of pois = 0.000 +Number of miniscans = 0.000 +Number of pixels in miniscan = 0.000 +Rectangle ROI length = 0.000 +Rectangle ROI height = 0.000 +Frame rate (fps) = 0.000 +Acquisition Length = 0.000 +video length (sec) = 0.000 +Stimuli delay (sec) = 0.000 +Cool down time (sec) = 0.000 +Wavelength (nm) = 0.000 +# averaged frames = 0.000 +laser power (%) = 0.000 +Pockels = 0.000 +pixel dwell time (us) = 0.000 +pmt 1 = 0.000 +pmt 2 = 0.000 +back apperture = 0.000 +zoom = 0.000 +field of view = 0.000 +Frame Size = 0 +AOL x centre = 0.000 +AOL y centre = 0.000 +Stage x position = 0.000 +Stage y position = 0.000 +Stage z position = 0.000 +Z Start (um) = 0.000 +Z Stop (um) = 0.000 + +[MOVEMENT CORRECTION] +Movement Correction = TRUE +Axial Reference = TRUE +Reference X Pixels = 18.000 +Reference Y Pixels = 13.000 +Reference Source = "Red channel" +Reference dwell time (us) = 0.200 +Number of Z lines = 4.000 +Size of Z pixels = 2.000 +Axial Pixels = 18.000 +Reference Zoom = 1.000 +Reference Average = 1.000 +Proportional Scale = 0.900 +Integral Scale = 400.000 +Proportional Scale Z = 0.500 +Integral Scale Z = 20.000 +Scan Interval = 2.000 +Ref Plot Refresh Rate = 0.000 + +[CALIBRATION] +Pockels Calibration File = "C:\\Pockels Cal.txt" +Calibration_ini file = "C:\Calibration.ini" +Setup_ini file = "C:\\Setup.ini" + +[STATISTICS] +Z-stack duration (sec) = 9.424 +Number of acquired data-points = 0.000 +Acquisition time (ms) = 0.000 +Number of acquired frames = 0.000 + +[BIOLOGY INFORMATION] +Animal Code or Name = "" +Animal DoB = "" +Animal Age = "" +Animal Sex = "" +Animal Weight = "" +Date of Injection = "" +Date of Implant = "" +Site of Injection = "" +Animal Ear Notch = "" +AAV constructs = "" +Genetic background = "" +Optical reporter = "" +Region of brain imaged = "" +Other +comments = "" +Other +comments = "" +[Intertrial FIFO Times] +0.000000 0.000000 +1.000000 10.751936 +2.000000 10.759967 +3.000000 21.511913 +4.000000 21.519067 +5.000000 32.271013 diff --git a/tests/data/real life v300 ROI.dat b/tests/data/real life v300 ROI.dat new file mode 100644 index 0000000..b7ff7ba --- /dev/null +++ b/tests/data/real life v300 ROI.dat @@ -0,0 +1,33 @@ +ROI index ROI ID ROI Time (ns) Pixels in ROI X start Y start Z start X stop Y stop Z stop Angle (deg) Composite ID Number of lines Frame Size Zoom Laser Power (%) ROI group ID Resolution Dwell Time per pixel Pixels per miniscan Original FOV (um) Apparent Frame Size Z Plane Idx Z Plane codes +1.0000 3.0000 5115600.0381 25578.0000 60.0000 92.0000 165.0000 157.0000 104.0000 165.0000 0.0000 0.0000 58.0000 200.0000 1.0000 35.4113 0.0000 0.3333 0.2000 441.0000 300.0000 900.0000 +2.0000 3.0000 4802400.0358 24012.0000 54.0000 132.0000 155.0000 145.0000 144.0000 155.0000 0.0000 0.0000 58.0000 200.0000 1.0000 35.5297 0.0000 0.3333 0.2000 414.0000 300.0000 900.0000 +3.0000 3.0000 5443200.0406 27216.0000 58.0000 92.0000 145.0000 153.0000 105.0000 145.0000 0.0000 0.0000 63.0000 200.0000 1.0000 35.6486 0.0000 0.3333 0.2000 432.0000 300.0000 900.0000 +4.0000 3.0000 4848800.0361 24244.0000 63.0000 130.0000 130.0000 155.0000 142.0000 130.0000 0.0000 0.0000 58.0000 200.0000 1.0000 35.8275 0.0000 0.3333 0.2000 418.0000 300.0000 900.0000 +5.0000 3.0000 4276800.0319 21384.0000 71.0000 94.0000 120.0000 158.0000 105.0000 120.0000 0.0000 0.0000 54.0000 200.0000 1.0000 35.9473 0.0000 0.3333 0.2000 396.0000 300.0000 900.0000 +6.0000 3.0000 120000.0009 600.0000 104.0000 68.0000 35.0000 143.0000 82.0000 35.0000 0.0000 0.0000 15.0000 200.0000 1.0000 36.9819 0.0000 1.5000 0.2000 40.0000 300.0000 200.0000 +7.0000 3.0000 15400.0001 77.0000 122.0000 92.0000 25.0000 132.0000 98.0000 25.0000 0.0000 0.0000 7.0000 200.0000 1.0000 37.1056 0.0000 1.5000 0.2000 11.0000 300.0000 200.0000 +8.0000 3.0000 24000.0002 120.0000 76.0000 106.0000 25.0000 90.0000 113.0000 25.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.1056 0.0000 1.5000 0.2000 15.0000 300.0000 200.0000 +9.0000 3.0000 63000.0005 315.0000 22.0000 125.0000 30.0000 56.0000 133.0000 30.0000 0.0000 0.0000 9.0000 200.0000 1.0000 37.0437 0.0000 1.5000 0.2000 35.0000 300.0000 200.0000 +10.0000 3.0000 25600.0002 128.0000 53.0000 87.0000 25.0000 68.0000 94.0000 25.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.1056 0.0000 1.5000 0.2000 16.0000 300.0000 200.0000 +11.0000 3.0000 31200.0002 156.0000 117.0000 39.0000 20.0000 129.0000 50.0000 20.0000 0.0000 0.0000 12.0000 200.0000 1.0000 37.1676 0.0000 1.5000 0.2000 13.0000 300.0000 200.0000 +12.0000 3.0000 63000.0005 315.0000 92.0000 39.0000 0.0000 126.0000 47.0000 0.0000 0.0000 0.0000 9.0000 200.0000 1.0000 37.4166 0.0000 1.5000 0.2000 35.0000 300.0000 200.0000 +13.0000 3.0000 19200.0001 96.0000 117.0000 131.0000 10.0000 128.0000 138.0000 10.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.2919 0.0000 1.5000 0.2000 12.0000 300.0000 200.0000 +14.0000 3.0000 22400.0002 112.0000 60.0000 16.0000 -30.0000 73.0000 23.0000 -30.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.7932 0.0000 1.5000 0.2000 14.0000 300.0000 200.0000 +15.0000 3.0000 46000.0003 230.0000 135.0000 146.0000 -25.0000 157.0000 155.0000 -25.0000 0.0000 0.0000 10.0000 200.0000 1.0000 37.7301 0.0000 1.5000 0.2000 23.0000 300.0000 200.0000 +16.0000 3.0000 14400.0001 72.0000 106.0000 101.0000 -10.0000 114.0000 108.0000 -10.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.5417 0.0000 1.5000 0.2000 9.0000 300.0000 200.0000 +17.0000 3.0000 16000.0001 80.0000 131.0000 64.0000 -5.0000 140.0000 71.0000 -5.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.4791 0.0000 1.5000 0.2000 10.0000 300.0000 200.0000 +18.0000 3.0000 16000.0001 80.0000 119.0000 12.0000 0.0000 128.0000 19.0000 0.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.4166 0.0000 1.5000 0.2000 10.0000 300.0000 200.0000 +19.0000 3.0000 12600.0001 63.0000 16.0000 91.0000 5.0000 24.0000 97.0000 5.0000 0.0000 0.0000 7.0000 200.0000 1.0000 37.3542 0.0000 1.5000 0.2000 9.0000 300.0000 200.0000 +20.0000 3.0000 22000.0002 110.0000 128.0000 89.0000 0.0000 137.0000 99.0000 0.0000 90.0000 0.0000 10.0000 200.0000 1.0000 37.4166 0.0000 1.5000 0.2000 11.0000 300.0000 200.0000 +21.0000 3.0000 28600.0002 143.0000 121.0000 57.0000 10.0000 133.0000 67.0000 10.0000 0.0000 0.0000 11.0000 200.0000 1.0000 37.2919 0.0000 1.5000 0.2000 13.0000 300.0000 200.0000 +22.0000 3.0000 26400.0002 132.0000 157.0000 41.0000 40.0000 168.0000 51.0000 40.0000 0.0000 0.0000 11.0000 200.0000 1.0000 36.9203 0.0000 1.5000 0.2000 12.0000 300.0000 200.0000 +23.0000 3.0000 17600.0001 88.0000 176.0000 60.0000 30.0000 186.0000 67.0000 30.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.0437 0.0000 1.5000 0.2000 11.0000 300.0000 200.0000 +24.0000 3.0000 26400.0002 132.0000 170.0000 32.0000 20.0000 181.0000 42.0000 20.0000 0.0000 0.0000 11.0000 200.0000 1.0000 37.1676 0.0000 1.5000 0.2000 12.0000 300.0000 200.0000 +25.0000 3.0000 14400.0001 72.0000 98.0000 73.0000 0.0000 106.0000 80.0000 0.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.4166 0.0000 1.5000 0.2000 9.0000 300.0000 200.0000 +26.0000 3.0000 28000.0002 140.0000 98.0000 92.0000 40.0000 111.0000 101.0000 40.0000 0.0000 0.0000 10.0000 200.0000 1.0000 36.9203 0.0000 1.5000 0.2000 14.0000 300.0000 200.0000 +27.0000 3.0000 18000.0001 90.0000 95.0000 78.0000 25.0000 103.0000 87.0000 25.0000 90.0000 0.0000 9.0000 200.0000 1.0000 37.1056 0.0000 1.5000 0.2000 10.0000 300.0000 200.0000 +28.0000 3.0000 21600.0002 108.0000 103.0000 172.0000 20.0000 114.0000 180.0000 20.0000 0.0000 0.0000 9.0000 200.0000 1.0000 37.1676 0.0000 1.5000 0.2000 12.0000 300.0000 200.0000 +29.0000 3.0000 14400.0001 72.0000 142.0000 97.0000 15.0000 150.0000 104.0000 15.0000 0.0000 0.0000 8.0000 200.0000 1.0000 37.2297 0.0000 1.5000 0.2000 9.0000 300.0000 200.0000 +30.0000 3.0000 18000.0001 90.0000 141.0000 165.0000 25.0000 150.0000 173.0000 25.0000 0.0000 0.0000 9.0000 200.0000 1.0000 37.1056 0.0000 1.5000 0.2000 10.0000 300.0000 200.0000 +31.0000 3.0000 50400.0004 252.0000 63.0000 135.0000 0.0000 80.0000 148.0000 0.0000 0.0000 0.0000 14.0000 200.0000 1.0000 37.4166 0.0000 1.5000 0.2000 18.0000 300.0000 200.0000 +32.0000 3.0000 18000.0001 90.0000 24.0000 34.0000 25.0000 33.0000 42.0000 25.0000 0.0000 0.0000 9.0000 200.0000 1.0000 37.1056 0.0000 1.5000 0.2000 10.0000 300.0000 200.0000 diff --git a/tests/data/sample_miniscan_fred_170322_14_06_43.sig2 b/tests/data/sample_miniscan_fred_170322_14_06_43.sig2 index 22bed66..a5ac8d5 100644 --- a/tests/data/sample_miniscan_fred_170322_14_06_43.sig2 +++ b/tests/data/sample_miniscan_fred_170322_14_06_43.sig2 @@ -1313,7 +1313,7 @@ Generating signature for sample_miniscan_fred_170322_14_06_43.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/imaging_plane -> /general/optophysiology/Zstack0033 /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/laser_power: dtype=float64 shape=(1,) val="[73]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=float64 shape=(1,) val="[60]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_lines: dtype=int64 shape=(1,) val="[60]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0033/num_pixels: dtype=int64 shape=(1,) val="[12120]" @description: type=str val="Pixels in ROI" diff --git a/tests/data/sample_pointing_fred_170317_10_11_01.sig2 b/tests/data/sample_pointing_fred_170317_10_11_01.sig2 index 25b1e22..f1b6289 100644 --- a/tests/data/sample_pointing_fred_170317_10_11_01.sig2 +++ b/tests/data/sample_pointing_fred_170317_10_11_01.sig2 @@ -1616,7 +1616,7 @@ Generating signature for sample_pointing_fred_170317_10_11_01.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0014/imaging_plane -> /general/optophysiology/Zstack0014 /processing/Acquired_ROIs/ImageSegmentation/Zstack0014/laser_power: dtype=float64 shape=(10,) val="0x2c0e0e75" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0014/num_lines: dtype=float64 shape=(10,) val="0x500001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0014/num_lines: dtype=int64 shape=(10,) val="0x500001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0014/num_pixels: dtype=int64 shape=(10,) val="0x208000b" @description: type=str val="Pixels in ROI" diff --git a/tests/data/sample_pointing_videos_161215_15_34_21.sig2 b/tests/data/sample_pointing_videos_161215_15_34_21.sig2 index 7eb9575..1984425 100644 --- a/tests/data/sample_pointing_videos_161215_15_34_21.sig2 +++ b/tests/data/sample_pointing_videos_161215_15_34_21.sig2 @@ -1248,7 +1248,7 @@ Generating signature for sample_pointing_videos_161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0027/imaging_plane -> /general/optophysiology/Zstack0027 /processing/Acquired_ROIs/ImageSegmentation/Zstack0027/laser_power: dtype=float64 shape=(2,) val="0xc740203" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0027/num_lines: dtype=float64 shape=(2,) val="0x100001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0027/num_lines: dtype=int64 shape=(2,) val="0x100001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0027/num_pixels: dtype=int64 shape=(2,) val="0x280003" @description: type=str val="Pixels in ROI" @@ -1293,7 +1293,7 @@ Generating signature for sample_pointing_videos_161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/imaging_plane -> /general/optophysiology/Zstack0029 /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/laser_power: dtype=float64 shape=(5,) val="0x731e0646" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_lines: dtype=float64 shape=(5,) val="0x280001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_lines: dtype=int64 shape=(5,) val="0x280001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0029/num_pixels: dtype=int64 shape=(5,) val="0xa00006" @description: type=str val="Pixels in ROI" @@ -1338,7 +1338,7 @@ Generating signature for sample_pointing_videos_161215_15_34_21.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/imaging_plane -> /general/optophysiology/Zstack0030 /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/laser_power: dtype=float64 shape=(3,) val="0x2ca60448" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_lines: dtype=float64 shape=(3,) val="0x180001" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_lines: dtype=int64 shape=(3,) val="0x180001" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_pixels: dtype=int64 shape=(3,) val="0x480004" @description: type=str val="Pixels in ROI" diff --git a/tests/data/sample_rois_200206_16_30_32.sig2 b/tests/data/sample_rois_200206_16_30_32.sig2 index ab9bfb8..928ad7a 100644 --- a/tests/data/sample_rois_200206_16_30_32.sig2 +++ b/tests/data/sample_rois_200206_16_30_32.sig2 @@ -1681,7 +1681,7 @@ Generating signature for sample_rois_200206_16_30_32.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0021/imaging_plane -> /general/optophysiology/Zstack0021 /processing/Acquired_ROIs/ImageSegmentation/Zstack0021/laser_power: dtype=float64 shape=(1,) val="[38.65625]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0021/num_lines: dtype=float64 shape=(1,) val="[29]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0021/num_lines: dtype=int64 shape=(1,) val="[29]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0021/num_pixels: dtype=int64 shape=(1,) val="[1131]" @description: type=str val="Pixels in ROI" @@ -1726,7 +1726,7 @@ Generating signature for sample_rois_200206_16_30_32.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/imaging_plane -> /general/optophysiology/Zstack0030 /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/laser_power: dtype=float64 shape=(3,) val="0xf360196" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_lines: dtype=float64 shape=(3,) val="0xdfe0178" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_lines: dtype=int64 shape=(3,) val="0x5880058" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0030/num_pixels: dtype=int64 shape=(3,) val="0x14dc014e" @description: type=str val="Pixels in ROI" @@ -1771,7 +1771,7 @@ Generating signature for sample_rois_200206_16_30_32.nwb /processing/Acquired_ROIs/ImageSegmentation/Zstack0038/imaging_plane -> /general/optophysiology/Zstack0038 /processing/Acquired_ROIs/ImageSegmentation/Zstack0038/laser_power: dtype=float64 shape=(1,) val="[37.8125]" @description: type=str val="Laser Power (%)" -/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/num_lines: dtype=float64 shape=(1,) val="[29]" +/processing/Acquired_ROIs/ImageSegmentation/Zstack0038/num_lines: dtype=int64 shape=(1,) val="[29]" @description: type=str val="Number of lines" /processing/Acquired_ROIs/ImageSegmentation/Zstack0038/num_pixels: dtype=int64 shape=(1,) val="[1131]" @description: type=str val="Pixels in ROI" diff --git a/tests/test_header.py b/tests/test_header.py index c82309d..f44147e 100644 --- a/tests/test_header.py +++ b/tests/test_header.py @@ -20,11 +20,13 @@ class TestLabViewHeaders(object): synthetic_header_path_pre2018 = 'Experiment Header.ini' header_with_unrecognised_line_path = 'unrecognised line Header.ini' real_life_header_path_v231_pointing = 'real life Experiment Header v231 pointing.ini' + real_life_header_path_v300_patches = 'real life Experiment Header v300.ini' @pytest.mark.parametrize("header, expected_version", [(synthetic_header_path_v231, LabViewVersions.v231), (synthetic_header_path_pre2018, LabViewVersions.pre2018), - (real_life_header_path_v231_pointing, LabViewVersions.v231)], + (real_life_header_path_v231_pointing, LabViewVersions.v231), + (real_life_header_path_v300_patches, LabViewVersions.v300)], indirect=["header"]) def test_lab_view_version(self, header, expected_version): assert header.version == expected_version @@ -64,3 +66,11 @@ def test_unrecognised_line_causes_warning(self): LabViewHeader.from_file(os.path.join("tests", "data", self.header_with_unrecognised_line_path)) assert len(list_of_warnings) == 1 assert str(list_of_warnings[0].message).startswith("Unrecognised non-blank line") + + +class TestLabViewVersions: + def test_legacy_is_correctly_identified(self): + """Check that exactly the right versions are marked as legacy.""" + legacy_versions = [LabViewVersions.pre2018] + for version in LabViewVersions: + assert version.is_legacy == (version in legacy_versions) diff --git a/tests/test_labview_import.py b/tests/test_labview_import.py index 1878b0e..7e44b5d 100644 --- a/tests/test_labview_import.py +++ b/tests/test_labview_import.py @@ -38,7 +38,8 @@ def sig_gen(): ('170317_10_11_01'), ('170322_14_06_43'), ('161222_16_18_47'), - ('170714_22_26_27') + ('170714_22_26_27'), + ('200228_14_15_57') ]) def test_generate_signatures(ref_data_dir, sig_gen, nwb_name, monkeypatch): """A 'test' to generate reference data for the tests below.""" @@ -51,7 +52,7 @@ def do_nothing(*args): monkeypatch.setattr(NwbFile, "_write_roi_data", do_nothing) nwb_path = os.path.join(DATA_PATH, 'nwb2', nwb_name + '.nwb') labview_path = os.path.join(DATA_PATH, - nwb_name + ' FunctAcq' if nwb_name[0] == '1' else nwb_name) + nwb_name if nwb_name.startswith('sample') else nwb_name + ' FunctAcq') with NwbFile(nwb_path, mode='w') as nwb: nwb.import_labview_folder(labview_path) else: @@ -120,6 +121,10 @@ def test_fred_patch(self, do_import_test): """A sample dataset from Fred with miniscans.""" do_import_test('170322_14_06_43', True) + def test_lena_variable_patch(self, do_import_test): + """A sample dataset from Lena with variable resolution.""" + do_import_test('200228_14_15_57', True) + @pytest.mark.skipif( not os.path.isdir(DATA_PATH), diff --git a/tests/test_rois.py b/tests/test_rois.py new file mode 100644 index 0000000..5494a3e --- /dev/null +++ b/tests/test_rois.py @@ -0,0 +1,40 @@ +import os + +import pytest + +from silverlabnwb import rois +from silverlabnwb.header import LabViewHeader + + +class TestRoiReaders(object): + pre2018_file_names = ("synthetic pre2018 ROI.dat", "Experiment Header.ini") + v231_file_names = ("synthetic v231 ROI.dat", "synthetic experiment Header v231.ini") + v300_file_names = ("real life v300 ROI.dat", "real life Experiment Header v300.ini") + + @pytest.fixture(scope="function") + def get_roi_table(self, ref_data_dir, file_names): + header_file_name = file_names[1] + header_file_path = os.path.join(ref_data_dir, header_file_name) + header = LabViewHeader.from_file(header_file_path) + reader = rois.RoiReader.get_reader(header) + roi_file_name = file_names[0] + roi_file_path = os.path.join(ref_data_dir, roi_file_name) + roi_table = reader.read_roi_table(roi_file_path) + return roi_table + + @pytest.mark.parametrize("file_names, expected", + [(v231_file_names, 19), + (pre2018_file_names, 17), + (v300_file_names, 24)]) + def test_number_of_columns(self, get_roi_table, file_names, expected): + assert len(get_roi_table.keys()) == expected + + # TODO: test_column_names, parametrised. + + def test_columns_are_independent(self): + """Ensure that columns and type mappings are not shared among versions.""" + old_reader = rois.ClassicRoiReader() + new_reader = rois.RoiReaderv300() + assert old_reader.column_mapping is not new_reader.column_mapping + assert old_reader.type_mapping is not new_reader.type_mapping + assert old_reader.type_conversion_post_read is not new_reader.type_conversion_post_read diff --git a/tests/test_timings.py b/tests/test_timings.py index c93be37..41f0509 100644 --- a/tests/test_timings.py +++ b/tests/test_timings.py @@ -2,7 +2,7 @@ import pytest -from silverlabnwb import timings +from silverlabnwb import rois, timings @pytest.fixture(scope="module") @@ -11,15 +11,17 @@ def synthetic_timings_v231(ref_data_dir): timings_file_path = os.path.join(ref_data_dir, timings_file_name) roi_file_name = "synthetic v231 ROI.dat" roi_file_path = os.path.join(ref_data_dir, roi_file_name) + roi_reader = rois.ClassicRoiReader() + roi_reader.read_roi_table(roi_file_path) # the synthetic file has # 2 trials, each of which has 3 cycles and 4 rois a 5 lines # and a few zero lines as may be expected "in the wild" # first cycle of trial 1 and trial 2 take 1300.4 and 1200.4 nanoseconds, respectively - return timings.LabViewTimings231(relative_times_path=timings_file_path, - roi_path=roi_file_path, - n_cycles_per_trial=3, - n_trials=2, - dwell_time=1.e-6) + return timings.LabViewTimingsPost2018(relative_times_path=timings_file_path, + roi_reader=roi_reader, + n_cycles_per_trial=3, + n_trials=2, + dwell_time=1.e-6) @pytest.fixture(scope="module") @@ -28,8 +30,10 @@ def synthetic_timings_pre2018(ref_data_dir): timings_file_path = os.path.join(ref_data_dir, timings_file_name) roi_file_name = "synthetic pre2018 ROI.dat" roi_file_path = os.path.join(ref_data_dir, roi_file_name) + roi_reader = rois.ClassicRoiReader() + roi_reader.read_roi_table(roi_file_path) return timings.LabViewTimingsPre2018(relative_times_path=timings_file_path, - roi_path=roi_file_path, + roi_reader=roi_reader, dwell_time=1.e-6)