@@ -75,8 +75,8 @@ class Electrode(dj.Part):
7575 shank: int # shank index, starts at 0, advance left to right
7676 shank_col: int # column index, starts at 0, advance left to right
7777 shank_row: int # row index, starts at 0.
78- x_coord=NULL: float # (μm ) x coordinate of the electrode within the probe.
79- y_coord=NULL: float # (μm ) y coordinate of the electrode within the probe.
78+ x_coord=NULL: float # (um ) x coordinate of the electrode within the probe.
79+ y_coord=NULL: float # (um ) y coordinate of the electrode within the probe.
8080 """
8181
8282 @staticmethod
@@ -220,12 +220,12 @@ def build_electrode_layouts(
220220
221221 Args:
222222 site_count_per_shank (int): site count per shank.
223- col_spacing (float): (μm ) horizontal spacing between sites. Defaults to None (single column).
224- row_spacing (float): (μm ) vertical spacing between columns. Defaults to None (single row).
225- white_spacing (float): (μm ) offset spacing. Defaults to None.
223+ col_spacing (float): (um ) horizontal spacing between sites. Defaults to None (single column).
224+ row_spacing (float): (um ) vertical spacing between columns. Defaults to None (single row).
225+ white_spacing (float): (um ) offset spacing. Defaults to None.
226226 col_count_per_shank (int): number of column per shank. Defaults to 1 (single column).
227227 shank_count (int): number of shank. Defaults to 1 (single shank).
228- shank_spacing (float): (μm ) spacing between shanks. Defaults to None (single shank).
228+ shank_spacing (float): (um ) spacing between shanks. Defaults to None (single shank).
229229 y_origin (str): {"bottom", "top"}. y value decrements if "top". Defaults to "bottom".
230230 """
231231 row_count = int (site_count_per_shank / col_count_per_shank )
0 commit comments