@@ -93,6 +93,9 @@ def create(
9393 or if ``None`` in a given dimension, the corresponding index-column
9494 domain will use the minimum and maximum possible values for the
9595 column's datatype. This makes a point cloud dataframe growable.
96+ platform_config: platform-specific configuration; keys are SOMA
97+ implementation names.
98+ context: Other implementation-specific configuration.
9699
97100 Returns:
98101 The newly created geometry dataframe, opened for writing.
@@ -122,6 +125,8 @@ def read(
122125 Defaults to ``()``, meaning no constraint -- all IDs.
123126 column_names: the named columns to read and return.
124127 Defaults to ``None``, meaning no constraint -- all column names.
128+ batch_size: The size of batches that should be returned from a read.
129+ See :class:`options.BatchSize` for details.
125130 partitions: If present, specifies that this is part of
126131 a partitioned read, and which part of the data to include.
127132 result_order: the order to return results, specified as a
@@ -130,6 +135,8 @@ def read(
130135 The default of ``None`` represents no filter. Value filter
131136 syntax is implementation-defined; see the documentation
132137 for the particular SOMA implementation for details.
138+ platform_config: platform-specific configuration; keys are SOMA
139+ implementation names.
133140 Returns:
134141 A :class:`ReadIter` of :class:`pa.Table`s.
135142
@@ -177,6 +184,8 @@ def read_spatial_region(
177184 The default of ``None`` represents no filter. Value filter
178185 syntax is implementation-defined; see the documentation
179186 for the particular SOMA implementation for details.
187+ platform_config: platform-specific configuration; keys are SOMA
188+ implementation names.
180189
181190 Returns:
182191 A :class:`SpatialRead` with :class:`ReadIter` of :class:`pa.Table`s data.
@@ -201,6 +210,8 @@ def write(
201210 values: An Arrow table containing all columns, including
202211 the index columns. The schema for the values must match
203212 the schema for the ``DataFrame``.
213+ platform_config: platform-specific configuration; keys are SOMA
214+ implementation names.
204215
205216 Returns: ``self``, to enable method chaining.
206217
@@ -323,6 +334,9 @@ def create(
323334 the corresponding index-column domain will use the minimum and maximum
324335 possible values for the column's datatype. This makes a dataframe
325336 growable.
337+ platform_config: platform-specific configuration; keys are SOMA
338+ implementation names.
339+ context: Other implementation-specific configuration.
326340
327341 Returns:
328342 The newly created geometry dataframe, opened for writing.
@@ -352,6 +366,8 @@ def read(
352366 Defaults to ``()``, meaning no constraint -- all IDs.
353367 column_names: the named columns to read and return.
354368 Defaults to ``None``, meaning no constraint -- all column names.
369+ batch_size: The size of batches that should be returned from a read.
370+ See :class:`options.BatchSize` for details.
355371 partitions: If present, specifies that this is part of
356372 a partitioned read, and which part of the data to include.
357373 result_order: the order to return results, specified as a
@@ -360,6 +376,8 @@ def read(
360376 The default of ``None`` represents no filter. Value filter
361377 syntax is implementation-defined; see the documentation
362378 for the particular SOMA implementation for details.
379+ platform_config: platform-specific configuration; keys are SOMA
380+ implementation names.
363381 Returns:
364382 A :class:`ReadIter` of :class:`pa.Table`s.
365383
@@ -407,6 +425,8 @@ def read_spatial_region(
407425 The default of ``None`` represents no filter. Value filter
408426 syntax is implementation-defined; see the documentation
409427 for the particular SOMA implementation for details.
428+ platform_config: platform-specific configuration; keys are SOMA
429+ implementation names.
410430
411431 Returns:
412432 A :class:`SpatialRead` with :class:`ReadIter` of :class:`pa.Table`s data.
@@ -431,6 +451,8 @@ def write(
431451 values: An Arrow table containing all columns, including
432452 the index columns. The schema for the values must match
433453 the schema for the ``DataFrame``.
454+ platform_config: platform-specific configuration; keys are SOMA
455+ implementation names.
434456
435457 Returns: ``self``, to enable method chaining.
436458
@@ -553,7 +575,7 @@ def create(
553575 SOMADenseNDArray it must match have the shape provided by
554576 ``level_shape`` and type specified in ``type. If set to ``None``, the
555577 ``level_key`` will be used to construct a default child URI. For more
556- on URIs see :meth:`collection.Collection.add_new_collction `.
578+ on URIs see :meth:`collection.Collection.add_new_collection `.
557579 coordinate_space: Either the coordinate space or the axis names for the
558580 coordinate space the ``level=0`` image is defined on. This does not
559581 include the channel dimension, only spatial dimensions.
@@ -562,6 +584,9 @@ def create(
562584 axis is provided, this defaults to the channel axis followed by the
563585 coordinate space axes in reverse order (e.g.
564586 ``("soma_channel", "y", "x")`` if ``coordinate_space=("x", "y")``).
587+ platform_config: platform-specific configuration; keys are SOMA
588+ implementation names.
589+ context: Other implementation-specific configuration.
565590
566591 Returns:
567592 The newly created collection, opened for writing.
@@ -662,6 +687,8 @@ def read_spatial_region(
662687 :class:`~options.ResultOrder` or its string value. This is the result
663688 order the data is read from disk. It may be permuted if
664689 ``data_axis_order`` is not the default order.
690+ platform_config: platform-specific configuration; keys are SOMA
691+ implementation names.
665692
666693 Returns:
667694 The data bounding the requested region as a :class:`SpatialRead` with
0 commit comments