Note
Go to the end to download the full example code.
Reader boundary
Seeding elements around the border of a ocean model domain (NorKyst800) to demonstrate autmatic transition back and forth with another model covering a larger domain (Topaz).
from datetime import datetime
import numpy as np
from opendrift.readers import reader_netCDF_CF_generic
from opendrift.models.oceandrift import OceanDrift
o = OceanDrift(loglevel=20) # Set loglevel to 0 for debug information
# Norkyst
reader_norkyst = reader_netCDF_CF_generic.Reader('https://thredds.met.no/thredds/dodsC/fou-hi/norkystv3_800m_m00_be')
# Topaz
reader_topaz = reader_netCDF_CF_generic.Reader('https://thredds.met.no/thredds/dodsC/cmems/topaz6/dataset-topaz6-arc-15min-3km-be.ncml')
o.add_reader([reader_norkyst, reader_topaz])
o.set_config('environment:fallback:land_binary_mask', 0)
o.set_config('drift:vertical_mixing', False)
14:16:13 INFO opendrift:576: OpenDriftSimulation initialised (version 1.14.8 / v1.14.8-22-ged2e201)
14:16:13 INFO opendrift.readers:63: Opening file with xr.open_dataset
14:16:16 INFO opendrift.readers.reader_netCDF_CF_generic:332: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
14:16:16 INFO opendrift.readers.basereader:178: Variable x_sea_water_velocity will be rotated from eastward_sea_water_velocity
14:16:16 INFO opendrift.readers.basereader:178: Variable y_sea_water_velocity will be rotated from northward_sea_water_velocity
14:16:16 INFO opendrift.readers.basereader:178: Variable x_wind will be rotated from eastward_wind
14:16:16 INFO opendrift.readers.basereader:178: Variable y_wind will be rotated from northward_wind
14:16:16 INFO opendrift.readers:63: Opening file with xr.open_dataset
14:16:18 INFO opendrift.readers.reader_netCDF_CF_generic:332: Detected dimensions: {'x': 'x', 'y': 'y', 'time': 'time'}
Seeding some particles
lons = np.linspace(5, 8, 50)
lats = np.linspace(69.8, 70.8, 50)
lons, lats = np.meshgrid(lons, lats)
Seed oil elements at defined position and time
o.seed_elements(lons, lats, radius=0, number=2500,
time=datetime.now())
14:16:18 INFO opendrift.models.basemodel.environment:203: Adding a global landmask from GSHHG
14:16:22 INFO opendrift.models.basemodel.environment:227: Fallback values will be used for the following variables which have no readers:
14:16:22 INFO opendrift.models.basemodel.environment:230: horizontal_diffusivity: 0.000000
14:16:22 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_significant_height: 0.000000
14:16:22 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_stokes_drift_x_velocity: 0.000000
14:16:22 INFO opendrift.models.basemodel.environment:230: sea_surface_wave_stokes_drift_y_velocity: 0.000000
14:16:22 INFO opendrift.models.basemodel.environment:230: ocean_mixed_layer_thickness: 50.000000
Running model
o.run(steps=16*4, time_step=900, time_step_output=1800)
14:16:22 INFO opendrift:1836: Skipping environment variable ocean_vertical_diffusivity because of condition ['drift:vertical_mixing', 'is', False]
14:16:22 INFO opendrift:1836: Skipping environment variable ocean_mixed_layer_thickness because of condition ['drift:vertical_mixing', 'is', False]
14:16:22 INFO opendrift:1847: Storing previous values of element property lon because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
14:16:22 INFO opendrift:1847: Storing previous values of element property lat because of condition (('general:coastline_action', 'in', ['stranding', 'previous']), 'or', ('general:seafloor_action', 'in', ['previous']))
14:16:22 INFO opendrift:1855: Storing previous values of environment variable sea_surface_height because of condition ['drift:vertical_advection', 'is', True]
14:16:22 INFO opendrift:955: Using existing reader for land_binary_mask to move elements to ocean
14:16:22 INFO opendrift:986: All points are in ocean
14:16:22 INFO opendrift:2144: 2026-03-03 14:16:18.663858 - step 1 of 64 - 2500 active elements (0 deactivated)
14:16:26 INFO opendrift:2144: 2026-03-03 14:31:18.663858 - step 2 of 64 - 2500 active elements (0 deactivated)
14:16:27 INFO opendrift:2144: 2026-03-03 14:46:18.663858 - step 3 of 64 - 2500 active elements (0 deactivated)
14:16:27 INFO opendrift:2144: 2026-03-03 15:01:18.663858 - step 4 of 64 - 2500 active elements (0 deactivated)
14:16:30 INFO opendrift:2144: 2026-03-03 15:16:18.663858 - step 5 of 64 - 2500 active elements (0 deactivated)
14:16:30 INFO opendrift:2144: 2026-03-03 15:31:18.663858 - step 6 of 64 - 2500 active elements (0 deactivated)
14:16:31 INFO opendrift:2144: 2026-03-03 15:46:18.663858 - step 7 of 64 - 2500 active elements (0 deactivated)
14:16:32 INFO opendrift:2144: 2026-03-03 16:01:18.663858 - step 8 of 64 - 2500 active elements (0 deactivated)
14:16:34 INFO opendrift:2144: 2026-03-03 16:16:18.663858 - step 9 of 64 - 2500 active elements (0 deactivated)
14:16:34 INFO opendrift:2144: 2026-03-03 16:31:18.663858 - step 10 of 64 - 2500 active elements (0 deactivated)
14:16:35 INFO opendrift:2144: 2026-03-03 16:46:18.663858 - step 11 of 64 - 2500 active elements (0 deactivated)
14:16:36 INFO opendrift:2144: 2026-03-03 17:01:18.663858 - step 12 of 64 - 2500 active elements (0 deactivated)
14:16:38 INFO opendrift:2144: 2026-03-03 17:16:18.663858 - step 13 of 64 - 2500 active elements (0 deactivated)
14:16:38 INFO opendrift:2144: 2026-03-03 17:31:18.663858 - step 14 of 64 - 2500 active elements (0 deactivated)
14:16:39 INFO opendrift:2144: 2026-03-03 17:46:18.663858 - step 15 of 64 - 2500 active elements (0 deactivated)
14:16:39 INFO opendrift:2144: 2026-03-03 18:01:18.663858 - step 16 of 64 - 2500 active elements (0 deactivated)
14:16:42 INFO opendrift:2144: 2026-03-03 18:16:18.663858 - step 17 of 64 - 2500 active elements (0 deactivated)
14:16:42 INFO opendrift:2144: 2026-03-03 18:31:18.663858 - step 18 of 64 - 2500 active elements (0 deactivated)
14:16:43 INFO opendrift:2144: 2026-03-03 18:46:18.663858 - step 19 of 64 - 2500 active elements (0 deactivated)
14:16:44 INFO opendrift:2144: 2026-03-03 19:01:18.663858 - step 20 of 64 - 2500 active elements (0 deactivated)
14:16:46 INFO opendrift:2144: 2026-03-03 19:16:18.663858 - step 21 of 64 - 2500 active elements (0 deactivated)
14:16:46 INFO opendrift:2144: 2026-03-03 19:31:18.663858 - step 22 of 64 - 2500 active elements (0 deactivated)
14:16:47 INFO opendrift:2144: 2026-03-03 19:46:18.663858 - step 23 of 64 - 2500 active elements (0 deactivated)
14:16:48 INFO opendrift:2144: 2026-03-03 20:01:18.663858 - step 24 of 64 - 2500 active elements (0 deactivated)
14:16:50 INFO opendrift:2144: 2026-03-03 20:16:18.663858 - step 25 of 64 - 2500 active elements (0 deactivated)
14:16:51 INFO opendrift:2144: 2026-03-03 20:31:18.663858 - step 26 of 64 - 2500 active elements (0 deactivated)
14:16:52 INFO opendrift:2144: 2026-03-03 20:46:18.663858 - step 27 of 64 - 2500 active elements (0 deactivated)
14:16:52 INFO opendrift:2144: 2026-03-03 21:01:18.663858 - step 28 of 64 - 2500 active elements (0 deactivated)
14:16:54 INFO opendrift:2144: 2026-03-03 21:16:18.663858 - step 29 of 64 - 2500 active elements (0 deactivated)
14:16:55 INFO opendrift:2144: 2026-03-03 21:31:18.663858 - step 30 of 64 - 2500 active elements (0 deactivated)
14:16:56 INFO opendrift:2144: 2026-03-03 21:46:18.663858 - step 31 of 64 - 2500 active elements (0 deactivated)
14:16:56 INFO opendrift:2144: 2026-03-03 22:01:18.663858 - step 32 of 64 - 2500 active elements (0 deactivated)
14:16:59 INFO opendrift:2144: 2026-03-03 22:16:18.663858 - step 33 of 64 - 2500 active elements (0 deactivated)
14:16:59 INFO opendrift:2144: 2026-03-03 22:31:18.663858 - step 34 of 64 - 2500 active elements (0 deactivated)
14:17:00 INFO opendrift:2144: 2026-03-03 22:46:18.663858 - step 35 of 64 - 2500 active elements (0 deactivated)
14:17:01 INFO opendrift:2144: 2026-03-03 23:01:18.663858 - step 36 of 64 - 2500 active elements (0 deactivated)
14:17:03 INFO opendrift:2144: 2026-03-03 23:16:18.663858 - step 37 of 64 - 2500 active elements (0 deactivated)
14:17:03 INFO opendrift:2144: 2026-03-03 23:31:18.663858 - step 38 of 64 - 2500 active elements (0 deactivated)
14:17:04 INFO opendrift:2144: 2026-03-03 23:46:18.663858 - step 39 of 64 - 2500 active elements (0 deactivated)
14:17:05 INFO opendrift:2144: 2026-03-04 00:01:18.663858 - step 40 of 64 - 2500 active elements (0 deactivated)
14:17:07 INFO opendrift:2144: 2026-03-04 00:16:18.663858 - step 41 of 64 - 2500 active elements (0 deactivated)
14:17:08 INFO opendrift:2144: 2026-03-04 00:31:18.663858 - step 42 of 64 - 2500 active elements (0 deactivated)
14:17:08 INFO opendrift:2144: 2026-03-04 00:46:18.663858 - step 43 of 64 - 2500 active elements (0 deactivated)
14:17:09 INFO opendrift:2144: 2026-03-04 01:01:18.663858 - step 44 of 64 - 2500 active elements (0 deactivated)
14:17:11 INFO opendrift:2144: 2026-03-04 01:16:18.663858 - step 45 of 64 - 2500 active elements (0 deactivated)
14:17:12 INFO opendrift:2144: 2026-03-04 01:31:18.663858 - step 46 of 64 - 2500 active elements (0 deactivated)
14:17:12 INFO opendrift:2144: 2026-03-04 01:46:18.663858 - step 47 of 64 - 2500 active elements (0 deactivated)
14:17:13 INFO opendrift:2144: 2026-03-04 02:01:18.663858 - step 48 of 64 - 2500 active elements (0 deactivated)
14:17:16 INFO opendrift:2144: 2026-03-04 02:16:18.663858 - step 49 of 64 - 2500 active elements (0 deactivated)
14:17:16 INFO opendrift:2144: 2026-03-04 02:31:18.663858 - step 50 of 64 - 2500 active elements (0 deactivated)
14:17:17 INFO opendrift:2144: 2026-03-04 02:46:18.663858 - step 51 of 64 - 2500 active elements (0 deactivated)
14:17:18 INFO opendrift:2144: 2026-03-04 03:01:18.663858 - step 52 of 64 - 2500 active elements (0 deactivated)
14:17:20 INFO opendrift:2144: 2026-03-04 03:16:18.663858 - step 53 of 64 - 2500 active elements (0 deactivated)
14:17:20 INFO opendrift:2144: 2026-03-04 03:31:18.663858 - step 54 of 64 - 2500 active elements (0 deactivated)
14:17:21 INFO opendrift:2144: 2026-03-04 03:46:18.663858 - step 55 of 64 - 2500 active elements (0 deactivated)
14:17:22 INFO opendrift:2144: 2026-03-04 04:01:18.663858 - step 56 of 64 - 2500 active elements (0 deactivated)
14:17:24 INFO opendrift:2144: 2026-03-04 04:16:18.663858 - step 57 of 64 - 2500 active elements (0 deactivated)
14:17:25 INFO opendrift:2144: 2026-03-04 04:31:18.663858 - step 58 of 64 - 2500 active elements (0 deactivated)
14:17:26 INFO opendrift:2144: 2026-03-04 04:46:18.663858 - step 59 of 64 - 2500 active elements (0 deactivated)
14:17:26 INFO opendrift:2144: 2026-03-04 05:01:18.663858 - step 60 of 64 - 2500 active elements (0 deactivated)
14:17:29 INFO opendrift:2144: 2026-03-04 05:16:18.663858 - step 61 of 64 - 2500 active elements (0 deactivated)
14:17:29 INFO opendrift:2144: 2026-03-04 05:31:18.663858 - step 62 of 64 - 2500 active elements (0 deactivated)
14:17:30 INFO opendrift:2144: 2026-03-04 05:46:18.663858 - step 63 of 64 - 2500 active elements (0 deactivated)
14:17:30 INFO opendrift:2144: 2026-03-04 06:01:18.663858 - step 64 of 64 - 2500 active elements (0 deactivated)
Print and plot results
print(o)
o.animation(fast=True)
===========================
--------------------
Reader performance:
--------------------
https://thredds.met.no/thredds/dodsC/fou-hi/norkystv3_800m_m00_be
0:00:30.4 total
0:00:00.0 preparing
0:00:30.0 reading
0:00:00.2 interpolation
0:00:00.0 interpolation_time
0:00:00.3 rotating vectors
0:00:00.0 masking
--------------------
https://thredds.met.no/thredds/dodsC/cmems/topaz6/dataset-topaz6-arc-15min-3km-be.ncml
0:00:38.9 total
0:00:00.0 preparing
0:00:38.7 reading
0:00:00.0 interpolation
0:00:00.0 interpolation_time
0:00:00.1 rotating vectors
0:00:00.0 masking
--------------------
global_landmask
0:00:00.0 total
0:00:00.0 preparing
0:00:00.0 reading
0:00:00.0 masking
--------------------
Performance:
1:19.4 total time
8.6 configuration
0.0 preparing main loop
0.0 moving elements to ocean
1:10.7 main loop
0.1 updating elements
0.0 cleaning up
--------------------
===========================
Model: OceanDrift (OpenDrift version 1.14.8)
2500 active Lagrangian3DArray particles (0 deactivated, 0 scheduled)
-------------------
Environment variables:
-----
sea_floor_depth_below_sea_level
sea_surface_height
x_sea_water_velocity
y_sea_water_velocity
1) https://thredds.met.no/thredds/dodsC/fou-hi/norkystv3_800m_m00_be
2) https://thredds.met.no/thredds/dodsC/cmems/topaz6/dataset-topaz6-arc-15min-3km-be.ncml
-----
upward_sea_water_velocity
x_wind
y_wind
1) https://thredds.met.no/thredds/dodsC/fou-hi/norkystv3_800m_m00_be
-----
land_binary_mask
1) global_landmask
-----
Readers not added for the following variables:
horizontal_diffusivity
sea_surface_wave_significant_height
sea_surface_wave_stokes_drift_x_velocity
sea_surface_wave_stokes_drift_y_velocity
Discarded readers:
Time:
Start: 2026-03-03 14:16:18.663858 UTC
Present: 2026-03-04 06:16:18.663858 UTC
Calculation steps: 64 * 0:15:00 - total time: 16:00:00
Output steps: 33 * 0:30:00
===========================
14:17:33 WARNING opendrift:2507: Plotting fast. This will make your plots less accurate.
14:17:34 INFO opendrift:4705: Saving animation to /root/project/docs/source/gallery/animations/example_reader_boundary_0.gif...
14:17:55 INFO opendrift:3128: Time to make animation: 0:00:21.785105
o.plot(fast=True)

14:17:55 WARNING opendrift:2507: Plotting fast. This will make your plots less accurate.
(<GeoAxes: title={'center': 'OpenDrift - OceanDrift\n2026-03-03 14:16 to 2026-03-04 06:16 UTC (33 steps)'}>, <Figure size 947.292x1100 with 1 Axes>)
Total running time of the script: (1 minutes 53.037 seconds)