From f7277675eac5ee0cbe3ee71a49732b2f5d710b42 Mon Sep 17 00:00:00 2001 From: j-atkins <106238905+j-atkins@users.noreply.github.com> Date: Wed, 15 Apr 2026 22:38:51 +0200 Subject: [PATCH 1/3] updates for using in subsequent nmf presentations --- .../nmf-roadshow/showcase.html | 55 +++++-------------- .../nmf-roadshow/showcase.qmd | 41 +++----------- src/virtualship/cli/_run.py | 8 +++ 3 files changed, 30 insertions(+), 74 deletions(-) diff --git a/docs/user-guide/developer-content/nmf-roadshow/showcase.html b/docs/user-guide/developer-content/nmf-roadshow/showcase.html index b903115f..a07ea5e7 100644 --- a/docs/user-guide/developer-content/nmf-roadshow/showcase.html +++ b/docs/user-guide/developer-content/nmf-roadshow/showcase.html @@ -1119,53 +1119,28 @@

VirtualShip applications 🚢

-
-

Get in touch!

- -
-
- -
-
    -
  • Via GitHub
  • -
-
-
+

An example expedition 🚢

-
+

diff --git a/docs/user-guide/developer-content/nmf-roadshow/showcase.qmd b/docs/user-guide/developer-content/nmf-roadshow/showcase.qmd index 7432d696..ed2aec00 100644 --- a/docs/user-guide/developer-content/nmf-roadshow/showcase.qmd +++ b/docs/user-guide/developer-content/nmf-roadshow/showcase.qmd @@ -37,7 +37,7 @@ format: ::: {layout-ncol=3 layout-valign="top"} -![CTD (NIOZ)](https://www.nioz.nl/sites/default/files/styles/ratio_16_9_md/public/2025-08/foto%2010%20P1080059_0.JPG?h=173c0f7e&itok=87l7yzVK) +![CTD (NIOZ)](media/nioz_ctd_image.JPEG) ![ADCP (Nortek)](https://www.nortekgroup.com/assets/images/VM-illustration-vessel.png){height="200px"} From 1b1869dc49481baf0c62e8db41a8ac9f8bc2303c Mon Sep 17 00:00:00 2001 From: j-atkins <106238905+j-atkins@users.noreply.github.com> Date: Thu, 16 Apr 2026 13:39:31 +0200 Subject: [PATCH 3/3] remove tmp warning suppression --- src/virtualship/cli/_run.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/virtualship/cli/_run.py b/src/virtualship/cli/_run.py index 1db0f616..2feb43a3 100644 --- a/src/virtualship/cli/_run.py +++ b/src/virtualship/cli/_run.py @@ -5,12 +5,10 @@ import shutil import sys import time -import warnings from datetime import datetime from pathlib import Path import copernicusmarine -from parcels.particleset import ParticleSetWarning from virtualship.expedition.simulate_schedule import ( MeasurementsToSimulate, @@ -41,12 +39,6 @@ external_logger = logging.getLogger("parcels.tools.loggers") external_logger.setLevel(logging.WARNING) -warnings.filterwarnings( - "ignore", - category=ParticleSetWarning, - message="Some of the particles have a start time difference that is not a multiple of outputdt. This could cause the first output of some of the particles that start later in the simulation to be at a different time than expected.", -) - # copernicusmarine logger (suppress INFO messages to prevent log being flooded) logging.getLogger("copernicusmarine").setLevel("ERROR")