From 9b4692249428afa30deab360a0e5a5ddc372277d Mon Sep 17 00:00:00 2001 From: Tom Herold Date: Mon, 2 Sep 2024 15:06:32 +0200 Subject: [PATCH] fix API doc links --- docs/src/webknossos-py/examples/convert_4d_tiff.md | 2 +- docs/src/webknossos-py/examples/upload_image_data.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/webknossos-py/examples/convert_4d_tiff.md b/docs/src/webknossos-py/examples/convert_4d_tiff.md index 587bbd1da..ffbcc1332 100644 --- a/docs/src/webknossos-py/examples/convert_4d_tiff.md +++ b/docs/src/webknossos-py/examples/convert_4d_tiff.md @@ -4,7 +4,7 @@ This example demonstrates the basic interactions with Datasets that have more th In order to manipulate 4D data in WEBKNOSSOS, we first convert the 4D Tiff dataset into a Zarr3 dataset. This conversion is achieved using the [from_images method](../../api/webknossos/dataset/dataset.md#webknossos.dataset.dataset.Dataset.from_images). -Once the dataset is converted, we can access specific layers and views, [read data](../../api/webknossos/dataset/magview.md#webknossos.dataset.mag_view.MagView.read) from a defined bounding box, and [write data](../../api/webknossos/dataset/magview.md#webknossos.dataset.mag_view.MagView.write) to a different position within the dataset. The [NDBoundingBox](../../api/webknossos/geometry/ndboundingbox.md#webknossos.geometry.nd_bounding_box.NDBoundingBox) is utilized to select a 4D region of the dataset. +Once the dataset is converted, we can access specific layers and views, [read data](../../api/webknossos/dataset/mag_view.md#webknossos.dataset.mag_view.MagView.read) from a defined bounding box, and [write data](../../api/webknossos/dataset/mag_view.md#webknossos.dataset.mag_view.MagView.write) to a different position within the dataset. The [NDBoundingBox](../../api/webknossos/geometry/nd_bounding_box.md#webknossos.geometry.nd_bounding_box.NDBoundingBox) is utilized to select a 4D region of the dataset. ```python --8<-- diff --git a/docs/src/webknossos-py/examples/upload_image_data.md b/docs/src/webknossos-py/examples/upload_image_data.md index b4a114149..8b7ef7489 100644 --- a/docs/src/webknossos-py/examples/upload_image_data.md +++ b/docs/src/webknossos-py/examples/upload_image_data.md @@ -1,6 +1,6 @@ # Upload Image Data -Loads the [cell dataset](https://scikit-image.org/docs/dev/api/skimage.data.html#skimage.data.cell), writes it into a [wkw Dataset](../../api/webknossos/dataset/dataset.md) and uploads it to a local webknossos instance using [`webknossos_context`](../../api/webknossos/client/webknossos_context.md#webknossos.client.context.webknossos_context). +Loads the [cell dataset](https://scikit-image.org/docs/dev/api/skimage.data.html#skimage.data.cell), writes it into a [wkw Dataset](../../api/webknossos/dataset/dataset.md) and uploads it to a local webknossos instance using [`webknossos_context`](../../api/webknossos/client/context.md#webknossos.client.context.webknossos_context). ```python --8<--