From fbc781835d7b327ac1c9b8752aed26b58f7e9d0b Mon Sep 17 00:00:00 2001 From: Bart Schilperoort Date: Fri, 26 Jan 2024 15:42:38 +0100 Subject: [PATCH] Correct grpc typo --- docs/bmi.md | 8 ++++---- docs/notebooks/gprc4bmi_demo.ipynb | 2 +- mkdocs.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/bmi.md b/docs/bmi.md index 2bd8109a..cb3dbcc9 100644 --- a/docs/bmi.md +++ b/docs/bmi.md @@ -50,12 +50,12 @@ If you need access to other model variables that are not yet available in the BM ## grpc4bmi -A [Docker image is available](https://ghcr.io/ecoextreml/stemmus_scope-gprc4bmi) in which the model as well as the Python BMI have been wrapped in a container. -This allows communication with a STEMMUS_SCOPE BMI through [gprc4bmi](https://grpc4bmi.readthedocs.io/en/latest/). +A [Docker image is available](https://ghcr.io/ecoextreml/stemmus_scope-grpc4bmi) in which the model as well as the Python BMI have been wrapped in a container. +This allows communication with a STEMMUS_SCOPE BMI through [grpc4bmi](https://grpc4bmi.readthedocs.io/en/latest/). -Doing so avoids the needs to install PyStemmusScope yourself, only Docker/apptainer and a python environment with gprc4bmi are required. +Doing so avoids the needs to install PyStemmusScope yourself, only Docker/apptainer and a python environment with grpc4bmi are required. -A demonstration is available [here](notebooks/gprc4bmi_demo.ipynb) +A demonstration is available [here](notebooks/grpc4bmi_demo.ipynb) ## Developer instructions diff --git a/docs/notebooks/gprc4bmi_demo.ipynb b/docs/notebooks/gprc4bmi_demo.ipynb index 5918dc97..2a3b8a28 100644 --- a/docs/notebooks/gprc4bmi_demo.ipynb +++ b/docs/notebooks/gprc4bmi_demo.ipynb @@ -22,7 +22,7 @@ "from grpc4bmi.bmi_client_docker import BmiClientDocker\n", "\n", "model = BmiClientDocker(\n", - " image='ghcr.io/ecoextreml/stemmus_scope-gprc4bmi:1.5.0', \n", + " image='ghcr.io/ecoextreml/stemmus_scope-grpc4bmi:1.5.0', \n", " image_port=55555,\n", " work_dir=\"/home/bart/tmp/stemmus_scope\",\n", ")" diff --git a/mkdocs.yml b/mkdocs.yml index 14ae2b8d..fad6f505 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -9,7 +9,7 @@ nav: - BMI: - "BMI instructions": bmi.md - "BMI demonstration": notebooks/BMI_demo.ipynb - - "grpc4bmi demonstration": notebooks/gprc4bmi_demo.ipynb + - "grpc4bmi demonstration": notebooks/grpc4bmi_demo.ipynb - Contributing guide: CONTRIBUTING.md - API reference: reference.md