neuroglancer.read_precomputed_annotations.AnnotationReader.get_within_spatial_bounds(
    
*,
    
lower_bound: Sequence[float] | None = None,
    
upper_bound: Sequence[float] | None = None,
    
max_spatial_index_level: int | None = None,
    
limit: int | None = None,
    
max_parallelism: int = 128-> Iterator[Annotation]

Returns an iterator over the annotations within the specified bounds.

Parameters:
lower_bound: Sequence[float] | None = None

Lower bound within coordinate_space. If not specified, defaults to lower_bound.

upper_bound: Sequence[float] | None = None

Upper bound within coordinate_space. If not specified, defaults to upper_bound.

max_spatial_index_level: int | None = None

Maximum (finest) spatial index level to use.

limit: int | None = None

Maximum number of annotations to return.

max_parallelism: int = 128

Maximum number of concurrent requests.