You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Data Loading, Clip to Layer BoundingBox (Redo #8551) (#8573)
* Revert "Revert "In Data Loading, Clip to Layer BoundingBox (#8551)" (#8572)"
This reverts commit d30f8d8.
* null check for request.dataSource
* data requests: use Option[DataSourceId] rather than nullable DataSource
* format
* implement pr feedback
---------
Co-authored-by: Florian M <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.unreleased.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -18,10 +18,11 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released
18
18
- Remove `data.maybe` dependency and replaced with regular Typescript types. [#8563](https://github.com/scalableminds/webknossos/pull/8563)
19
19
- Updated `View Modes` documentation page with links for mouse and keyboard shortcuts. [#8582](https://github.com/scalableminds/webknossos/pull/8582)
20
20
- Renamed the button to view the compound annotation of all tasks of a tasktype to be more descriptive. [#8565](https://github.com/scalableminds/webknossos/pull/8565)
21
-
- Replaced fixed threshold of 40 meshes by a dynamic limit based on the number of triangles in the mesh for the "Create Animation" job. [#8588](https://github.com/scalableminds/webknossos/pull/8588)
21
+
- Replaced fixed threshold of 40 meshes by a dynamic limit based on the number of triangles in the mesh for the "Create Animation" job. [#8588](https://github.com/scalableminds/webknossos/pull/8588)
22
22
- Replaced Redux selector `useSelector((state: OxalisState) => ...)` with a typed `useWkSelector(state => ...)` shorthand. [#8591](https://github.com/scalableminds/webknossos/pull/8591)
23
23
- Renamed `OxalisState`, `OxalisApplication`, and `OxalisApi` to their respective `Webknossos{State, API, Application}` equivalent [#8591](https://github.com/scalableminds/webknossos/pull/8591)
24
24
- Renamed `frontend/javascripts/oxalis` to `frontend/javascripts/viewer`. [#8601](https://github.com/scalableminds/webknossos/pull/8601)
25
+
- When loading data from a data layer that has data stored beyond the bounding box specified in the datasource-properties.json, data outside of the bounding box is now zeroed. (the layer is “clipped”). [#8551](https://github.com/scalableminds/webknossos/pull/8551)
25
26
26
27
### Fixed
27
28
- Fixed that layer bounding boxes were sometimes colored green even though this should only happen for tasks. [#8535](https://github.com/scalableminds/webknossos/pull/8535)
Copy file name to clipboardExpand all lines: webknossos-datastore/app/com/scalableminds/webknossos/datastore/dataformats/DatasetArrayBucketProvider.scala
+1-1
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ class DatasetArrayBucketProvider(dataLayer: DataLayer,
0 commit comments