Manual aggregate

from datetime import datetime, timedelta
import pandas as pd
import matplotlib.pyplot as plt
from opendrift.readers import reader_netCDF_CF_generic
from opendrift.readers import open_mfdataset_overlap
from opendrift.models.oceandrift import OceanDrift

#%
# Create manual aggregate from individual URLs, for NorKyst ocean model initialized at 00 hours every day

start_time = datetime.now().date()-timedelta(days=5)
end_time = datetime.now().date()-timedelta(days=3)
ds = open_mfdataset_overlap(
    'https://thredds.met.no/thredds/dodsC/fou-hi/norkyst800m-1h/NorKyst-800m_ZDEPTHS_his.an.%Y%m%d%H.nc',
    time_series=pd.date_range(start_time, end_time, freq='1D'))

#%
# Create reader from Xarray dataset
rm = reader_netCDF_CF_generic.Reader(ds, name='NorKyst manual aggregate')
print(rm)

om = OceanDrift()
om.add_reader(rm)
om.seed_elements(lon=4.5, lat=60.0, number=1000, radius=100, time=rm.start_time)
om.run(end_time=rm.end_time)

#%
# Second simulation using ready made aggregate from thredds
ot = OceanDrift()
ot.add_readers_from_list(['https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be'])
ot.seed_elements(lon=4.5, lat=60.0, number=1000, radius=100, time=rm.start_time)
ot.run(end_time=rm.end_time)

#%
# Simulation should be identical, but we see that manual aggregate is significantly slower than using thredds aggregate
om.animation(compare=ot,
             legend=[f'NorKyst manual aggregate {om.timing["total time"]}',
                     f'NorKyst thredds aggregate {ot.timing["total time"]}'])
Opening individual URLs...
Concatenating...
===========================
Reader: NorKyst manual aggregate
Projection:
  +proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs
Coverage: [degrees]
  xmin: 0.000000   xmax: 2080800.000000   step: 800   numx: 2602
  ymin: 0.000000   ymax: 720800.000000   step: 800   numy: 902
  Corners (lon, lat):
    ( -1.58,  58.50)  ( 23.71,  75.32)
    (  9.19,  55.91)  ( 38.06,  70.03)
Vertical levels [m]:
  [   -0.    -3.   -10.   -15.   -25.   -50.   -75.  -100.  -150.  -200.
  -250.  -300.  -500. -1000. -2000. -3000.]
Available time range:
  start: 2025-06-21 00:00:00   end: 2025-06-23 23:00:00   step: 1:00:00
    72 times (0 missing)
Variables:
  ocean_vertical_diffusivity
  x_wind
  y_wind
  sea_floor_depth_below_sea_level
  sea_water_salinity
  sea_water_temperature
  x_sea_water_velocity
  eastward_sea_water_velocity
  y_sea_water_velocity
  northward_sea_water_velocity
  upward_sea_water_velocity
  sea_surface_height
  latitude
  longitude
  wind_speed - derived from ['x_wind', 'y_wind']
  sea_water_speed - derived from ['x_sea_water_velocity', 'y_sea_water_velocity']
===========================

09:55:52 DEBUG   opendrift.config:168: Adding 18 config items from __init__
09:55:52 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
09:55:52 DEBUG   opendrift.config:168: Adding 5 config items from __init__
09:55:52 INFO    opendrift:509: OpenDriftSimulation initialised (version 1.14.2 / v1.14.2-59-g60ee835)
09:55:52 DEBUG   opendrift.config:168: Adding 17 config items from oceandrift
09:55:52 DEBUG   opendrift.config:178:   Overwriting config item seed:z
09:55:52 DEBUG   opendrift.models.basemodel.environment:312: Added reader NorKyst manual aggregate
09:55:52 INFO    opendrift.models.basemodel.environment:206: Adding a global landmask from GSHHG
09:55:52 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
09:55:57 DEBUG   opendrift.models.basemodel.environment:312: Added reader global_landmask
09:55:57 INFO    opendrift.models.basemodel.environment:229: Fallback values will be used for the following variables which have no readers:
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_significant_height: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_swell_wave_to_direction: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_swell_wave_significant_height: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wind_wave_to_direction: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wind_wave_mean_period: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wind_wave_significant_height: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    surface_downward_x_stress: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    surface_downward_y_stress: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    turbulent_kinetic_energy: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    turbulent_generic_length_scale: 0.000000
09:55:57 INFO    opendrift.models.basemodel.environment:232:    ocean_mixed_layer_thickness: 50.000000
09:55:57 DEBUG   opendrift:100: Changed mode from Mode.Config to Mode.Ready
09:55:57 DEBUG   opendrift:100: Changed mode from Mode.Ready to Mode.Run
09:55:57 DEBUG   opendrift:1788:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.14.2
  Platform: Linux, 6.8.0-1029-aws
  4.0 GB memory
  36 processors (x86_64)
  NumPy version 2.3.0
  SciPy version 1.15.2
  Matplotlib version 3.10.3
  NetCDF4 version 1.7.2
  Xarray version 2025.6.1
  ADIOS (adios_db) version 1.2.5
  Copernicusmarine version 2.1.2
  Python version 3.13.5 | packaged by conda-forge | (main, Jun 16 2025, 08:27:50) [GCC 13.3.0]
------------------------------------------------------

09:55:57 DEBUG   opendrift:1802: No output file is specified, neglecting export_buffer_length
09:55:57 DEBUG   opendrift:1920: Finalizing environment and preparing readers for simulation coverage ([np.float64(-4.71627286447143), np.float64(55.39190523302233), np.float64(13.715758357177728), np.float64(64.60825116956556)]) and time (2025-06-21 00:00:00 to 2025-06-23 23:00:00)
09:55:57 DEBUG   opendrift.models.basemodel.environment:168:    Preparing NorKyst manual aggregate for extent [np.float64(-4.71627286447143), np.float64(55.39190523302233), np.float64(13.715758357177728), np.float64(64.60825116956556)]
09:55:57 DEBUG   opendrift.readers.basereader.structured:153: Clearing cache for reader NorKyst manual aggregate before starting new simulation
09:55:57 DEBUG   opendrift.readers.basereader.variables:612: Setting buffer size 11 for reader NorKyst manual aggregate, assuming a maximum average speed of 2 m/s and time span of 1:00:00
09:55:57 DEBUG   opendrift.readers.basereader.variables:553: Nothing more to prepare for NorKyst manual aggregate
09:55:57 DEBUG   opendrift.models.basemodel.environment:168:    Preparing global_landmask for extent [np.float64(-4.71627286447143), np.float64(55.39190523302233), np.float64(13.715758357177728), np.float64(64.60825116956556)]
09:55:57 DEBUG   opendrift.readers.basereader.variables:553: Nothing more to prepare for global_landmask
09:55:57 DEBUG   opendrift:2007: Initial self.result, size Frozen({'trajectory': 1000, 'time': 72})
09:55:57 INFO    opendrift:885: Using existing reader for land_binary_mask
09:55:57 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:55:57 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:55:57 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:55:57 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:55:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:57 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:55:57 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:55:57 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:55:57 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:55:57 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:55:57 INFO    opendrift:914: All points are in ocean
09:55:57 INFO    opendrift:2035: Storing previous position of elements for coastline interaction
09:55:57 DEBUG   opendrift:842: to be seeded: 1000, already seeded 0
09:55:57 DEBUG   opendrift:864: Released 1000 new elements.
09:55:57 DEBUG   opendrift:2095: ======================================================================
09:55:57 INFO    opendrift:2096: 2025-06-21 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
09:55:57 DEBUG   opendrift:2102: 0 elements scheduled.
09:55:57 DEBUG   opendrift:2104: ======================================================================
09:55:57 DEBUG   opendrift:2115:                59.997310638427734 <- latitude -> 60.002845764160156
09:55:57 DEBUG   opendrift:2115:                4.494540691375732 <- longitude -> 4.504944801330566
09:55:57 DEBUG   opendrift:2113:                z = 0.0
09:55:57 DEBUG   opendrift:2116: ---------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:55:57 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:55:57 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:55:57 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:55:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 00:00:00 (before)
                2025-06-21 01:00:00 (after)
09:56:10 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:56:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:56:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:56:10 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:56:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:56:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:56:10 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x7) for time before (2025-06-21 00:00:00)
09:56:10 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 00:00:00) in space  (linearNDFast)
09:56:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:56:10 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:56:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:56:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:56:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:56:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:56:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:56:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:56:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:56:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:56:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:56:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:56:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:10 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:56:10 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:56:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:56:10 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:56:10 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:56:10 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:56:10 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.229171 (min) -0.224822 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0593461 (min) 0.0680258 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.687233 (min) -0.685381 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 2.35764 (min) 2.37433 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.97044 (min) -4.93823 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -6.39661e-07 (min) -6.16959e-07 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:56:10 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:56:10 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.738579, mean: 0.741709, max: 0.744486
09:56:10 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:56:10 DEBUG   opendrift.models.physics_methods:917:    min: 4.681964, mean: 4.691872, max: 4.700651
09:56:10 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.681964, mean: 4.691872, max: 4.700651
09:56:10 DEBUG   opendrift:619: No elements hit coastline.
09:56:10 DEBUG   opendrift:702: No elements hit seafloor.
09:56:10 DEBUG   opendrift:1720: No elements to deactivate
09:56:10 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:56:10 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.109587 m/s - 0.110025 m/s)
09:56:10 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:56:10 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:56:10 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:56:10 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:56:10 DEBUG   opendrift:2095: ======================================================================
09:56:10 INFO    opendrift:2096: 2025-06-21 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
09:56:10 DEBUG   opendrift:2102: 0 elements scheduled.
09:56:10 DEBUG   opendrift:2104: ======================================================================
09:56:10 DEBUG   opendrift:2115:                59.99603537461877 <- latitude -> 60.00183613309658
09:56:10 DEBUG   opendrift:2115:                4.483077636408777 <- longitude -> 4.493219609249013
09:56:10 DEBUG   opendrift:2113:                z = 0.0
09:56:10 DEBUG   opendrift:2116: ---------------------------------
09:56:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:56:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:56:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:56:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:56:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:56:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:56:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 01:00:00 (before)
                2025-06-21 02:00:00 (after)
09:56:23 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 01:00:00)
09:56:23 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 01:00:00) in space  (linearNDFast)
09:56:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:56:23 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:56:23 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.51693329226356 and -65.50679132920443 degrees.
09:56:23 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.51693329226356 and -65.50679132920443 degrees.
09:56:23 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:56:23 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:56:23 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:56:23 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:56:23 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:56:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:23 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:56:23 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:56:23 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:56:23 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:56:23 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.25716 (min) -0.249866 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.180393 (min) 0.18872 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.58942 (min) -0.587111 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.13797 (min) 1.15177 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -5.62217 (min) -5.59712 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.32033e-05 (min) 3.33189e-05 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.128 (min) 298.391 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:56:23 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.803120, mean: 0.806447, max: 0.809695
09:56:23 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:56:23 DEBUG   opendrift.models.physics_methods:917:    min: 4.882249, mean: 4.892349, max: 4.902192
09:56:23 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.882249, mean: 4.892349, max: 4.902192
09:56:23 DEBUG   opendrift:619: No elements hit coastline.
09:56:23 DEBUG   opendrift:702: No elements hit seafloor.
09:56:23 DEBUG   opendrift:1720: No elements to deactivate
09:56:23 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:56:23 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.114275 m/s - 0.114742 m/s)
09:56:23 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:56:23 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:56:23 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:56:23 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:56:23 DEBUG   opendrift:2095: ======================================================================
09:56:23 INFO    opendrift:2096: 2025-06-21 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
09:56:23 DEBUG   opendrift:2102: 0 elements scheduled.
09:56:23 DEBUG   opendrift:2104: ======================================================================
09:56:23 DEBUG   opendrift:2115:                59.99823496940083 <- latitude -> 60.00431598979686
09:56:23 DEBUG   opendrift:2115:                4.468424636344836 <- longitude -> 4.478107336052199
09:56:23 DEBUG   opendrift:2113:                z = 0.0
09:56:23 DEBUG   opendrift:2116: ---------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:23 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:56:23 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:56:23 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:56:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 02:00:00 (before)
                2025-06-21 03:00:00 (after)
09:56:36 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:56:36 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:56:36 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:56:36 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:56:36 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:56:36 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:56:36 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x22x7) for time before (2025-06-21 02:00:00)
09:56:36 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 02:00:00) in space  (linearNDFast)
09:56:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:56:36 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:56:36 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.53158629053026 and -65.52190359055038 degrees.
09:56:36 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.53158629053026 and -65.52190359055038 degrees.
09:56:36 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:56:36 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:56:36 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:56:36 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:56:36 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:56:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:36 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:56:36 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:56:36 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:56:36 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:56:36 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:56:36 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.244567 (min) -0.238437 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.300844 (min) 0.308112 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.460575 (min) -0.45849 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.05782 (min) 1.09956 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -5.63239 (min) -5.56518 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.70075e-05 (min) 3.70244e-05 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.012 (min) 298.241 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:56:36 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.790152, mean: 0.799590, max: 0.809215
09:56:36 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:56:36 DEBUG   opendrift.models.physics_methods:917:    min: 4.842669, mean: 4.871498, max: 4.900740
09:56:36 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.842669, mean: 4.871498, max: 4.900740
09:56:36 DEBUG   opendrift:619: No elements hit coastline.
09:56:36 DEBUG   opendrift:702: No elements hit seafloor.
09:56:36 DEBUG   opendrift:1720: No elements to deactivate
09:56:36 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:56:36 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.113349 m/s - 0.114708 m/s)
09:56:36 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:56:36 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:56:36 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:56:36 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:56:36 DEBUG   opendrift:2095: ======================================================================
09:56:36 INFO    opendrift:2096: 2025-06-21 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
09:56:36 DEBUG   opendrift:2102: 0 elements scheduled.
09:56:36 DEBUG   opendrift:2104: ======================================================================
09:56:36 DEBUG   opendrift:2115:                60.00440823418543 <- latitude -> 60.01059425748961
09:56:36 DEBUG   opendrift:2115:                4.454449249438677 <- longitude -> 4.46370552060629
09:56:36 DEBUG   opendrift:2113:                z = 0.0
09:56:36 DEBUG   opendrift:2116: ---------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:36 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:56:36 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:56:36 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:56:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 03:00:00 (before)
                2025-06-21 04:00:00 (after)
09:56:49 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 03:00:00)
09:56:49 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 03:00:00) in space  (linearNDFast)
09:56:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:56:49 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:56:49 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54556167786382 and -65.53630541125756 degrees.
09:56:49 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54556167786382 and -65.53630541125756 degrees.
09:56:49 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:56:49 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:56:49 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:56:49 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:56:49 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:56:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:49 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:56:49 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:56:49 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:56:49 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:56:49 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.174695 (min) -0.173991 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.381329 (min) 0.38632 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.332007 (min) -0.330583 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.254298 (min) 0.310478 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -5.3573 (min) -5.34306 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.37079e-05 (min) 3.39893e-05 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.073 (min) 298.228 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:56:49 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.703880, mean: 0.706001, max: 0.708406
09:56:49 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:56:49 DEBUG   opendrift.models.physics_methods:917:    min: 4.570660, mean: 4.577539, max: 4.585332
09:56:49 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.570660, mean: 4.577539, max: 4.585332
09:56:49 DEBUG   opendrift:619: No elements hit coastline.
09:56:49 DEBUG   opendrift:702: No elements hit seafloor.
09:56:49 DEBUG   opendrift:1720: No elements to deactivate
09:56:49 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:56:49 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.106982 m/s - 0.107326 m/s)
09:56:49 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:56:49 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:56:49 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:56:49 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:56:49 DEBUG   opendrift:2095: ======================================================================
09:56:49 INFO    opendrift:2096: 2025-06-21 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
09:56:49 DEBUG   opendrift:2102: 0 elements scheduled.
09:56:49 DEBUG   opendrift:2104: ======================================================================
09:56:49 DEBUG   opendrift:2115:                60.01333862099324 <- latitude -> 60.01956808713513
09:56:49 DEBUG   opendrift:2115:                4.443532782988991 <- longitude -> 4.452851221702909
09:56:49 DEBUG   opendrift:2113:                z = 0.0
09:56:49 DEBUG   opendrift:2116: ---------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:49 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:56:49 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:56:49 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:56:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 04:00:00 (before)
                2025-06-21 05:00:00 (after)
09:57:02 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:57:02 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:57:02 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:57:02 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:57:02 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:57:02 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:57:02 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 04:00:00)
09:57:02 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 04:00:00) in space  (linearNDFast)
09:57:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:57:02 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:57:02 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.55647813965598 and -65.54715968934987 degrees.
09:57:02 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.55647813965598 and -65.54715968934987 degrees.
09:57:02 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:02 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:02 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:57:02 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:02 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:57:02 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:02 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:02 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:57:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:57:02 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:57:02 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:57:02 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:02 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:57:02 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:57:02 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:57:02 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0707601 (min) -0.0651795 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.381562 (min) 0.385037 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.2127 (min) -0.211028 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.0169551 (min) 0.0493277 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.7686 (min) -4.72281 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.8292e-05 (min) 2.8531e-05 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.194 (min) 298.259 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:57:02 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:57:02 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.548758, mean: 0.553358, max: 0.559399
09:57:02 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:57:02 DEBUG   opendrift.models.physics_methods:917:    min: 4.035710, mean: 4.052587, max: 4.074651
09:57:02 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.035710, mean: 4.052587, max: 4.074651
09:57:02 DEBUG   opendrift:619: No elements hit coastline.
09:57:02 DEBUG   opendrift:702: No elements hit seafloor.
09:57:02 DEBUG   opendrift:1720: No elements to deactivate
09:57:02 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:57:02 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.094461 m/s - 0.095373 m/s)
09:57:02 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:57:02 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:57:02 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:57:02 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:57:02 DEBUG   opendrift:2095: ======================================================================
09:57:02 INFO    opendrift:2096: 2025-06-21 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
09:57:02 DEBUG   opendrift:2102: 0 elements scheduled.
09:57:02 DEBUG   opendrift:2104: ======================================================================
09:57:02 DEBUG   opendrift:2115:                60.022625307376714 <- latitude -> 60.02891414590911
09:57:02 DEBUG   opendrift:2115:                4.439022671625164 <- longitude -> 4.448671290679429
09:57:02 DEBUG   opendrift:2113:                z = 0.0
09:57:02 DEBUG   opendrift:2116: ---------------------------------
09:57:02 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:02 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:57:02 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:02 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:57:02 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:02 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:02 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:57:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 05:00:00 (before)
                2025-06-21 06:00:00 (after)
09:57:15 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:57:15 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:57:15 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:57:15 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:57:15 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:57:15 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:57:15 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 05:00:00)
09:57:15 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 05:00:00) in space  (linearNDFast)
09:57:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:57:15 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:57:15 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5609882475994 and -65.5513396328887 degrees.
09:57:15 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5609882475994 and -65.5513396328887 degrees.
09:57:15 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:15 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:15 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:57:15 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:15 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:57:15 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:15 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:15 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:57:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:57:15 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:57:15 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:57:15 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:15 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:57:15 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:57:15 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:57:15 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0368678 (min) 0.0463979 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.303428 (min) 0.308525 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.119648 (min) -0.117996 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.883069 (min) 0.912501 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.46461 (min) -4.42497 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.99199e-05 (min) 1.99924e-05 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.197 (min) 298.256 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:57:15 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:57:15 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.501368, mean: 0.505638, max: 0.510759
09:57:15 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:57:15 DEBUG   opendrift.models.physics_methods:917:    min: 3.857517, mean: 3.873906, max: 3.893475
09:57:15 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.857517, mean: 3.873906, max: 3.893475
09:57:15 DEBUG   opendrift:619: No elements hit coastline.
09:57:15 DEBUG   opendrift:702: No elements hit seafloor.
09:57:15 DEBUG   opendrift:1720: No elements to deactivate
09:57:15 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:57:15 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.090290 m/s - 0.091132 m/s)
09:57:15 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:57:15 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:57:15 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:57:15 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:57:15 DEBUG   opendrift:2095: ======================================================================
09:57:15 INFO    opendrift:2096: 2025-06-21 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
09:57:15 DEBUG   opendrift:2102: 0 elements scheduled.
09:57:15 DEBUG   opendrift:2104: ======================================================================
09:57:15 DEBUG   opendrift:2115:                60.02954743763451 <- latitude -> 60.03602234252767
09:57:15 DEBUG   opendrift:2115:                4.44254440747428 <- longitude -> 4.452846480192615
09:57:15 DEBUG   opendrift:2113:                z = 0.0
09:57:15 DEBUG   opendrift:2116: ---------------------------------
09:57:15 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:15 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:57:15 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:15 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:57:15 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:15 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:15 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:57:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 06:00:00 (before)
                2025-06-21 07:00:00 (after)
09:57:29 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:57:29 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:57:29 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:57:29 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:57:29 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:57:29 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:57:29 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 06:00:00)
09:57:29 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 06:00:00) in space  (linearNDFast)
09:57:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:57:29 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:57:29 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.55746651512203 and -65.54716444081912 degrees.
09:57:29 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.55746651512203 and -65.54716444081912 degrees.
09:57:29 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:29 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:29 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:57:29 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:29 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:57:29 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:29 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:29 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:57:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:57:29 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:57:29 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:57:29 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:29 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:57:29 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:57:29 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:57:29 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.120176 (min) 0.127258 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.180826 (min) 0.184865 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0782825 (min) -0.0768154 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.399422 (min) 0.409631 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.2236 (min) -4.20467 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.0849e-06 (min) 1.1724e-06 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.111 (min) 298.239 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:57:29 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:57:29 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.438919, mean: 0.440967, max: 0.442878
09:57:29 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:57:29 DEBUG   opendrift.models.physics_methods:917:    min: 3.609288, mean: 3.617700, max: 3.625529
09:57:29 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.609288, mean: 3.617700, max: 3.625529
09:57:29 DEBUG   opendrift:619: No elements hit coastline.
09:57:29 DEBUG   opendrift:702: No elements hit seafloor.
09:57:29 DEBUG   opendrift:1720: No elements to deactivate
09:57:29 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:57:29 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.084480 m/s - 0.084860 m/s)
09:57:29 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:57:29 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:57:29 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:57:29 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:57:29 DEBUG   opendrift:2095: ======================================================================
09:57:29 INFO    opendrift:2096: 2025-06-21 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
09:57:29 DEBUG   opendrift:2102: 0 elements scheduled.
09:57:29 DEBUG   opendrift:2104: ======================================================================
09:57:29 DEBUG   opendrift:2115:                60.032773596896035 <- latitude -> 60.03914110381244
09:57:29 DEBUG   opendrift:2115:                4.450834804113359 <- longitude -> 4.461485377689375
09:57:29 DEBUG   opendrift:2113:                z = 0.0
09:57:29 DEBUG   opendrift:2116: ---------------------------------
09:57:29 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:29 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:57:29 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:29 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:57:29 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:29 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:29 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:57:29 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 07:00:00 (before)
                2025-06-21 08:00:00 (after)
09:57:43 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:57:43 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:57:43 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:57:43 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:57:43 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:57:43 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:57:43 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x22x7) for time before (2025-06-21 07:00:00)
09:57:43 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 07:00:00) in space  (linearNDFast)
09:57:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:57:43 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:57:43 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54917611858826 and -65.53852553757943 degrees.
09:57:43 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54917611858826 and -65.53852553757943 degrees.
09:57:43 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:43 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:43 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:57:43 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:43 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:57:43 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:43 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:43 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:57:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:57:43 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:57:43 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:57:43 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:43 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:57:43 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:57:43 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:57:43 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.141069 (min) 0.146261 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0431226 (min) 0.0513746 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.117548 (min) -0.116226 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.105483 (min) 0.13498 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.28518 (min) -4.27156 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.44182e-05 (min) -2.43238e-05 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.125 (min) 298.301 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:57:43 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:57:43 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.449305, mean: 0.450731, max: 0.452016
09:57:43 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:57:43 DEBUG   opendrift.models.physics_methods:917:    min: 3.651743, mean: 3.657534, max: 3.662742
09:57:43 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.651743, mean: 3.657534, max: 3.662742
09:57:43 DEBUG   opendrift:619: No elements hit coastline.
09:57:43 DEBUG   opendrift:702: No elements hit seafloor.
09:57:43 DEBUG   opendrift:1720: No elements to deactivate
09:57:43 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:57:43 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.085474 m/s - 0.085731 m/s)
09:57:43 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:57:43 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:57:43 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:57:43 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:57:43 DEBUG   opendrift:2095: ======================================================================
09:57:43 INFO    opendrift:2096: 2025-06-21 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
09:57:43 DEBUG   opendrift:2102: 0 elements scheduled.
09:57:43 DEBUG   opendrift:2104: ======================================================================
09:57:43 DEBUG   opendrift:2115:                60.03166789226887 <- latitude -> 60.03776822941076
09:57:43 DEBUG   opendrift:2115:                4.460422503529892 <- longitude -> 4.470817877769254
09:57:43 DEBUG   opendrift:2113:                z = 0.0
09:57:43 DEBUG   opendrift:2116: ---------------------------------
09:57:43 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:43 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:57:43 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:43 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:57:43 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:43 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:43 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:57:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 08:00:00 (before)
                2025-06-21 09:00:00 (after)
09:57:56 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:57:56 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:57:56 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:57:56 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:57:56 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:57:56 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:57:56 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 08:00:00)
09:57:56 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 08:00:00) in space  (linearNDFast)
09:57:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:57:56 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:57:56 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5395884196764 and -65.52919303817495 degrees.
09:57:56 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5395884196764 and -65.52919303817495 degrees.
09:57:56 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:56 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:56 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:57:56 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:56 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:57:56 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:56 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:56 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:57:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:57:56 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:57:56 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:57:56 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:57:56 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:57:56 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:57:56 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:57:56 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.102089 (min) 0.105613 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0645449 (min) -0.0573785 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.248565 (min) -0.247757 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.177384 (min) 0.190805 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.07453 (min) -4.05763 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -4.75364e-05 (min) -4.73744e-05 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.273 (min) 298.462 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:57:56 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:57:56 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.405837, mean: 0.407465, max: 0.409272
09:57:56 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:57:56 DEBUG   opendrift.models.physics_methods:917:    min: 3.470605, mean: 3.477560, max: 3.485262
09:57:56 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.470605, mean: 3.477560, max: 3.485262
09:57:56 DEBUG   opendrift:619: No elements hit coastline.
09:57:56 DEBUG   opendrift:702: No elements hit seafloor.
09:57:57 DEBUG   opendrift:1720: No elements to deactivate
09:57:57 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:57:57 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081234 m/s - 0.081577 m/s)
09:57:57 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:57:57 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:57:57 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:57:57 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:57:57 DEBUG   opendrift:2095: ======================================================================
09:57:57 INFO    opendrift:2096: 2025-06-21 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
09:57:57 DEBUG   opendrift:2102: 0 elements scheduled.
09:57:57 DEBUG   opendrift:2104: ======================================================================
09:57:57 DEBUG   opendrift:2115:                60.02718792300222 <- latitude -> 60.033052839555104
09:57:57 DEBUG   opendrift:2115:                4.467485214202881 <- longitude -> 4.477690987386874
09:57:57 DEBUG   opendrift:2113:                z = 0.0
09:57:57 DEBUG   opendrift:2116: ---------------------------------
09:57:57 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:57:57 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:57:57 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:57:57 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:57:57 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:57:57 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:57:57 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:57:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 09:00:00 (before)
                2025-06-21 10:00:00 (after)
09:58:10 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:58:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:58:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:58:10 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:58:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:58:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:58:10 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x7) for time before (2025-06-21 09:00:00)
09:58:10 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 09:00:00) in space  (linearNDFast)
09:58:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:58:10 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:58:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.53252569431724 and -65.52231992462816 degrees.
09:58:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.53252569431724 and -65.52231992462816 degrees.
09:58:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:58:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:58:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:58:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:58:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:58:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:58:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:58:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:58:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:58:10 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:58:10 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:58:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:58:10 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:58:10 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:58:10 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:58:10 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0541249 (min) 0.0590031 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.1299 (min) -0.125287 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.445 (min) -0.445 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.520145 (min) 0.562974 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.25121 (min) -4.22315 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.90057e-05 (min) -5.88483e-05 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.424 (min) 298.606 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:58:10 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:58:10 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.445397, mean: 0.449052, max: 0.452346
09:58:10 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:58:10 DEBUG   opendrift.models.physics_methods:917:    min: 3.635828, mean: 3.650710, max: 3.664080
09:58:10 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.635828, mean: 3.650710, max: 3.664080
09:58:10 DEBUG   opendrift:619: No elements hit coastline.
09:58:10 DEBUG   opendrift:702: No elements hit seafloor.
09:58:10 DEBUG   opendrift:1720: No elements to deactivate
09:58:10 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:58:10 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.085101 m/s - 0.085763 m/s)
09:58:10 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:58:10 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:58:10 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:58:10 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:58:10 DEBUG   opendrift:2095: ======================================================================
09:58:10 INFO    opendrift:2096: 2025-06-21 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
09:58:10 DEBUG   opendrift:2102: 0 elements scheduled.
09:58:10 DEBUG   opendrift:2104: ======================================================================
09:58:10 DEBUG   opendrift:2115:                60.02039780674604 <- latitude -> 60.02611482501763
09:58:10 DEBUG   opendrift:2115:                4.471785237001647 <- longitude -> 4.48210328324172
09:58:10 DEBUG   opendrift:2113:                z = 0.0
09:58:10 DEBUG   opendrift:2116: ---------------------------------
09:58:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:58:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:58:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:58:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:58:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:58:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:58:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:58:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 10:00:00 (before)
                2025-06-21 11:00:00 (after)
09:58:26 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:58:26 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:58:26 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:58:26 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:58:26 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:58:26 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:58:26 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x22x7) for time before (2025-06-21 10:00:00)
09:58:26 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 10:00:00) in space  (linearNDFast)
09:58:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:58:26 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:58:26 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.52822568414754 and -65.51790762484093 degrees.
09:58:26 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.52822568414754 and -65.51790762484093 degrees.
09:58:26 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:58:26 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:58:26 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:58:26 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:58:26 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:58:26 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:58:26 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:58:26 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:58:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:58:26 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:58:26 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:58:26 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:58:26 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:58:26 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:58:26 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:58:26 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0122505 (min) 0.0189562 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.156843 (min) -0.153405 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.646 (min) -0.646 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.00669842 (min) 0.0244941 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.5246 (min) -4.49857 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -4.98559e-05 (min) -4.97212e-05 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.498 (min) 298.679 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:58:26 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:58:26 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.497834, mean: 0.500550, max: 0.503618
09:58:26 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:58:26 DEBUG   opendrift.models.physics_methods:917:    min: 3.843898, mean: 3.854370, max: 3.866162
09:58:26 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.843898, mean: 3.854370, max: 3.866162
09:58:26 DEBUG   opendrift:619: No elements hit coastline.
09:58:26 DEBUG   opendrift:702: No elements hit seafloor.
09:58:26 DEBUG   opendrift:1720: No elements to deactivate
09:58:26 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:58:26 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.089971 m/s - 0.090493 m/s)
09:58:26 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:58:26 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:58:26 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:58:26 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:58:26 DEBUG   opendrift:2095: ======================================================================
09:58:26 INFO    opendrift:2096: 2025-06-21 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
09:58:26 DEBUG   opendrift:2102: 0 elements scheduled.
09:58:26 DEBUG   opendrift:2104: ======================================================================
09:58:26 DEBUG   opendrift:2115:                60.01251878550127 <- latitude -> 60.01813612778655
09:58:26 DEBUG   opendrift:2115:                4.4726732806596505 <- longitude -> 4.483209020576468
09:58:26 DEBUG   opendrift:2113:                z = 0.0
09:58:26 DEBUG   opendrift:2116: ---------------------------------
09:58:26 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:58:26 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:58:26 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:58:26 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:58:26 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:58:26 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:58:26 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:58:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 11:00:00 (before)
                2025-06-21 12:00:00 (after)
09:58:39 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:58:39 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:58:39 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:58:39 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:58:39 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:58:39 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:58:39 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 11:00:00)
09:58:39 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 11:00:00) in space  (linearNDFast)
09:58:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:58:39 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:58:39 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.52733764309355 and -65.51680190505341 degrees.
09:58:39 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.52733764309355 and -65.51680190505341 degrees.
09:58:39 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:58:39 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:58:39 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:58:39 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:58:39 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:58:39 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:58:39 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:58:39 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:58:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:58:39 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:58:39 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:58:39 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:58:39 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:58:39 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:58:39 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:58:39 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0553239 (min) -0.0453867 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.148618 (min) -0.14475 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.779018 (min) -0.778573 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.475332 (min) -0.431082 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.69971 (min) -4.67908 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.20937e-05 (min) -2.18707e-05 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.438 (min) 298.625 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:58:39 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:58:39 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.544067, mean: 0.545959, max: 0.548150
09:58:39 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:58:39 DEBUG   opendrift.models.physics_methods:917:    min: 4.018423, mean: 4.025403, max: 4.033475
09:58:39 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.018423, mean: 4.025403, max: 4.033475
09:58:39 DEBUG   opendrift:619: No elements hit coastline.
09:58:39 DEBUG   opendrift:702: No elements hit seafloor.
09:58:39 DEBUG   opendrift:1720: No elements to deactivate
09:58:39 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:58:39 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.094056 m/s - 0.094409 m/s)
09:58:39 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:58:39 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:58:39 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:58:39 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:58:39 DEBUG   opendrift:2095: ======================================================================
09:58:39 INFO    opendrift:2096: 2025-06-21 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
09:58:39 DEBUG   opendrift:2102: 0 elements scheduled.
09:58:39 DEBUG   opendrift:2104: ======================================================================
09:58:39 DEBUG   opendrift:2115:                60.004782124187805 <- latitude -> 60.01032298966675
09:58:39 DEBUG   opendrift:2115:                4.46853375797432 <- longitude -> 4.479618076843218
09:58:39 DEBUG   opendrift:2113:                z = 0.0
09:58:39 DEBUG   opendrift:2116: ---------------------------------
09:58:39 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:58:39 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:58:39 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:58:39 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:58:39 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:58:39 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:58:39 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:58:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 12:00:00 (before)
                2025-06-21 13:00:00 (after)
09:58:52 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:58:52 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:58:52 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:58:52 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:58:52 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:58:52 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:58:52 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 12:00:00)
09:58:52 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 12:00:00) in space  (linearNDFast)
09:58:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:58:52 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:58:52 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5314771691323 and -65.52039284126027 degrees.
09:58:52 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5314771691323 and -65.52039284126027 degrees.
09:58:52 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:58:52 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:58:52 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:58:52 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:58:52 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:58:52 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:58:52 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:58:52 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:58:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:58:52 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:58:52 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:58:52 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:58:52 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:58:52 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:58:52 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:58:52 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.160388 (min) -0.151001 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.105755 (min) -0.102493 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.810397 (min) -0.808694 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.762736 (min) -0.716424 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.7797 (min) -4.74374 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.06104e-06 (min) 5.23727e-06 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.222 (min) 298.425 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:58:52 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:58:52 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.567860, mean: 0.571298, max: 0.574718
09:58:52 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:58:52 DEBUG   opendrift.models.physics_methods:917:    min: 4.105350, mean: 4.117755, max: 4.130068
09:58:52 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.105350, mean: 4.117755, max: 4.130068
09:58:52 DEBUG   opendrift:619: No elements hit coastline.
09:58:52 DEBUG   opendrift:702: No elements hit seafloor.
09:58:52 DEBUG   opendrift:1720: No elements to deactivate
09:58:52 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:58:52 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.096091 m/s - 0.096670 m/s)
09:58:52 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:58:52 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:58:52 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:58:52 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:58:52 DEBUG   opendrift:2095: ======================================================================
09:58:52 INFO    opendrift:2096: 2025-06-21 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
09:58:52 DEBUG   opendrift:2102: 0 elements scheduled.
09:58:52 DEBUG   opendrift:2104: ======================================================================
09:58:52 DEBUG   opendrift:2115:                59.99829319198471 <- latitude -> 60.003884947761854
09:58:52 DEBUG   opendrift:2115:                4.457311600950546 <- longitude -> 4.4689113128313425
09:58:52 DEBUG   opendrift:2113:                z = 0.0
09:58:52 DEBUG   opendrift:2116: ---------------------------------
09:58:52 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:58:52 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:58:52 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:58:52 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:58:52 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:58:52 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:58:52 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:58:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 13:00:00 (before)
                2025-06-21 14:00:00 (after)
09:59:05 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:59:05 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:59:05 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:59:05 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:59:05 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:59:05 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:59:05 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x7) for time before (2025-06-21 13:00:00)
09:59:05 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 13:00:00) in space  (linearNDFast)
09:59:05 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:59:05 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:59:05 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54269931584906 and -65.53109960478884 degrees.
09:59:05 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54269931584906 and -65.53109960478884 degrees.
09:59:05 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:59:05 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:59:05 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:59:05 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:59:05 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:59:05 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:59:05 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:59:05 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:59:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:59:05 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:59:05 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:59:05 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:59:05 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:59:05 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:59:05 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:59:05 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.266374 (min) -0.257525 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0129167 (min) -0.00679012 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.747862 (min) -0.745668 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.03862 (min) -0.995495 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.77912 (min) -4.74481 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.78787e-05 (min) 2.79432e-05 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.912 (min) 298.105 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:59:05 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:59:05 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.580361, mean: 0.583536, max: 0.586301
09:59:05 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:59:05 DEBUG   opendrift.models.physics_methods:917:    min: 4.150294, mean: 4.161628, max: 4.171478
09:59:05 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.150294, mean: 4.161628, max: 4.171478
09:59:05 DEBUG   opendrift:619: No elements hit coastline.
09:59:05 DEBUG   opendrift:702: No elements hit seafloor.
09:59:05 DEBUG   opendrift:1720: No elements to deactivate
09:59:05 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:59:05 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.097143 m/s - 0.097639 m/s)
09:59:05 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:59:05 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:59:05 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:59:05 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:59:05 DEBUG   opendrift:2095: ======================================================================
09:59:05 INFO    opendrift:2096: 2025-06-21 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
09:59:05 DEBUG   opendrift:2102: 0 elements scheduled.
09:59:05 DEBUG   opendrift:2104: ======================================================================
09:59:05 DEBUG   opendrift:2115:                59.99483554923186 <- latitude -> 60.000586329098766
09:59:05 DEBUG   opendrift:2115:                4.439196843221135 <- longitude -> 4.4507974028073924
09:59:05 DEBUG   opendrift:2113:                z = 0.0
09:59:05 DEBUG   opendrift:2116: ---------------------------------
09:59:05 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:59:05 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:59:05 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:59:05 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:59:05 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:59:05 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:59:05 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:59:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 14:00:00 (before)
                2025-06-21 15:00:00 (after)
09:59:19 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:59:19 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:59:19 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:59:19 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:59:19 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:59:19 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:59:19 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x7) for time before (2025-06-21 14:00:00)
09:59:19 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 14:00:00) in space  (linearNDFast)
09:59:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:59:19 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:59:19 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.56081408563242 and -65.54921352775757 degrees.
09:59:20 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.56081408563242 and -65.54921352775757 degrees.
09:59:20 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:59:20 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:59:20 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:59:20 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:59:20 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:59:20 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:59:20 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:59:20 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:59:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:59:20 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:59:20 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:59:20 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:59:20 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:59:20 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:59:20 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:59:20 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.320912 (min) -0.311694 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.13235 (min) 0.137927 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.623022 (min) -0.621216 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.75001 (min) -1.69926 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.80621 (min) -4.77068 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.88683e-05 (min) 3.90248e-05 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.688 (min) 297.905 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:59:20 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:59:20 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.635220, mean: 0.637276, max: 0.639284
09:59:20 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:59:20 DEBUG   opendrift.models.physics_methods:917:    min: 4.342020, mean: 4.349038, max: 4.355886
09:59:20 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.342020, mean: 4.349038, max: 4.355886
09:59:20 DEBUG   opendrift:619: No elements hit coastline.
09:59:20 DEBUG   opendrift:702: No elements hit seafloor.
09:59:20 DEBUG   opendrift:1720: No elements to deactivate
09:59:20 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:59:20 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101631 m/s - 0.101955 m/s)
09:59:20 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:59:20 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:59:20 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:59:20 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:59:20 DEBUG   opendrift:2095: ======================================================================
09:59:20 INFO    opendrift:2096: 2025-06-21 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
09:59:20 DEBUG   opendrift:2102: 0 elements scheduled.
09:59:20 DEBUG   opendrift:2104: ======================================================================
09:59:20 DEBUG   opendrift:2115:                59.996039886020064 <- latitude -> 60.001947662790265
09:59:20 DEBUG   opendrift:2115:                4.416445620695066 <- longitude -> 4.428390357513542
09:59:20 DEBUG   opendrift:2113:                z = 0.0
09:59:20 DEBUG   opendrift:2116: ---------------------------------
09:59:20 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:59:20 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:59:20 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:59:20 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:59:20 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:59:20 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:59:20 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:59:20 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 15:00:00 (before)
                2025-06-21 16:00:00 (after)
09:59:33 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:59:33 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:59:33 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:59:33 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:59:33 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:59:33 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:59:33 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 15:00:00)
09:59:33 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 15:00:00) in space  (linearNDFast)
09:59:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:59:33 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:59:33 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.58356530642081 and -65.57162057234852 degrees.
09:59:33 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.58356530642081 and -65.57162057234852 degrees.
09:59:33 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:59:33 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:59:33 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:59:33 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:59:33 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:59:33 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:59:33 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:59:33 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:59:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:59:33 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:59:33 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:59:33 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:59:33 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:59:33 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:59:33 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:59:33 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.341214 (min) -0.316083 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.275943 (min) 0.283304 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.473042 (min) -0.471203 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -2.07751 (min) -2.01369 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -5.11736 (min) -5.08987 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.25836e-05 (min) 4.28177e-05 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.784 (min) 298.033 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:59:33 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:59:33 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.742120, mean: 0.743613, max: 0.745045
09:59:33 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:59:33 DEBUG   opendrift.models.physics_methods:917:    min: 4.693173, mean: 4.697892, max: 4.702412
09:59:33 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.693173, mean: 4.697892, max: 4.702412
09:59:33 DEBUG   opendrift:619: No elements hit coastline.
09:59:33 DEBUG   opendrift:702: No elements hit seafloor.
09:59:33 DEBUG   opendrift:1720: No elements to deactivate
09:59:33 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:59:33 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.109850 m/s - 0.110066 m/s)
09:59:33 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:59:33 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:59:33 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:59:33 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:59:33 DEBUG   opendrift:2095: ======================================================================
09:59:33 INFO    opendrift:2096: 2025-06-21 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
09:59:33 DEBUG   opendrift:2102: 0 elements scheduled.
09:59:33 DEBUG   opendrift:2104: ======================================================================
09:59:33 DEBUG   opendrift:2115:                60.00167861517525 <- latitude -> 60.007796137737905
09:59:33 DEBUG   opendrift:2115:                4.391752911519761 <- longitude -> 4.40539538749518
09:59:33 DEBUG   opendrift:2113:                z = 0.0
09:59:33 DEBUG   opendrift:2116: ---------------------------------
09:59:33 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:59:33 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:59:33 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:59:33 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:59:33 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:59:33 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:59:33 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:59:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 16:00:00 (before)
                2025-06-21 17:00:00 (after)
09:59:46 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
09:59:46 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
09:59:46 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
09:59:46 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
09:59:46 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
09:59:46 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
09:59:46 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 16:00:00)
09:59:46 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 16:00:00) in space  (linearNDFast)
09:59:46 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
09:59:46 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
09:59:46 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.60825802039618 and -65.5946155439906 degrees.
09:59:46 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.60825802039618 and -65.5946155439906 degrees.
09:59:46 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:59:46 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:59:46 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
09:59:46 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:59:46 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
09:59:46 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:59:46 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:59:46 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
09:59:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:59:46 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
09:59:46 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
09:59:46 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
09:59:46 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
09:59:46 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
09:59:46 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:59:46 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.307328 (min) -0.260899 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.381122 (min) 0.400786 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.321813 (min) -0.319721 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.35284 (min) -1.28983 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.5021 (min) -4.46365 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.15484e-05 (min) 4.18044e-05 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.212 (min) 298.481 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
09:59:46 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
09:59:46 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.533998, mean: 0.537345, max: 0.540574
09:59:46 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
09:59:46 DEBUG   opendrift.models.physics_methods:917:    min: 3.981068, mean: 3.993521, max: 4.005503
09:59:46 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.981068, mean: 3.993521, max: 4.005503
09:59:46 DEBUG   opendrift:619: No elements hit coastline.
09:59:46 DEBUG   opendrift:702: No elements hit seafloor.
09:59:46 DEBUG   opendrift:1720: No elements to deactivate
09:59:46 DEBUG   opendrift:2150: Calling OceanDrift.update()
09:59:46 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.093182 m/s - 0.093754 m/s)
09:59:46 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
09:59:46 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
09:59:46 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
09:59:46 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
09:59:46 DEBUG   opendrift:2095: ======================================================================
09:59:46 INFO    opendrift:2096: 2025-06-21 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
09:59:46 DEBUG   opendrift:2102: 0 elements scheduled.
09:59:46 DEBUG   opendrift:2104: ======================================================================
09:59:46 DEBUG   opendrift:2115:                60.01122252808642 <- latitude -> 60.01762716822442
09:59:46 DEBUG   opendrift:2115:                4.370168008866185 <- longitude -> 4.386890669845002
09:59:46 DEBUG   opendrift:2113:                z = 0.0
09:59:46 DEBUG   opendrift:2116: ---------------------------------
09:59:46 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
09:59:46 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:59:46 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
09:59:46 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
09:59:46 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
09:59:46 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
09:59:46 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:59:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 17:00:00 (before)
                2025-06-21 18:00:00 (after)
10:00:00 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:00:00 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:00:00 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:00:00 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:00:00 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:00:00 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:00:00 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 17:00:00)
10:00:00 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 17:00:00) in space  (linearNDFast)
10:00:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:00:00 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:00:00 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.62984291619807 and -65.6131202600059 degrees.
10:00:00 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.62984291619807 and -65.6131202600059 degrees.
10:00:00 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:00:00 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:00:00 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:00:00 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:00:00 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:00:00 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:00:00 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:00:00 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:00:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:00:00 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:00:00 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:00:00 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:00:00 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:00:00 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:00:00 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:00:00 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.229563 (min) -0.180853 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.41967 (min) 0.4598 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.180401 (min) -0.177849 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.594336 (min) -0.528388 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -3.63629 (min) -3.59416 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.71524e-05 (min) 3.73529e-05 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.652 (min) 298.81 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:00:00 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:00:00 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.326034, mean: 0.329123, max: 0.332576
10:00:00 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:00:00 DEBUG   opendrift.models.physics_methods:917:    min: 3.110720, mean: 3.125419, max: 3.141773
10:00:00 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.110720, mean: 3.125419, max: 3.141773
10:00:00 DEBUG   opendrift:619: No elements hit coastline.
10:00:00 DEBUG   opendrift:702: No elements hit seafloor.
10:00:00 DEBUG   opendrift:1720: No elements to deactivate
10:00:00 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:00:00 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.072810 m/s - 0.073537 m/s)
10:00:00 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:00:00 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:00:00 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:00:00 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:00:00 DEBUG   opendrift:2095: ======================================================================
10:00:00 INFO    opendrift:2096: 2025-06-21 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
10:00:00 DEBUG   opendrift:2102: 0 elements scheduled.
10:00:00 DEBUG   opendrift:2104: ======================================================================
10:00:00 DEBUG   opendrift:2115:                60.0227437602981 <- latitude -> 60.02956309502488
10:00:00 DEBUG   opendrift:2115:                4.354718537645065 <- longitude -> 4.374531446831335
10:00:00 DEBUG   opendrift:2113:                z = 0.0
10:00:00 DEBUG   opendrift:2116: ---------------------------------
10:00:00 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:00:00 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:00:00 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:00:00 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:00:00 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:00:00 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:00:00 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:00:00 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 18:00:00 (before)
                2025-06-21 19:00:00 (after)
10:00:15 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:00:15 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:00:15 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:00:15 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:00:15 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:00:15 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:00:15 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 18:00:00)
10:00:15 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 18:00:00) in space  (linearNDFast)
10:00:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:00:15 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:00:15 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.64529239079604 and -65.6254794874264 degrees.
10:00:15 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.64529239079604 and -65.6254794874264 degrees.
10:00:15 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:00:15 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:00:15 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:00:15 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:00:15 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:00:15 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:00:15 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:00:15 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:00:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:00:15 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:00:15 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:00:15 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:00:15 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:00:15 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:00:15 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:00:15 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.115358 (min) -0.0783238 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.392599 (min) 0.445743 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0723991 (min) -0.0700467 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.512133 (min) -0.431467 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -2.98816 (min) -2.97891 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.27559e-05 (min) 2.31387e-05 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.446 (min) 298.714 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:00:15 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:00:15 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.224232, mean: 0.224450, max: 0.224750
10:00:15 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:00:15 DEBUG   opendrift.models.physics_methods:917:    min: 2.579753, mean: 2.581010, max: 2.582730
10:00:15 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 2.579753, mean: 2.581010, max: 2.582730
10:00:15 DEBUG   opendrift:619: No elements hit coastline.
10:00:15 DEBUG   opendrift:702: No elements hit seafloor.
10:00:15 DEBUG   opendrift:1720: No elements to deactivate
10:00:15 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:00:15 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.060382 m/s - 0.060452 m/s)
10:00:15 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:00:15 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:00:15 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:00:15 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:00:15 DEBUG   opendrift:2095: ======================================================================
10:00:15 INFO    opendrift:2096: 2025-06-21 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
10:00:15 DEBUG   opendrift:2102: 0 elements scheduled.
10:00:15 DEBUG   opendrift:2104: ======================================================================
10:00:15 DEBUG   opendrift:2115:                60.033753224163796 <- latitude -> 60.041552244057854
10:00:15 DEBUG   opendrift:2115:                4.346720179647602 <- longitude -> 4.368915504771072
10:00:15 DEBUG   opendrift:2113:                z = 0.0
10:00:15 DEBUG   opendrift:2116: ---------------------------------
10:00:15 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:00:15 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:00:15 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:00:15 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:00:15 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:00:15 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:00:15 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:00:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 19:00:00 (before)
                2025-06-21 20:00:00 (after)
10:00:28 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:00:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:00:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:00:28 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:00:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:00:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:00:28 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 19:00:00)
10:00:28 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 19:00:00) in space  (linearNDFast)
10:00:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:00:28 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:00:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.6532907384788 and -65.63109542134795 degrees.
10:00:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.6532907384788 and -65.63109542134795 degrees.
10:00:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:00:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:00:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:00:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:00:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:00:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:00:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:00:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:00:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:00:28 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:00:28 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:00:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:00:28 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:00:28 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:00:28 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:00:28 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0152737 (min) 0.0193682 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.317881 (min) 0.347518 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0303417 (min) -0.0283396 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -2.80733 (min) -2.71988 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -3.04942 (min) -3.03749 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.24946e-06 (min) -1.40221e-06 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.488 (min) 298.259 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:00:28 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:00:28 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.410739, mean: 0.415570, max: 0.420905
10:00:28 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:00:28 DEBUG   opendrift.models.physics_methods:917:    min: 3.491503, mean: 3.511968, max: 3.534449
10:00:28 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.491503, mean: 3.511968, max: 3.534449
10:00:28 DEBUG   opendrift:619: No elements hit coastline.
10:00:28 DEBUG   opendrift:702: No elements hit seafloor.
10:00:28 DEBUG   opendrift:1720: No elements to deactivate
10:00:28 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:00:28 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081723 m/s - 0.082728 m/s)
10:00:28 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:00:28 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:00:28 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:00:28 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:00:28 DEBUG   opendrift:2095: ======================================================================
10:00:28 INFO    opendrift:2096: 2025-06-21 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
10:00:28 DEBUG   opendrift:2102: 0 elements scheduled.
10:00:28 DEBUG   opendrift:2104: ======================================================================
10:00:28 DEBUG   opendrift:2115:                60.04236334998423 <- latitude -> 60.05020352127805
10:00:28 DEBUG   opendrift:2115:                4.3421130743931755 <- longitude -> 4.3666527169642215
10:00:28 DEBUG   opendrift:2113:                z = 0.0
10:00:28 DEBUG   opendrift:2116: ---------------------------------
10:00:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:00:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:00:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:00:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:00:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:00:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:00:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:00:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 20:00:00 (before)
                2025-06-21 21:00:00 (after)
10:00:47 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:00:47 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:00:47 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:00:47 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:00:47 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:00:47 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:00:47 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-21 20:00:00)
10:00:47 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 20:00:00) in space  (linearNDFast)
10:00:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:00:47 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:00:47 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.65789784392592 and -65.63335819944709 degrees.
10:00:47 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.65789784392592 and -65.63335819944709 degrees.
10:00:47 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:00:47 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:00:47 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:00:47 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:00:47 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:00:47 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:00:47 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:00:47 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:00:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:00:47 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:00:47 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:00:47 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:00:47 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:00:47 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:00:47 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:00:47 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0307385 (min) 0.0523886 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.126143 (min) 0.195118 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0925936 (min) -0.0900879 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.44804 (min) -3.42997 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -1.69426 (min) -1.64776 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -3.00194e-05 (min) -2.9285e-05 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.513 (min) 297.619 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:00:47 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:00:47 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.358837, mean: 0.359263, max: 0.360256
10:00:47 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:00:47 DEBUG   opendrift.models.physics_methods:917:    min: 3.263458, mean: 3.265393, max: 3.269904
10:00:47 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.263458, mean: 3.265393, max: 3.269904
10:00:47 DEBUG   opendrift:619: No elements hit coastline.
10:00:47 DEBUG   opendrift:702: No elements hit seafloor.
10:00:47 DEBUG   opendrift:1720: No elements to deactivate
10:00:47 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:00:47 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.076385 m/s - 0.076536 m/s)
10:00:47 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:00:47 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:00:47 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:00:47 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:00:47 DEBUG   opendrift:2095: ======================================================================
10:00:47 INFO    opendrift:2096: 2025-06-21 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
10:00:47 DEBUG   opendrift:2102: 0 elements scheduled.
10:00:47 DEBUG   opendrift:2104: ======================================================================
10:00:47 DEBUG   opendrift:2115:                60.04736530690599 <- latitude -> 60.053298802674625
10:00:47 DEBUG   opendrift:2115:                4.339644238802732 <- longitude -> 4.36560371822677
10:00:47 DEBUG   opendrift:2113:                z = 0.0
10:00:47 DEBUG   opendrift:2116: ---------------------------------
10:00:47 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:00:47 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:00:47 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:00:47 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:00:47 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:00:47 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:00:47 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:00:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 21:00:00 (before)
                2025-06-21 22:00:00 (after)
10:01:06 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:01:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:01:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:01:06 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:01:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:01:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:01:06 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x24x7) for time before (2025-06-21 21:00:00)
10:01:06 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 21:00:00) in space  (linearNDFast)
10:01:06 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:01:06 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:01:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.66036667713087 and -65.63440720056197 degrees.
10:01:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.66036667713087 and -65.63440720056197 degrees.
10:01:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:01:06 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:01:06 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:01:06 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:01:06 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:01:06 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:01:06 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:01:06 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:01:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:01:06 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:01:06 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:01:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:01:06 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:01:06 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:01:06 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:01:06 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0189453 (min) -0.0137745 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0432317 (min) 0.037728 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.242677 (min) -0.240994 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.37992 (min) -4.30254 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -1.01126 (min) -0.956124 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.27412e-05 (min) -5.23048e-05 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.124 (min) 297.164 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:01:06 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:01:06 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.480548, mean: 0.486999, max: 0.494407
10:01:06 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:01:06 DEBUG   opendrift.models.physics_methods:917:    min: 3.776573, mean: 3.801829, max: 3.830645
10:01:06 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.776573, mean: 3.801829, max: 3.830645
10:01:06 DEBUG   opendrift:619: No elements hit coastline.
10:01:06 DEBUG   opendrift:702: No elements hit seafloor.
10:01:06 DEBUG   opendrift:1720: No elements to deactivate
10:01:06 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:01:06 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.088396 m/s - 0.089661 m/s)
10:01:06 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:01:06 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:01:06 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:01:06 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:01:06 DEBUG   opendrift:2095: ======================================================================
10:01:06 INFO    opendrift:2096: 2025-06-21 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
10:01:06 DEBUG   opendrift:2102: 0 elements scheduled.
10:01:06 DEBUG   opendrift:2104: ======================================================================
10:01:06 DEBUG   opendrift:2115:                60.04792549477244 <- latitude -> 60.05177805361102
10:01:06 DEBUG   opendrift:2115:                4.332989874500216 <- longitude -> 4.359154031037653
10:01:06 DEBUG   opendrift:2113:                z = 0.0
10:01:06 DEBUG   opendrift:2116: ---------------------------------
10:01:06 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:01:06 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:01:06 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:01:06 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:01:06 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:01:06 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:01:06 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:01:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 22:00:00 (before)
                2025-06-21 23:00:00 (after)
10:01:27 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:01:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:01:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:01:27 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:01:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:01:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:01:27 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x24x7) for time before (2025-06-21 22:00:00)
10:01:27 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 22:00:00) in space  (linearNDFast)
10:01:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:01:27 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:01:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.66702104557473 and -65.6408568898025 degrees.
10:01:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.66702104557473 and -65.6408568898025 degrees.
10:01:27 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:01:27 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:01:27 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:01:27 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:01:27 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:01:27 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:01:27 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:01:27 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:01:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:01:27 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:01:27 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:01:27 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:01:27 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:01:27 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:01:27 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:01:27 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0988488 (min) -0.0904559 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.116159 (min) -0.0257781 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.445257 (min) -0.444188 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.0678 (min) -4.01006 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.13163 (min) 1.14915 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.61542e-05 (min) -5.60116e-05 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.237 (min) 297.008 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:01:27 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:01:27 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.428067, mean: 0.432515, max: 0.438606
10:01:27 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:01:27 DEBUG   opendrift.models.physics_methods:917:    min: 3.564392, mean: 3.582858, max: 3.608002
10:01:27 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.564392, mean: 3.582858, max: 3.608002
10:01:27 DEBUG   opendrift:619: No elements hit coastline.
10:01:27 DEBUG   opendrift:702: No elements hit seafloor.
10:01:27 DEBUG   opendrift:1720: No elements to deactivate
10:01:27 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:01:27 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.083429 m/s - 0.084450 m/s)
10:01:27 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:01:27 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:01:27 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:01:27 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:01:27 DEBUG   opendrift:2095: ======================================================================
10:01:27 INFO    opendrift:2096: 2025-06-21 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
10:01:27 DEBUG   opendrift:2102: 0 elements scheduled.
10:01:27 DEBUG   opendrift:2104: ======================================================================
10:01:27 DEBUG   opendrift:2115:                60.04698784625578 <- latitude -> 60.049672316536146
10:01:27 DEBUG   opendrift:2115:                4.32188930870413 <- longitude -> 4.347964722517928
10:01:27 DEBUG   opendrift:2113:                z = 0.0
10:01:27 DEBUG   opendrift:2116: ---------------------------------
10:01:27 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:01:27 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:01:27 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:01:27 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:01:27 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:01:27 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:01:27 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:01:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 23:00:00 (before)
                2025-06-22 00:00:00 (after)
10:01:46 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:01:46 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:01:46 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:01:46 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:01:46 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:01:46 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:01:46 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-21 23:00:00)
10:01:46 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 23:00:00) in space  (linearNDFast)
10:01:46 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:01:46 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:01:46 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.67812160457122 and -65.65204620240314 degrees.
10:01:46 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.67812160457122 and -65.65204620240314 degrees.
10:01:46 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:01:46 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:01:46 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:01:46 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:01:46 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:01:46 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:01:46 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:01:46 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:01:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:01:46 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:01:46 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:01:46 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:01:46 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:01:46 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:01:46 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:01:46 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.15764 (min) -0.147407 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.140376 (min) -0.0548623 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.615787 (min) -0.614902 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.24612 (min) -3.14832 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 2.45991 (min) 2.49468 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -3.53779e-05 (min) -3.53445e-05 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.334 (min) 296.851 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:01:46 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:01:46 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.392692, mean: 0.398965, max: 0.412314
10:01:46 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:01:46 DEBUG   opendrift.models.physics_methods:917:    min: 3.413939, mean: 3.441067, max: 3.498194
10:01:46 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.413939, mean: 3.441067, max: 3.498194
10:01:46 DEBUG   opendrift:619: No elements hit coastline.
10:01:46 DEBUG   opendrift:702: No elements hit seafloor.
10:01:46 DEBUG   opendrift:1720: No elements to deactivate
10:01:46 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:01:46 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.079908 m/s - 0.081880 m/s)
10:01:46 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:01:46 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:01:46 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:01:46 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:01:46 DEBUG   opendrift:2095: ======================================================================
10:01:46 INFO    opendrift:2096: 2025-06-22 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
10:01:46 DEBUG   opendrift:2102: 0 elements scheduled.
10:01:46 DEBUG   opendrift:2104: ======================================================================
10:01:46 DEBUG   opendrift:2115:                60.04452088658136 <- latitude -> 60.04854091882548
10:01:46 DEBUG   opendrift:2115:                4.3080557297213256 <- longitude -> 4.334115045008346
10:01:46 DEBUG   opendrift:2113:                z = 0.0
10:01:46 DEBUG   opendrift:2116: ---------------------------------
10:01:46 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:01:46 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:01:46 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:01:46 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:01:46 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:01:46 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:01:46 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:01:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 00:00:00 (before)
                2025-06-22 01:00:00 (after)
10:02:06 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:02:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:02:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:02:06 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:02:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:02:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:02:06 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-22 00:00:00)
10:02:06 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 00:00:00) in space  (linearNDFast)
10:02:06 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:02:06 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:02:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.69195519697406 and -65.66589587387705 degrees.
10:02:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.69195519697406 and -65.66589587387705 degrees.
10:02:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:02:06 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:02:06 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:02:06 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:02:06 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:02:06 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:02:06 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:02:06 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:02:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:02:06 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:02:06 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:02:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:02:06 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:02:06 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:02:06 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:02:06 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.20384 (min) -0.187735 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.110202 (min) -0.0534753 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.693289 (min) -0.692682 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.16145 (min) -3.11546 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.69919 (min) 1.81025 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -6.91032e-08 (min) -1.86443e-08 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.305 (min) 296.647 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:02:06 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:02:06 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.316735, mean: 0.318314, max: 0.319821
10:02:06 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:02:06 DEBUG   opendrift.models.physics_methods:917:    min: 3.066039, mean: 3.073672, max: 3.080937
10:02:06 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.066039, mean: 3.073672, max: 3.080937
10:02:06 DEBUG   opendrift:619: No elements hit coastline.
10:02:06 DEBUG   opendrift:702: No elements hit seafloor.
10:02:06 DEBUG   opendrift:1720: No elements to deactivate
10:02:06 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:02:06 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.071765 m/s - 0.072113 m/s)
10:02:06 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:02:06 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:02:06 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:02:06 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:02:06 DEBUG   opendrift:2095: ======================================================================
10:02:06 INFO    opendrift:2096: 2025-06-22 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
10:02:06 DEBUG   opendrift:2102: 0 elements scheduled.
10:02:06 DEBUG   opendrift:2104: ======================================================================
10:02:06 DEBUG   opendrift:2115:                60.04217824076636 <- latitude -> 60.04761799495587
10:02:06 DEBUG   opendrift:2115:                4.291021929860193 <- longitude -> 4.3177791000769785
10:02:06 DEBUG   opendrift:2113:                z = 0.0
10:02:06 DEBUG   opendrift:2116: ---------------------------------
10:02:06 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:02:06 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:02:06 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:02:06 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:02:06 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:02:06 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:02:06 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:02:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 01:00:00 (before)
                2025-06-22 02:00:00 (after)
10:02:27 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:02:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:02:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:02:27 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:02:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:02:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:02:27 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x7) for time before (2025-06-22 01:00:00)
10:02:27 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 01:00:00) in space  (linearNDFast)
10:02:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:02:27 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:02:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.70898900584115 and -65.68223183023692 degrees.
10:02:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.70898900584115 and -65.68223183023692 degrees.
10:02:27 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:02:27 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:02:27 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:02:27 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:02:27 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:02:27 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:02:27 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:02:27 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:02:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:02:27 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:02:27 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:02:27 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:02:27 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:02:27 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:02:27 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:02:27 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.249676 (min) -0.226453 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0543799 (min) -0.0212887 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.668943 (min) -0.667831 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.39058 (min) -4.36352 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 3.48906 (min) 3.53203 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.82743e-05 (min) 1.89392e-05 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.184 (min) 296.521 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:02:27 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:02:27 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.767861, mean: 0.775979, max: 0.780071
10:02:27 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:02:27 DEBUG   opendrift.models.physics_methods:917:    min: 4.773875, mean: 4.799038, max: 4.811680
10:02:27 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.773875, mean: 4.799038, max: 4.811680
10:02:27 DEBUG   opendrift:619: No elements hit coastline.
10:02:27 DEBUG   opendrift:702: No elements hit seafloor.
10:02:27 DEBUG   opendrift:1720: No elements to deactivate
10:02:27 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:02:27 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.111739 m/s - 0.112624 m/s)
10:02:27 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:02:27 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:02:27 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:02:27 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:02:27 DEBUG   opendrift:2095: ======================================================================
10:02:27 INFO    opendrift:2096: 2025-06-22 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
10:02:27 DEBUG   opendrift:2102: 0 elements scheduled.
10:02:27 DEBUG   opendrift:2104: ======================================================================
10:02:27 DEBUG   opendrift:2115:                60.04270247470322 <- latitude -> 60.049114046076554
10:02:27 DEBUG   opendrift:2115:                4.269237244581543 <- longitude -> 4.297417298429649
10:02:27 DEBUG   opendrift:2113:                z = 0.0
10:02:27 DEBUG   opendrift:2116: ---------------------------------
10:02:27 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:02:27 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:02:27 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:02:27 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:02:27 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:02:27 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:02:27 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:02:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 02:00:00 (before)
                2025-06-22 03:00:00 (after)
10:02:48 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:02:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:02:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:02:48 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:02:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:02:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:02:48 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-22 02:00:00)
10:02:48 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 02:00:00) in space  (linearNDFast)
10:02:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:02:48 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:02:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.73077368087283 and -65.70259362420978 degrees.
10:02:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.73077368087283 and -65.70259362420978 degrees.
10:02:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:02:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:02:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:02:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:02:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:02:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:02:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:02:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:02:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:02:48 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:02:48 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:02:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:02:48 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:02:48 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:02:48 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:02:48 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.285949 (min) -0.254239 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0292902 (min) 0.0431282 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.58059 (min) -0.578427 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.34242 (min) -3.32272 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.36112 (min) 5.40172 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.13546e-05 (min) 3.14944e-05 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 295.698 (min) 296.09 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:02:48 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:02:48 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.978640, mean: 0.985883, max: 0.991137
10:02:48 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:02:48 DEBUG   opendrift.models.physics_methods:917:    min: 5.389408, mean: 5.409312, max: 5.423711
10:02:48 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.389408, mean: 5.409312, max: 5.423711
10:02:48 DEBUG   opendrift:619: No elements hit coastline.
10:02:48 DEBUG   opendrift:702: No elements hit seafloor.
10:02:48 DEBUG   opendrift:1720: No elements to deactivate
10:02:48 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:02:48 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.126146 m/s - 0.126949 m/s)
10:02:48 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:02:48 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:02:48 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:02:48 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:02:48 DEBUG   opendrift:2095: ======================================================================
10:02:48 INFO    opendrift:2096: 2025-06-22 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
10:02:48 DEBUG   opendrift:2102: 0 elements scheduled.
10:02:48 DEBUG   opendrift:2104: ======================================================================
10:02:48 DEBUG   opendrift:2115:                60.047220714242776 <- latitude -> 60.05398561718794
10:02:48 DEBUG   opendrift:2115:                4.246470987301442 <- longitude -> 4.2765607057196435
10:02:48 DEBUG   opendrift:2113:                z = 0.0
10:02:48 DEBUG   opendrift:2116: ---------------------------------
10:02:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:02:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:02:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:02:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:02:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:02:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:02:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:02:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 03:00:00 (before)
                2025-06-22 04:00:00 (after)
10:03:03 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:03:03 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:03:03 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:03:03 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:03:03 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:03:03 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:03:03 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-22 03:00:00)
10:03:03 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 03:00:00) in space  (linearNDFast)
10:03:03 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:03:03 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:03:03 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.7535399398101 and -65.72345022078444 degrees.
10:03:03 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.7535399398101 and -65.72345022078444 degrees.
10:03:03 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:03:03 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:03:03 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:03:03 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:03:03 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:03:03 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:03:03 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:03:03 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:03:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:03:03 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:03:03 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:03:03 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:03:03 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:03:03 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:03:03 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:03:03 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.29007 (min) -0.260288 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.133094 (min) 0.146158 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.446308 (min) -0.443408 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.27609 (min) -3.17395 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 6.21733 (min) 6.2474 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.72004e-05 (min) 4.7981e-05 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 294.862 (min) 295.297 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:03:03 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:03:03 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.207651, mean: 1.210506, max: 1.214942
10:03:03 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:03:03 DEBUG   opendrift.models.physics_methods:917:    min: 5.986878, mean: 5.993949, max: 6.004922
10:03:03 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.986878, mean: 5.993949, max: 6.004922
10:03:03 DEBUG   opendrift:619: No elements hit coastline.
10:03:03 DEBUG   opendrift:702: No elements hit seafloor.
10:03:03 DEBUG   opendrift:1720: No elements to deactivate
10:03:03 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:03:03 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.140131 m/s - 0.140553 m/s)
10:03:03 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:03:03 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:03:03 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:03:03 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:03:03 DEBUG   opendrift:2095: ======================================================================
10:03:03 INFO    opendrift:2096: 2025-06-22 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
10:03:03 DEBUG   opendrift:2102: 0 elements scheduled.
10:03:03 DEBUG   opendrift:2104: ======================================================================
10:03:03 DEBUG   opendrift:2115:                60.0558636931583 <- latitude -> 60.062480198322326
10:03:03 DEBUG   opendrift:2115:                4.223493068038971 <- longitude -> 4.255483127577477
10:03:03 DEBUG   opendrift:2113:                z = 0.0
10:03:03 DEBUG   opendrift:2116: ---------------------------------
10:03:03 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:03:03 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:03:03 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:03:03 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:03:03 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:03:03 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:03:03 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:03:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 04:00:00 (before)
                2025-06-22 05:00:00 (after)
10:03:18 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:03:18 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:03:18 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:03:18 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:03:18 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:03:18 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:03:18 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x7) for time before (2025-06-22 04:00:00)
10:03:18 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 04:00:00) in space  (linearNDFast)
10:03:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:03:18 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:03:18 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.77651785831287 and -65.74452778557158 degrees.
10:03:18 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.77651785831287 and -65.74452778557158 degrees.
10:03:18 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:03:18 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:03:18 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:03:18 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:03:18 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:03:18 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:03:18 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:03:18 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:03:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:03:18 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:03:18 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:03:18 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:03:18 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:03:18 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:03:18 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:03:18 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.274442 (min) -0.255581 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.233223 (min) 0.247356 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.2918 (min) -0.28743 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -5.3644 (min) -5.22584 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 8.36774 (min) 8.57469 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.12585e-05 (min) 4.15733e-05 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 293.781 (min) 294.208 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:03:18 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:03:18 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.428321, mean: 2.454485, max: 2.482826
10:03:18 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:03:18 DEBUG   opendrift.models.physics_methods:917:    min: 8.489511, mean: 8.535105, max: 8.584257
10:03:18 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 8.489511, mean: 8.535105, max: 8.584257
10:03:18 DEBUG   opendrift:619: No elements hit coastline.
10:03:18 DEBUG   opendrift:702: No elements hit seafloor.
10:03:19 DEBUG   opendrift:1720: No elements to deactivate
10:03:19 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:03:19 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.198708 m/s - 0.200926 m/s)
10:03:19 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:03:19 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:03:19 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:03:19 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:03:19 DEBUG   opendrift:2095: ======================================================================
10:03:19 INFO    opendrift:2096: 2025-06-22 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
10:03:19 DEBUG   opendrift:2102: 0 elements scheduled.
10:03:19 DEBUG   opendrift:2104: ======================================================================
10:03:19 DEBUG   opendrift:2115:                60.06912136013979 <- latitude -> 60.0756717009487
10:03:19 DEBUG   opendrift:2115:                4.1988829820720674 <- longitude -> 4.231983163511328
10:03:19 DEBUG   opendrift:2113:                z = 0.0
10:03:19 DEBUG   opendrift:2116: ---------------------------------
10:03:19 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:03:19 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:03:19 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:03:19 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:03:19 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:03:19 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:03:19 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:03:19 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 05:00:00 (before)
                2025-06-22 06:00:00 (after)
10:03:33 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:03:33 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:03:33 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:03:33 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:03:33 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:03:33 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:03:33 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-06-22 05:00:00)
10:03:33 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 05:00:00) in space  (linearNDFast)
10:03:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:03:33 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:03:33 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8011279392064 and -65.76802775706109 degrees.
10:03:33 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8011279392064 and -65.76802775706109 degrees.
10:03:33 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:03:33 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:03:33 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:03:33 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:03:33 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:03:33 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:03:33 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:03:33 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:03:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:03:33 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:03:33 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:03:33 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:03:33 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:03:33 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:03:33 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:03:33 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.225875 (min) -0.21665 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.298928 (min) 0.325155 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.138207 (min) -0.13418 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.52843 (min) -4.46981 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 9.59286 (min) 9.65245 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.00829e-05 (min) 4.02131e-05 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 292.623 (min) 293.072 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:03:33 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:03:33 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.768228, mean: 2.775857, max: 2.783465
10:03:33 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:03:33 DEBUG   opendrift.models.physics_methods:917:    min: 9.064221, mean: 9.076702, max: 9.089133
10:03:33 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.064221, mean: 9.076702, max: 9.089133
10:03:33 DEBUG   opendrift:619: No elements hit coastline.
10:03:33 DEBUG   opendrift:702: No elements hit seafloor.
10:03:33 DEBUG   opendrift:1720: No elements to deactivate
10:03:33 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:03:33 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.212160 m/s - 0.212743 m/s)
10:03:33 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:03:33 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:03:33 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:03:33 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:03:33 DEBUG   opendrift:2095: ======================================================================
10:03:33 INFO    opendrift:2096: 2025-06-22 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
10:03:33 DEBUG   opendrift:2102: 0 elements scheduled.
10:03:33 DEBUG   opendrift:2104: ======================================================================
10:03:33 DEBUG   opendrift:2115:                60.085690038725254 <- latitude -> 60.091638176644096
10:03:33 DEBUG   opendrift:2115:                4.179057537522594 <- longitude -> 4.211816119221772
10:03:33 DEBUG   opendrift:2113:                z = 0.0
10:03:33 DEBUG   opendrift:2116: ---------------------------------
10:03:33 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:03:33 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:03:33 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:03:33 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:03:33 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:03:33 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:03:33 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:03:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 06:00:00 (before)
                2025-06-22 07:00:00 (after)
10:03:47 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:03:47 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:03:47 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:03:47 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:03:47 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:03:47 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:03:47 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-22 06:00:00)
10:03:47 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 06:00:00) in space  (linearNDFast)
10:03:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:03:47 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:03:47 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.82095339533697 and -65.78819480681227 degrees.
10:03:47 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.82095339533697 and -65.78819480681227 degrees.
10:03:47 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:03:47 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:03:47 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:03:47 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:03:47 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:03:47 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:03:47 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:03:47 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:03:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:03:47 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:03:47 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:03:47 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:03:47 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:03:47 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:03:47 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:03:47 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.135576 (min) -0.123654 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.336392 (min) 0.358278 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.00252322 (min) 0.0012908 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.56925 (min) -4.19245 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.4628 (min) 10.8582 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.73522e-05 (min) 2.79731e-05 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 291.945 (min) 292.541 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:03:47 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:03:47 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.206531, mean: 3.278901, max: 3.338097
10:03:47 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:03:47 DEBUG   opendrift.models.physics_methods:917:    min: 9.755449, mean: 9.864855, max: 9.953575
10:03:47 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.755449, mean: 9.864855, max: 9.953575
10:03:47 DEBUG   opendrift:619: No elements hit coastline.
10:03:47 DEBUG   opendrift:702: No elements hit seafloor.
10:03:47 DEBUG   opendrift:1720: No elements to deactivate
10:03:47 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:03:47 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.228339 m/s - 0.232976 m/s)
10:03:47 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:03:47 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:03:47 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:03:47 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:03:47 DEBUG   opendrift:2095: ======================================================================
10:03:47 INFO    opendrift:2096: 2025-06-22 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
10:03:47 DEBUG   opendrift:2102: 0 elements scheduled.
10:03:47 DEBUG   opendrift:2104: ======================================================================
10:03:47 DEBUG   opendrift:2115:                60.104194542911024 <- latitude -> 60.10934990763978
10:03:47 DEBUG   opendrift:2115:                4.165513128722829 <- longitude -> 4.19720340972168
10:03:47 DEBUG   opendrift:2113:                z = 0.0
10:03:47 DEBUG   opendrift:2116: ---------------------------------
10:03:47 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:03:47 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:03:47 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:03:47 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:03:47 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:03:47 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:03:47 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:03:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 07:00:00 (before)
                2025-06-22 08:00:00 (after)
10:04:02 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:04:02 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:04:02 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:04:02 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:04:02 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:04:02 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:04:02 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-22 07:00:00)
10:04:02 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 07:00:00) in space  (linearNDFast)
10:04:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:04:02 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:04:02 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.83449779646475 and -65.80280750185783 degrees.
10:04:02 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.83449779646475 and -65.80280750185783 degrees.
10:04:02 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:04:02 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:04:02 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:04:02 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:04:02 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:04:02 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:04:02 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:04:02 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:04:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:04:02 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:04:02 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:04:02 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:04:02 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:04:02 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:04:02 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:04:02 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0154404 (min) 0.0112217 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.308776 (min) 0.318352 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0660313 (min) 0.0672504 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.78343 (min) -3.74744 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 9.82483 (min) 9.96923 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 8.20093e-06 (min) 8.74547e-06 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 291.926 (min) 292.777 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:04:02 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:04:02 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.720903, mean: 2.744997, max: 2.790352
10:04:02 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:04:02 DEBUG   opendrift.models.physics_methods:917:    min: 8.986408, mean: 9.026089, max: 9.100369
10:04:02 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 8.986408, mean: 9.026089, max: 9.100369
10:04:02 DEBUG   opendrift:619: No elements hit coastline.
10:04:02 DEBUG   opendrift:702: No elements hit seafloor.
10:04:02 DEBUG   opendrift:1720: No elements to deactivate
10:04:02 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:04:02 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.210339 m/s - 0.213006 m/s)
10:04:02 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:04:02 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:04:02 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:04:02 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:04:02 DEBUG   opendrift:2095: ======================================================================
10:04:02 INFO    opendrift:2096: 2025-06-22 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
10:04:02 DEBUG   opendrift:2102: 0 elements scheduled.
10:04:02 DEBUG   opendrift:2104: ======================================================================
10:04:02 DEBUG   opendrift:2115:                60.120812551761276 <- latitude -> 60.12575595139268
10:04:02 DEBUG   opendrift:2115:                4.159695718445831 <- longitude -> 4.192864828462122
10:04:02 DEBUG   opendrift:2113:                z = 0.0
10:04:02 DEBUG   opendrift:2116: ---------------------------------
10:04:02 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:04:02 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:04:02 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:04:02 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:04:02 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:04:02 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:04:02 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:04:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 08:00:00 (before)
                2025-06-22 09:00:00 (after)
10:04:16 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:04:16 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:04:16 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:04:16 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:04:16 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:04:16 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:04:16 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-22 08:00:00)
10:04:16 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 08:00:00) in space  (linearNDFast)
10:04:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:04:16 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:04:16 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84031520236843 and -65.80714607914749 degrees.
10:04:16 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84031520236843 and -65.80714607914749 degrees.
10:04:16 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:04:16 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:04:16 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:04:16 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:04:16 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:04:16 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:04:16 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:04:16 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:04:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:04:16 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:04:16 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:04:16 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:04:16 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:04:16 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:04:16 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:04:16 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0452949 (min) 0.117665 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.198611 (min) 0.225051 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0492691 (min) 0.0504121 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -7.72285 (min) -7.22392 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.7249 (min) 10.8959 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.25401e-05 (min) -2.23039e-05 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 292.288 (min) 293.398 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:04:16 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:04:16 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.204273, mean: 4.261020, max: 4.296781
10:04:16 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:04:16 DEBUG   opendrift.models.physics_methods:917:    min: 11.170562, mean: 11.245676, max: 11.292788
10:04:16 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 11.170562, mean: 11.245676, max: 11.292788
10:04:16 DEBUG   opendrift:619: No elements hit coastline.
10:04:16 DEBUG   opendrift:702: No elements hit seafloor.
10:04:16 DEBUG   opendrift:1720: No elements to deactivate
10:04:16 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:04:16 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.261462 m/s - 0.264322 m/s)
10:04:16 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:04:16 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:04:16 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:04:16 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:04:16 DEBUG   opendrift:2095: ======================================================================
10:04:16 INFO    opendrift:2096: 2025-06-22 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
10:04:16 DEBUG   opendrift:2102: 0 elements scheduled.
10:04:16 DEBUG   opendrift:2104: ======================================================================
10:04:16 DEBUG   opendrift:2115:                60.13511010109393 <- latitude -> 60.139125378598116
10:04:16 DEBUG   opendrift:2115:                4.153269866237358 <- longitude -> 4.190477607872204
10:04:16 DEBUG   opendrift:2113:                z = 0.0
10:04:16 DEBUG   opendrift:2116: ---------------------------------
10:04:16 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:04:16 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:04:16 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:04:16 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:04:16 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:04:16 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:04:16 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:04:16 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 09:00:00 (before)
                2025-06-22 10:00:00 (after)
10:04:36 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:04:36 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:04:36 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:04:36 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:04:36 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:04:36 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:04:36 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x7) for time before (2025-06-22 09:00:00)
10:04:36 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 09:00:00) in space  (linearNDFast)
10:04:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:04:36 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:04:36 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84674104960187 and -65.8095332997009 degrees.
10:04:36 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84674104960187 and -65.8095332997009 degrees.
10:04:36 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:04:36 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:04:36 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:04:36 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:04:36 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:04:36 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:04:36 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:04:36 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:04:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:04:36 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:04:36 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:04:36 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:04:36 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:04:36 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:04:36 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:04:36 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0518787 (min) 0.0877591 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0865482 (min) 0.114851 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0887987 (min) -0.0855177 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -9.96375 (min) -9.83761 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 8.44306 (min) 8.85641 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.49722e-05 (min) -5.41702e-05 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 292.913 (min) 294.338 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:04:36 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:04:36 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.134371, mean: 4.274735, max: 4.371696
10:04:36 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:04:36 DEBUG   opendrift.models.physics_methods:917:    min: 11.077311, mean: 11.263656, max: 11.390810
10:04:36 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 11.077311, mean: 11.263656, max: 11.390810
10:04:36 DEBUG   opendrift:619: No elements hit coastline.
10:04:36 DEBUG   opendrift:702: No elements hit seafloor.
10:04:36 DEBUG   opendrift:1720: No elements to deactivate
10:04:36 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:04:36 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.259279 m/s - 0.266617 m/s)
10:04:36 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:04:36 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:04:36 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:04:36 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:04:36 DEBUG   opendrift:2095: ======================================================================
10:04:36 INFO    opendrift:2096: 2025-06-22 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
10:04:36 DEBUG   opendrift:2102: 0 elements scheduled.
10:04:36 DEBUG   opendrift:2104: ======================================================================
10:04:36 DEBUG   opendrift:2115:                60.1444150518368 <- latitude -> 60.14747889207014
10:04:36 DEBUG   opendrift:2115:                4.143718113462712 <- longitude -> 4.183413538284496
10:04:36 DEBUG   opendrift:2113:                z = 0.0
10:04:36 DEBUG   opendrift:2116: ---------------------------------
10:04:36 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:04:36 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:04:36 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:04:36 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:04:36 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:04:36 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:04:36 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:04:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 10:00:00 (before)
                2025-06-22 11:00:00 (after)
10:04:57 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:04:57 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:04:57 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:04:57 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:04:57 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:04:57 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:04:57 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x7) for time before (2025-06-22 10:00:00)
10:04:57 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 10:00:00) in space  (linearNDFast)
10:04:57 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:04:57 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:04:57 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85629279811477 and -65.81659736917453 degrees.
10:04:57 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85629279811477 and -65.81659736917453 degrees.
10:04:57 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:04:57 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:04:57 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:04:57 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:04:57 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:04:57 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:04:57 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:04:57 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:04:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:04:57 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:04:57 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:04:57 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:04:57 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:04:57 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:04:57 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:04:57 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0164445 (min) 0.0274302 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0649701 (min) 0.102597 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.322779 (min) -0.318751 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -10.0961 (min) -9.97716 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.2744 (min) 10.5762 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -6.97528e-05 (min) -6.96486e-05 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 293.714 (min) 295.315 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:04:57 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:04:57 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 5.103784, mean: 5.152337, max: 5.200448
10:04:57 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:04:57 DEBUG   opendrift.models.physics_methods:917:    min: 12.307666, mean: 12.366056, max: 12.423670
10:04:57 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 12.307666, mean: 12.366056, max: 12.423670
10:04:57 DEBUG   opendrift:619: No elements hit coastline.
10:04:57 DEBUG   opendrift:702: No elements hit seafloor.
10:04:57 DEBUG   opendrift:1720: No elements to deactivate
10:04:57 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:04:57 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.288077 m/s - 0.290792 m/s)
10:04:57 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:04:57 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:04:57 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:04:57 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:04:57 DEBUG   opendrift:2095: ======================================================================
10:04:57 INFO    opendrift:2096: 2025-06-22 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
10:04:57 DEBUG   opendrift:2102: 0 elements scheduled.
10:04:57 DEBUG   opendrift:2104: ======================================================================
10:04:57 DEBUG   opendrift:2115:                60.15421047322748 <- latitude -> 60.15661091517468
10:04:57 DEBUG   opendrift:2115:                4.131849489359794 <- longitude -> 4.172104051190765
10:04:57 DEBUG   opendrift:2113:                z = 0.0
10:04:57 DEBUG   opendrift:2116: ---------------------------------
10:04:57 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:04:57 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:04:57 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:04:57 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:04:57 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:04:57 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:04:57 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:04:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 11:00:00 (before)
                2025-06-22 12:00:00 (after)
10:05:18 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:05:18 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:05:18 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:05:18 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:05:18 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:05:18 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:05:18 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-22 11:00:00)
10:05:18 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 11:00:00) in space  (linearNDFast)
10:05:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:05:18 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:05:18 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86816140964925 and -65.82790684766357 degrees.
10:05:18 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86816140964925 and -65.82790684766357 degrees.
10:05:18 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:05:18 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:05:18 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:05:18 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:05:18 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:05:18 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:05:18 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:05:18 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:05:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:05:18 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:05:18 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:05:18 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:05:18 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:05:18 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:05:18 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:05:18 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.00412533 (min) 0.00868669 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0852944 (min) 0.123198 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.561568 (min) -0.559046 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -7.06059 (min) -6.90922 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.6993 (min) 10.7418 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.79267e-05 (min) -5.76439e-05 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 294.851 (min) 296.515 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:05:18 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:05:18 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.012818, mean: 4.023413, max: 4.043118
10:05:18 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:05:18 DEBUG   opendrift.models.physics_methods:917:    min: 10.913255, mean: 10.927652, max: 10.954380
10:05:18 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.913255, mean: 10.927652, max: 10.954380
10:05:18 DEBUG   opendrift:619: No elements hit coastline.
10:05:18 DEBUG   opendrift:702: No elements hit seafloor.
10:05:18 DEBUG   opendrift:1720: No elements to deactivate
10:05:18 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:05:18 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.255439 m/s - 0.256402 m/s)
10:05:18 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:05:18 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:05:18 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:05:18 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:05:18 DEBUG   opendrift:2095: ======================================================================
10:05:18 INFO    opendrift:2096: 2025-06-22 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
10:05:18 DEBUG   opendrift:2102: 0 elements scheduled.
10:05:18 DEBUG   opendrift:2104: ======================================================================
10:05:18 DEBUG   opendrift:2115:                60.16474146869086 <- latitude -> 60.16702513834667
10:05:18 DEBUG   opendrift:2115:                4.123257143723825 <- longitude -> 4.163414449917349
10:05:18 DEBUG   opendrift:2113:                z = 0.0
10:05:18 DEBUG   opendrift:2116: ---------------------------------
10:05:18 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:05:18 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:05:18 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:05:18 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:05:18 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:05:18 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:05:18 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:05:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 12:00:00 (before)
                2025-06-22 13:00:00 (after)
10:05:44 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:05:44 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:05:44 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:05:44 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:05:44 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:05:44 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:05:44 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-22 12:00:00)
10:05:44 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 12:00:00) in space  (linearNDFast)
10:05:44 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:05:44 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:05:44 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87675376741785 and -65.83659645198398 degrees.
10:05:44 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87675376741785 and -65.83659645198398 degrees.
10:05:44 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:05:44 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:05:44 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:05:44 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:05:44 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:05:44 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:05:44 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:05:44 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:05:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:05:44 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:05:44 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:05:44 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:05:44 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:05:44 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:05:44 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:05:44 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.00238443 (min) 0.00235052 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.104522 (min) 0.139098 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.709 (min) -0.707 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -7.25314 (min) -7.23428 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.535 (min) 10.732 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.45422e-05 (min) -2.40955e-05 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 295.979 (min) 297.665 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:05:44 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:05:44 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.024409, mean: 4.073743, max: 4.120750
10:05:44 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:05:44 DEBUG   opendrift.models.physics_methods:917:    min: 10.929006, mean: 10.995767, max: 11.059048
10:05:44 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.929006, mean: 10.995767, max: 11.059048
10:05:44 DEBUG   opendrift:619: No elements hit coastline.
10:05:44 DEBUG   opendrift:702: No elements hit seafloor.
10:05:44 DEBUG   opendrift:1720: No elements to deactivate
10:05:44 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:05:44 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.255808 m/s - 0.258851 m/s)
10:05:44 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:05:44 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:05:44 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:05:44 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:05:44 DEBUG   opendrift:2095: ======================================================================
10:05:44 INFO    opendrift:2096: 2025-06-22 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
10:05:44 DEBUG   opendrift:2102: 0 elements scheduled.
10:05:44 DEBUG   opendrift:2104: ======================================================================
10:05:44 DEBUG   opendrift:2115:                60.17538419440477 <- latitude -> 60.17786805789197
10:05:44 DEBUG   opendrift:2115:                4.113739021334108 <- longitude -> 4.154127517925821
10:05:44 DEBUG   opendrift:2113:                z = 0.0
10:05:44 DEBUG   opendrift:2116: ---------------------------------
10:05:44 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:05:44 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:05:44 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:05:44 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:05:44 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:05:44 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:05:44 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:05:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 13:00:00 (before)
                2025-06-22 14:00:00 (after)
10:06:10 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:06:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:06:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:06:10 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:06:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:06:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:06:10 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-22 13:00:00)
10:06:10 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 13:00:00) in space  (linearNDFast)
10:06:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:06:10 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:06:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8862718705773 and -65.84588336626159 degrees.
10:06:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8862718705773 and -65.84588336626159 degrees.
10:06:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:06:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:06:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:06:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:06:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:06:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:06:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:06:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:06:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:06:10 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:06:10 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:06:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:06:10 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:06:10 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:06:10 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:06:10 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.000400129 (min) 0.0103233 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.153777 (min) 0.188121 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.752 (min) -0.751 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.72863 (min) -3.1776 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 12.9394 (min) 13.2777 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.39802e-06 (min) 1.79506e-06 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.156 (min) 298.742 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:06:10 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:06:10 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.460748, mean: 4.519823, max: 4.585281
10:06:10 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:06:10 DEBUG   opendrift.models.physics_methods:917:    min: 11.506241, mean: 11.582152, max: 11.665748
10:06:10 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 11.506241, mean: 11.582152, max: 11.665748
10:06:10 DEBUG   opendrift:619: No elements hit coastline.
10:06:10 DEBUG   opendrift:702: No elements hit seafloor.
10:06:10 DEBUG   opendrift:1720: No elements to deactivate
10:06:10 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:06:10 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.269319 m/s - 0.273052 m/s)
10:06:10 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:06:10 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:06:10 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:06:10 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:06:10 DEBUG   opendrift:2095: ======================================================================
10:06:10 INFO    opendrift:2096: 2025-06-22 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
10:06:10 DEBUG   opendrift:2102: 0 elements scheduled.
10:06:10 DEBUG   opendrift:2104: ======================================================================
10:06:10 DEBUG   opendrift:2115:                60.1887147244763 <- latitude -> 60.19231433642514
10:06:10 DEBUG   opendrift:2115:                4.109651222413394 <- longitude -> 4.149958469580917
10:06:10 DEBUG   opendrift:2113:                z = 0.0
10:06:10 DEBUG   opendrift:2116: ---------------------------------
10:06:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:06:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:06:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:06:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:06:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:06:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:06:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:06:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 14:00:00 (before)
                2025-06-22 15:00:00 (after)
10:06:28 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:06:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:06:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:06:28 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:06:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:06:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:06:28 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-22 14:00:00)
10:06:28 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 14:00:00) in space  (linearNDFast)
10:06:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:06:28 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:06:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.89035966976104 and -65.85005242791068 degrees.
10:06:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.89035966976104 and -65.85005242791068 degrees.
10:06:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:06:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:06:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:06:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:06:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:06:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:06:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:06:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:06:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:06:28 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:06:28 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:06:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:06:28 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:06:28 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:06:28 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:06:28 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0235179 (min) 0.0291791 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.193011 (min) 0.228807 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.718463 (min) -0.715724 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.195384 (min) 0.156783 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 11.8 (min) 12.098 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.94145e-05 (min) 2.00436e-05 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.113 (min) 299.553 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:06:28 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:06:28 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.426241, mean: 3.517045, max: 3.601120
10:06:28 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:06:28 DEBUG   opendrift.models.physics_methods:917:    min: 10.084132, mean: 10.216812, max: 10.338282
10:06:28 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.084132, mean: 10.216812, max: 10.338282
10:06:28 DEBUG   opendrift:619: No elements hit coastline.
10:06:28 DEBUG   opendrift:702: No elements hit seafloor.
10:06:28 DEBUG   opendrift:1720: No elements to deactivate
10:06:28 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:06:28 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.236032 m/s - 0.241981 m/s)
10:06:28 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:06:28 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:06:28 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:06:28 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:06:28 DEBUG   opendrift:2095: ======================================================================
10:06:28 INFO    opendrift:2096: 2025-06-22 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
10:06:28 DEBUG   opendrift:2102: 0 elements scheduled.
10:06:28 DEBUG   opendrift:2104: ======================================================================
10:06:28 DEBUG   opendrift:2115:                60.20257668424228 <- latitude -> 60.207480645811245
10:06:28 DEBUG   opendrift:2115:                4.111400898037441 <- longitude -> 4.151598484843801
10:06:28 DEBUG   opendrift:2113:                z = 0.0
10:06:28 DEBUG   opendrift:2116: ---------------------------------
10:06:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:06:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:06:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:06:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:06:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:06:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:06:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:06:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 15:00:00 (before)
                2025-06-22 16:00:00 (after)
10:06:43 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:06:43 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:06:43 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:06:43 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:06:43 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:06:43 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:06:43 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-22 15:00:00)
10:06:43 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 15:00:00) in space  (linearNDFast)
10:06:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:06:43 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:06:43 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.88860998558152 and -65.84841239996697 degrees.
10:06:43 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.88860998558152 and -65.84841239996697 degrees.
10:06:43 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:06:43 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:06:43 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:06:43 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:06:43 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:06:43 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:06:43 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:06:43 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:06:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:06:43 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:06:43 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:06:43 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:06:43 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:06:43 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:06:43 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:06:43 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0582664 (min) 0.0654384 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.198482 (min) 0.239148 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.59559 (min) -0.59324 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.59629 (min) 3.86403 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 11.7821 (min) 12.4318 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.2253e-05 (min) 4.23128e-05 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.49 (min) 299.807 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:06:43 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:06:43 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.733051, mean: 3.946218, max: 4.169193
10:06:43 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:06:43 DEBUG   opendrift.models.physics_methods:917:    min: 10.525955, mean: 10.821886, max: 11.123862
10:06:43 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.525955, mean: 10.821886, max: 11.123862
10:06:43 DEBUG   opendrift:619: No elements hit coastline.
10:06:43 DEBUG   opendrift:702: No elements hit seafloor.
10:06:43 DEBUG   opendrift:1720: No elements to deactivate
10:06:43 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:06:43 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.246374 m/s - 0.260369 m/s)
10:06:43 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:06:43 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:06:43 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:06:43 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:06:43 DEBUG   opendrift:2095: ======================================================================
10:06:43 INFO    opendrift:2096: 2025-06-22 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
10:06:43 DEBUG   opendrift:2102: 0 elements scheduled.
10:06:43 DEBUG   opendrift:2104: ======================================================================
10:06:43 DEBUG   opendrift:2115:                60.216603659730204 <- latitude -> 60.22317770954773
10:06:43 DEBUG   opendrift:2115:                4.120670006568431 <- longitude -> 4.160052431614256
10:06:43 DEBUG   opendrift:2113:                z = 0.0
10:06:43 DEBUG   opendrift:2116: ---------------------------------
10:06:43 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:06:43 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:06:43 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:06:43 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:06:43 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:06:43 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:06:43 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:06:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 16:00:00 (before)
                2025-06-22 17:00:00 (after)
10:06:57 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:06:57 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:06:57 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:06:57 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:06:57 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:06:57 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:06:57 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-22 16:00:00)
10:06:57 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 16:00:00) in space  (linearNDFast)
10:06:57 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:06:57 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:06:57 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87934087294826 and -65.8399584523957 degrees.
10:06:57 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87934087294826 and -65.8399584523957 degrees.
10:06:57 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:06:57 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:06:57 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:06:57 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:06:57 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:06:57 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:06:57 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:06:57 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:06:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:06:57 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:06:57 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:06:57 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:06:57 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:06:57 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:06:57 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:06:57 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0616713 (min) 0.0763368 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.186528 (min) 0.229663 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.422745 (min) -0.420357 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.77287 (min) 1.80479 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 14.09 (min) 14.1957 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.30846e-05 (min) 5.34627e-05 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.299 (min) 299.565 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:06:57 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:06:57 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.961849, mean: 4.977450, max: 5.037448
10:06:57 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:06:57 DEBUG   opendrift.models.physics_methods:917:    min: 12.135323, mean: 12.154377, max: 12.227421
10:06:57 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 12.135323, mean: 12.154377, max: 12.227421
10:06:57 DEBUG   opendrift:619: No elements hit coastline.
10:06:57 DEBUG   opendrift:702: No elements hit seafloor.
10:06:57 DEBUG   opendrift:1720: No elements to deactivate
10:06:57 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:06:57 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.284043 m/s - 0.286199 m/s)
10:06:57 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:06:57 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:06:57 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:06:57 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:06:57 DEBUG   opendrift:2095: ======================================================================
10:06:57 INFO    opendrift:2096: 2025-06-22 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
10:06:57 DEBUG   opendrift:2102: 0 elements scheduled.
10:06:57 DEBUG   opendrift:2104: ======================================================================
10:06:57 DEBUG   opendrift:2115:                60.23180416190964 <- latitude -> 60.239657722734165
10:06:57 DEBUG   opendrift:2115:                4.127944926389977 <- longitude -> 4.166403361811365
10:06:57 DEBUG   opendrift:2113:                z = 0.0
10:06:57 DEBUG   opendrift:2116: ---------------------------------
10:06:57 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:06:57 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:06:57 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:06:57 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:06:57 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:06:57 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:06:57 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:06:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 17:00:00 (before)
                2025-06-22 18:00:00 (after)
10:07:11 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:07:11 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:07:11 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:07:11 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:07:11 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:07:11 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:07:11 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x25x7) for time before (2025-06-22 17:00:00)
10:07:11 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 17:00:00) in space  (linearNDFast)
10:07:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:07:11 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:07:11 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87206594724019 and -65.83360751304181 degrees.
10:07:11 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87206594724019 and -65.83360751304181 degrees.
10:07:11 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:07:11 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:07:11 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:07:11 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:07:11 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:07:11 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:07:11 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:07:11 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:07:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:07:11 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:07:11 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:07:11 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:07:11 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:07:11 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:07:11 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:07:11 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0669945 (min) 0.078214 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.133738 (min) 0.180791 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.226831 (min) -0.226245 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.863362 (min) 1.27981 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 13.637 (min) 13.8891 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.41397e-05 (min) 5.45829e-05 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.122 (min) 299.334 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:07:11 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:07:11 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.593122, mean: 4.678144, max: 4.785783
10:07:11 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:07:11 DEBUG   opendrift.models.physics_methods:917:    min: 11.675716, mean: 11.783216, max: 11.918075
10:07:11 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 11.675716, mean: 11.783216, max: 11.918075
10:07:11 DEBUG   opendrift:619: No elements hit coastline.
10:07:11 DEBUG   opendrift:702: No elements hit seafloor.
10:07:11 DEBUG   opendrift:1720: No elements to deactivate
10:07:11 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:07:11 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.273285 m/s - 0.278958 m/s)
10:07:11 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:07:11 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:07:11 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:07:11 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:07:11 DEBUG   opendrift:2095: ======================================================================
10:07:11 INFO    opendrift:2096: 2025-06-22 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated)
10:07:11 DEBUG   opendrift:2102: 0 elements scheduled.
10:07:11 DEBUG   opendrift:2104: ======================================================================
10:07:11 DEBUG   opendrift:2115:                60.24510076738181 <- latitude -> 60.25425658662658
10:07:11 DEBUG   opendrift:2115:                4.134122968208662 <- longitude -> 4.172420334504889
10:07:11 DEBUG   opendrift:2113:                z = 0.0
10:07:11 DEBUG   opendrift:2116: ---------------------------------
10:07:11 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:07:11 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:07:11 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:07:11 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:07:11 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:07:11 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:07:11 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:07:11 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 18:00:00 (before)
                2025-06-22 19:00:00 (after)
10:07:28 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:07:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:07:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:07:28 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:07:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:07:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:07:28 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x25x7) for time before (2025-06-22 18:00:00)
10:07:28 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 18:00:00) in space  (linearNDFast)
10:07:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:07:28 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:07:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86588789495444 and -65.82759052843846 degrees.
10:07:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86588789495444 and -65.82759052843846 degrees.
10:07:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:07:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:07:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:07:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:07:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:07:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:07:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:07:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:07:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:07:28 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:07:28 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:07:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:07:28 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:07:28 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:07:28 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:07:28 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0676372 (min) 0.0755572 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.031629 (min) 0.0805822 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0381711 (min) -0.0363612 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.22839 (min) 1.28991 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 11.8607 (min) 11.958 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.83587e-05 (min) 4.90212e-05 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.001 (min) 299.299 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:07:28 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:07:28 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.497730, mean: 3.525791, max: 3.558571
10:07:28 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:07:28 DEBUG   opendrift.models.physics_methods:917:    min: 10.188792, mean: 10.229569, max: 10.277023
10:07:28 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.188792, mean: 10.229569, max: 10.277023
10:07:28 DEBUG   opendrift:619: No elements hit coastline.
10:07:28 DEBUG   opendrift:702: No elements hit seafloor.
10:07:28 DEBUG   opendrift:1720: No elements to deactivate
10:07:28 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:07:28 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.238482 m/s - 0.240547 m/s)
10:07:28 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:07:28 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:07:28 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:07:28 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:07:28 DEBUG   opendrift:2095: ======================================================================
10:07:28 INFO    opendrift:2096: 2025-06-22 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated)
10:07:28 DEBUG   opendrift:2102: 0 elements scheduled.
10:07:28 DEBUG   opendrift:2104: ======================================================================
10:07:28 DEBUG   opendrift:2115:                60.2538501902218 <- latitude -> 60.26448325175064
10:07:28 DEBUG   opendrift:2115:                4.140616504498443 <- longitude -> 4.178510419922333
10:07:28 DEBUG   opendrift:2113:                z = 0.0
10:07:28 DEBUG   opendrift:2116: ---------------------------------
10:07:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:07:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:07:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:07:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:07:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:07:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:07:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:07:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 19:00:00 (before)
                2025-06-22 20:00:00 (after)
10:07:45 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:07:45 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:07:45 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:07:45 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:07:45 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:07:45 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:07:45 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x25x7) for time before (2025-06-22 19:00:00)
10:07:45 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 19:00:00) in space  (linearNDFast)
10:07:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:07:45 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:07:45 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85939436137495 and -65.82150044936718 degrees.
10:07:45 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85939436137495 and -65.82150044936718 degrees.
10:07:45 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:07:45 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:07:45 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:07:45 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:07:45 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:07:45 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:07:45 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:07:45 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:07:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:07:45 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:07:45 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:07:45 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:07:45 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:07:45 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:07:45 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:07:45 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0294967 (min) 0.0496272 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0705019 (min) -0.0237375 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.10507 (min) 0.109059 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.840931 (min) -0.777393 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.9435 (min) 10.9533 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.55981e-05 (min) 2.60291e-05 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.918 (min) 299.37 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:07:45 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:07:45 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.961305, mean: 2.964600, max: 2.968472
10:07:45 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:07:45 DEBUG   opendrift.models.physics_methods:917:    min: 9.374997, mean: 9.380212, max: 9.386335
10:07:45 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.374997, mean: 9.380212, max: 9.386335
10:07:45 DEBUG   opendrift:619: No elements hit coastline.
10:07:45 DEBUG   opendrift:702: No elements hit seafloor.
10:07:45 DEBUG   opendrift:1720: No elements to deactivate
10:07:45 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:07:45 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.219434 m/s - 0.219699 m/s)
10:07:45 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:07:45 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:07:45 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:07:45 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:07:45 DEBUG   opendrift:2095: ======================================================================
10:07:45 INFO    opendrift:2096: 2025-06-22 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated)
10:07:45 DEBUG   opendrift:2102: 0 elements scheduled.
10:07:45 DEBUG   opendrift:2104: ======================================================================
10:07:45 DEBUG   opendrift:2115:                60.25864842419876 <- latitude -> 60.27078880789442
10:07:45 DEBUG   opendrift:2115:                4.142832616133182 <- longitude -> 4.179334393123856
10:07:45 DEBUG   opendrift:2113:                z = 0.0
10:07:45 DEBUG   opendrift:2116: ---------------------------------
10:07:45 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:07:45 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:07:45 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:07:45 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:07:45 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:07:45 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:07:45 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:07:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 20:00:00 (before)
                2025-06-22 21:00:00 (after)
10:07:58 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:07:58 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:07:58 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:07:58 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:07:58 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:07:58 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:07:58 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x25x7) for time before (2025-06-22 20:00:00)
10:07:58 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 20:00:00) in space  (linearNDFast)
10:07:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:07:58 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:07:58 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85717825663707 and -65.82067647207708 degrees.
10:07:58 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85717825663707 and -65.82067647207708 degrees.
10:07:58 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:07:58 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:07:58 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:07:58 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:07:58 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:07:58 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:07:58 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:07:58 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:07:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:07:58 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:07:58 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:07:58 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:07:58 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:07:58 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:07:58 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:07:58 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0189148 (min) 0.0149551 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.130378 (min) -0.0950913 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.137923 (min) 0.142424 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.28618 (min) -1.25202 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.6486 (min) 10.6667 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -1.03367e-05 (min) -1.01131e-05 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.997 (min) 299.51 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:07:58 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:07:58 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.830170, mean: 2.832818, max: 2.837584
10:07:58 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:07:58 DEBUG   opendrift.models.physics_methods:917:    min: 9.165072, mean: 9.169357, max: 9.177068
10:07:58 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.165072, mean: 9.169357, max: 9.177068
10:07:58 DEBUG   opendrift:619: No elements hit coastline.
10:07:58 DEBUG   opendrift:702: No elements hit seafloor.
10:07:58 DEBUG   opendrift:1720: No elements to deactivate
10:07:58 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:07:58 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.214520 m/s - 0.214801 m/s)
10:07:58 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:07:58 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:07:58 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:07:58 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:07:58 DEBUG   opendrift:2095: ======================================================================
10:07:58 INFO    opendrift:2096: 2025-06-22 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated)
10:07:58 DEBUG   opendrift:2102: 0 elements scheduled.
10:07:58 DEBUG   opendrift:2104: ======================================================================
10:07:58 DEBUG   opendrift:2115:                60.261328801512576 <- latitude -> 60.27459767403478
10:07:58 DEBUG   opendrift:2115:                4.142131976787741 <- longitude -> 4.1764748023045
10:07:58 DEBUG   opendrift:2113:                z = 0.0
10:07:58 DEBUG   opendrift:2116: ---------------------------------
10:07:58 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:07:58 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:07:58 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:07:58 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:07:58 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:07:58 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:07:58 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:07:58 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 21:00:00 (before)
                2025-06-22 22:00:00 (after)
10:08:13 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:08:13 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:08:13 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:08:13 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:08:13 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:08:13 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:08:13 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-22 21:00:00)
10:08:13 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 21:00:00) in space  (linearNDFast)
10:08:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:08:13 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:08:13 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85787888166816 and -65.82353605963625 degrees.
10:08:13 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85787888166816 and -65.82353605963625 degrees.
10:08:13 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:08:13 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:08:13 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:08:13 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:08:13 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:08:13 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:08:13 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:08:13 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:08:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:08:13 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:08:13 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:08:13 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:08:13 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:08:13 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:08:13 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:08:13 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0515001 (min) -0.0318449 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.150348 (min) -0.122676 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.030639 (min) 0.0351053 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -2.3224 (min) -2.27593 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.8102 (min) 10.8821 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -4.89609e-05 (min) -4.86575e-05 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.18 (min) 299.651 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:08:13 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:08:13 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.007449, mean: 3.021169, max: 3.040538
10:08:13 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:08:13 DEBUG   opendrift.models.physics_methods:917:    min: 9.447757, mean: 9.469278, max: 9.499588
10:08:13 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.447757, mean: 9.469278, max: 9.499588
10:08:13 DEBUG   opendrift:619: No elements hit coastline.
10:08:13 DEBUG   opendrift:702: No elements hit seafloor.
10:08:13 DEBUG   opendrift:1720: No elements to deactivate
10:08:13 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:08:13 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.221137 m/s - 0.222350 m/s)
10:08:13 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:08:13 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:08:13 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:08:13 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:08:13 DEBUG   opendrift:2095: ======================================================================
10:08:13 INFO    opendrift:2096: 2025-06-22 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated)
10:08:13 DEBUG   opendrift:2102: 0 elements scheduled.
10:08:13 DEBUG   opendrift:2104: ======================================================================
10:08:13 DEBUG   opendrift:2115:                60.26350302961204 <- latitude -> 60.27761962253685
10:08:13 DEBUG   opendrift:2115:                4.13703193803961 <- longitude -> 4.170166006430567
10:08:13 DEBUG   opendrift:2113:                z = 0.0
10:08:13 DEBUG   opendrift:2116: ---------------------------------
10:08:13 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:08:13 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:08:13 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:08:13 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:08:13 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:08:13 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:08:13 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:08:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 22:00:00 (before)
                2025-06-22 23:00:00 (after)
10:08:28 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:08:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:08:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:08:28 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:08:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:08:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:08:28 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-22 22:00:00)
10:08:28 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 22:00:00) in space  (linearNDFast)
10:08:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:08:28 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:08:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8629789340496 and -65.82984486511207 degrees.
10:08:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8629789340496 and -65.82984486511207 degrees.
10:08:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:08:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:08:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:08:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:08:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:08:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:08:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:08:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:08:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:08:28 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:08:28 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:08:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:08:28 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:08:28 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:08:28 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:08:28 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.086196 (min) -0.0686482 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.126672 (min) -0.0975162 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.191294 (min) -0.188401 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -2.72527 (min) -2.69651 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.9744 (min) 11.0519 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -7.2581e-05 (min) -7.23876e-05 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.472 (min) 299.853 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:08:28 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:08:28 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.145393, mean: 3.159929, max: 3.183628
10:08:28 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:08:28 DEBUG   opendrift.models.physics_methods:917:    min: 9.662000, mean: 9.684295, max: 9.720547
10:08:28 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.662000, mean: 9.684295, max: 9.720547
10:08:28 DEBUG   opendrift:619: No elements hit coastline.
10:08:28 DEBUG   opendrift:702: No elements hit seafloor.
10:08:28 DEBUG   opendrift:1720: No elements to deactivate
10:08:28 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:08:28 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.226152 m/s - 0.227522 m/s)
10:08:28 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:08:28 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:08:28 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:08:28 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:08:28 DEBUG   opendrift:2095: ======================================================================
10:08:28 INFO    opendrift:2096: 2025-06-22 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
10:08:28 DEBUG   opendrift:2102: 0 elements scheduled.
10:08:28 DEBUG   opendrift:2104: ======================================================================
10:08:28 DEBUG   opendrift:2115:                60.2665610387578 <- latitude -> 60.281560554611644
10:08:28 DEBUG   opendrift:2115:                4.129000944909955 <- longitude -> 4.16111224587549
10:08:28 DEBUG   opendrift:2113:                z = 0.0
10:08:28 DEBUG   opendrift:2116: ---------------------------------
10:08:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:08:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:08:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:08:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:08:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:08:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:08:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:08:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 23:00:00 (before)
                2025-06-23 00:00:00 (after)
10:08:41 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:08:41 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:08:41 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:08:41 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:08:41 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:08:41 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:08:41 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-22 23:00:00)
10:08:41 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 23:00:00) in space  (linearNDFast)
10:08:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:08:41 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:08:41 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87100991915395 and -65.83889862187883 degrees.
10:08:41 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87100991915395 and -65.83889862187883 degrees.
10:08:41 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:08:41 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:08:41 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:08:41 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:08:41 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:08:41 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:08:41 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:08:41 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:08:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:08:41 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:08:41 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:08:41 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:08:41 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:08:41 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:08:41 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:08:41 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.101206 (min) -0.082028 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.074023 (min) -0.0519597 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.456109 (min) -0.453671 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.23599 (min) -1.18283 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.9773 (min) 11.0166 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -7.04047e-05 (min) -7.01938e-05 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.869 (min) 300.119 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:08:41 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:08:41 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.001046, mean: 3.007297, max: 3.020218
10:08:41 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:08:41 DEBUG   opendrift.models.physics_methods:917:    min: 9.437695, mean: 9.447517, max: 9.467793
10:08:41 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.437695, mean: 9.447517, max: 9.467793
10:08:41 DEBUG   opendrift:619: No elements hit coastline.
10:08:41 DEBUG   opendrift:702: No elements hit seafloor.
10:08:41 DEBUG   opendrift:1720: No elements to deactivate
10:08:41 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:08:41 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.220902 m/s - 0.221606 m/s)
10:08:41 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:08:41 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:08:41 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:08:41 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:08:41 DEBUG   opendrift:2095: ======================================================================
10:08:41 INFO    opendrift:2096: 2025-06-23 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
10:08:41 DEBUG   opendrift:2102: 0 elements scheduled.
10:08:41 DEBUG   opendrift:2104: ======================================================================
10:08:41 DEBUG   opendrift:2115:                60.27130908092806 <- latitude -> 60.28697756233491
10:08:41 DEBUG   opendrift:2115:                4.1220317347169715 <- longitude -> 4.153045577649059
10:08:41 DEBUG   opendrift:2113:                z = 0.0
10:08:41 DEBUG   opendrift:2116: ---------------------------------
10:08:41 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:08:41 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:08:41 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:08:41 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:08:41 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:08:41 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:08:41 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:08:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 00:00:00 (before)
                2025-06-23 01:00:00 (after)
10:08:55 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:08:55 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:08:55 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:08:55 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:08:55 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:08:55 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:08:55 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x25x7) for time before (2025-06-23 00:00:00)
10:08:55 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 00:00:00) in space  (linearNDFast)
10:08:55 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:08:55 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:08:55 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87797912200053 and -65.84696528636204 degrees.
10:08:55 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87797912200053 and -65.84696528636204 degrees.
10:08:55 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:08:55 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:08:55 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:08:55 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:08:55 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:08:55 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:08:55 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:08:55 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:08:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:08:55 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:08:55 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:08:55 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:08:55 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:08:55 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:08:55 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:08:55 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0635283 (min) -0.0537313 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0235041 (min) -0.00183179 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.666704 (min) -0.665025 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.87396 (min) 2.13677 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 9.03321 (min) 9.05361 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.08808e-08 (min) 7.17091e-08 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.265 (min) 300.387 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:08:55 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:08:55 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.102513, mean: 2.109706, max: 2.119652
10:08:55 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:08:55 DEBUG   opendrift.models.physics_methods:917:    min: 7.899486, mean: 7.912987, max: 7.931619
10:08:55 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 7.899486, mean: 7.912987, max: 7.931619
10:08:55 DEBUG   opendrift:619: No elements hit coastline.
10:08:55 DEBUG   opendrift:702: No elements hit seafloor.
10:08:55 DEBUG   opendrift:1720: No elements to deactivate
10:08:55 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:08:55 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.184898 m/s - 0.185650 m/s)
10:08:55 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:08:55 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:08:55 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:08:55 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:08:55 DEBUG   opendrift:2095: ======================================================================
10:08:55 INFO    opendrift:2096: 2025-06-23 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
10:08:55 DEBUG   opendrift:2102: 0 elements scheduled.
10:08:55 DEBUG   opendrift:2104: ======================================================================
10:08:55 DEBUG   opendrift:2115:                60.276418887259716 <- latitude -> 60.292758828491046
10:08:55 DEBUG   opendrift:2115:                4.120911755083137 <- longitude -> 4.151693537564891
10:08:55 DEBUG   opendrift:2113:                z = 0.0
10:08:55 DEBUG   opendrift:2116: ---------------------------------
10:08:55 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:08:55 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:08:55 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:08:55 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:08:55 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:08:55 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:08:55 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:08:55 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 01:00:00 (before)
                2025-06-23 02:00:00 (after)
10:09:10 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:09:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:09:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:09:10 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:09:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:09:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:09:10 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-23 01:00:00)
10:09:10 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 01:00:00) in space  (linearNDFast)
10:09:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:09:10 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:09:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87909909709987 and -65.84831731971708 degrees.
10:09:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87909909709987 and -65.84831731971708 degrees.
10:09:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:09:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:09:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:09:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:09:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:09:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:09:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:09:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:09:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:09:10 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:09:10 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:09:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:09:10 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:09:10 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:09:10 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:09:10 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0111489 (min) -0.00102798 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0236386 (min) 0.0505905 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.77275 (min) -0.771545 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 4.66969 (min) 4.84749 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 7.64205 (min) 7.82437 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -1.72981e-05 (min) -1.72168e-05 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.484 (min) 300.572 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:09:10 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:09:10 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.973090, mean: 2.032399, max: 2.084084
10:09:10 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:09:10 DEBUG   opendrift.models.physics_methods:917:    min: 7.652494, mean: 7.766574, max: 7.864790
10:09:10 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 7.652494, mean: 7.766574, max: 7.864790
10:09:10 DEBUG   opendrift:619: No elements hit coastline.
10:09:10 DEBUG   opendrift:702: No elements hit seafloor.
10:09:10 DEBUG   opendrift:1720: No elements to deactivate
10:09:10 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:09:10 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.179117 m/s - 0.184086 m/s)
10:09:10 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:09:10 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:09:10 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:09:10 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:09:10 DEBUG   opendrift:2095: ======================================================================
10:09:10 INFO    opendrift:2096: 2025-06-23 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
10:09:10 DEBUG   opendrift:2102: 0 elements scheduled.
10:09:10 DEBUG   opendrift:2104: ======================================================================
10:09:10 DEBUG   opendrift:2115:                60.282146510221665 <- latitude -> 60.299449563535504
10:09:10 DEBUG   opendrift:2115:                4.127109111627664 <- longitude -> 4.157070845810733
10:09:10 DEBUG   opendrift:2113:                z = 0.0
10:09:10 DEBUG   opendrift:2116: ---------------------------------
10:09:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:09:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:09:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:09:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:09:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:09:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:09:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:09:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 02:00:00 (before)
                2025-06-23 03:00:00 (after)
10:09:23 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:09:23 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:09:23 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:09:23 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:09:23 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:09:23 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:09:24 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-23 02:00:00)
10:09:24 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 02:00:00) in space  (linearNDFast)
10:09:24 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:09:24 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:09:24 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87290175386603 and -65.84294000504967 degrees.
10:09:24 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87290175386603 and -65.84294000504967 degrees.
10:09:24 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:09:24 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:09:24 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:09:24 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:09:24 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:09:24 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:09:24 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:09:24 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:09:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:09:24 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:09:24 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:09:24 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:09:24 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:09:24 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:09:24 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:09:24 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0397632 (min) 0.0552307 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0666941 (min) 0.0894985 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.775134 (min) -0.772424 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.76275 (min) 4.08484 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 6.39159 (min) 6.47338 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 9.31859e-06 (min) 1.0098e-05 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.564 (min) 300.717 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:09:24 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:09:24 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.379148, mean: 1.392907, max: 1.415443
10:09:24 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:09:24 DEBUG   opendrift.models.physics_methods:917:    min: 6.397865, mean: 6.429685, max: 6.481504
10:09:24 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 6.397865, mean: 6.429685, max: 6.481504
10:09:24 DEBUG   opendrift:619: No elements hit coastline.
10:09:24 DEBUG   opendrift:702: No elements hit seafloor.
10:09:24 DEBUG   opendrift:1720: No elements to deactivate
10:09:24 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:09:24 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.149750 m/s - 0.151708 m/s)
10:09:24 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:09:24 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:09:24 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:09:24 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:09:24 DEBUG   opendrift:2095: ======================================================================
10:09:24 INFO    opendrift:2096: 2025-06-23 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
10:09:24 DEBUG   opendrift:2102: 0 elements scheduled.
10:09:24 DEBUG   opendrift:2104: ======================================================================
10:09:24 DEBUG   opendrift:2115:                60.28850833050832 <- latitude -> 60.30645351715102
10:09:24 DEBUG   opendrift:2115:                4.136016380050866 <- longitude -> 4.164567478091367
10:09:24 DEBUG   opendrift:2113:                z = 0.0
10:09:24 DEBUG   opendrift:2116: ---------------------------------
10:09:24 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:09:24 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:09:24 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:09:24 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:09:24 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:09:24 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:09:24 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:09:24 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 03:00:00 (before)
                2025-06-23 04:00:00 (after)
10:09:38 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:09:38 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:09:38 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:09:38 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:09:38 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:09:38 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:09:38 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x7) for time before (2025-06-23 03:00:00)
10:09:38 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 03:00:00) in space  (linearNDFast)
10:09:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:09:38 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:09:38 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86399446477574 and -65.83544337314078 degrees.
10:09:38 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86399446477574 and -65.83544337314078 degrees.
10:09:38 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:09:38 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:09:38 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:09:38 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:09:38 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:09:38 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:09:38 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:09:38 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:09:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:09:38 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:09:38 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:09:38 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:09:38 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:09:38 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:09:38 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:09:38 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0818106 (min) 0.103036 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0947122 (min) 0.113911 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.679914 (min) -0.676926 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.93209 (min) 2.05399 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.92003 (min) 5.96669 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.80626e-05 (min) 3.83071e-05 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.615 (min) 300.793 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:09:38 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:09:38 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.964205, mean: 0.964973, max: 0.967625
10:09:38 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:09:38 DEBUG   opendrift.models.physics_methods:917:    min: 5.349514, mean: 5.351644, max: 5.358991
10:09:38 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.349514, mean: 5.351644, max: 5.358991
10:09:38 DEBUG   opendrift:619: No elements hit coastline.
10:09:38 DEBUG   opendrift:702: No elements hit seafloor.
10:09:38 DEBUG   opendrift:1720: No elements to deactivate
10:09:38 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:09:38 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.125212 m/s - 0.125434 m/s)
10:09:38 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:09:38 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:09:38 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:09:38 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:09:38 DEBUG   opendrift:2095: ======================================================================
10:09:38 INFO    opendrift:2096: 2025-06-23 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
10:09:38 DEBUG   opendrift:2102: 0 elements scheduled.
10:09:38 DEBUG   opendrift:2104: ======================================================================
10:09:38 DEBUG   opendrift:2115:                60.29541437043865 <- latitude -> 60.31396875526549
10:09:38 DEBUG   opendrift:2115:                4.145243662881793 <- longitude -> 4.172566691282079
10:09:38 DEBUG   opendrift:2113:                z = 0.0
10:09:38 DEBUG   opendrift:2116: ---------------------------------
10:09:38 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:09:38 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:09:38 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:09:38 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:09:38 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:09:38 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:09:38 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:09:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 04:00:00 (before)
                2025-06-23 05:00:00 (after)
10:09:52 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:09:52 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:09:52 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:09:52 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:09:52 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:09:52 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:09:52 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x25x7) for time before (2025-06-23 04:00:00)
10:09:52 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 04:00:00) in space  (linearNDFast)
10:09:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:09:52 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:09:52 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85476718146654 and -65.82744416593646 degrees.
10:09:52 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85476718146654 and -65.82744416593646 degrees.
10:09:52 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:09:52 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:09:52 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:09:52 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:09:52 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:09:52 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:09:52 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:09:52 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:09:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:09:52 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:09:52 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:09:52 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:09:52 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:09:52 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:09:52 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:09:52 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.127603 (min) 0.146086 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0883042 (min) 0.101144 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.521258 (min) -0.519715 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.29097 (min) 3.51905 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 4.23325 (min) 4.29941 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.90696e-05 (min) 4.96651e-05 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.664 (min) 300.78 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:09:52 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:09:52 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.720714, mean: 0.729709, max: 0.752120
10:09:52 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:09:52 DEBUG   opendrift.models.physics_methods:917:    min: 4.624991, mean: 4.653729, max: 4.724687
10:09:52 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.624991, mean: 4.653729, max: 4.724687
10:09:52 DEBUG   opendrift:619: No elements hit coastline.
10:09:52 DEBUG   opendrift:702: No elements hit seafloor.
10:09:52 DEBUG   opendrift:1720: No elements to deactivate
10:09:52 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:09:52 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.108254 m/s - 0.110587 m/s)
10:09:52 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:09:52 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:09:52 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:09:52 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:09:52 DEBUG   opendrift:2095: ======================================================================
10:09:52 INFO    opendrift:2096: 2025-06-23 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
10:09:52 DEBUG   opendrift:2102: 0 elements scheduled.
10:09:52 DEBUG   opendrift:2104: ======================================================================
10:09:52 DEBUG   opendrift:2115:                60.30104093508787 <- latitude -> 60.319884102219106
10:09:52 DEBUG   opendrift:2115:                4.159047680331 <- longitude -> 4.185456453596523
10:09:52 DEBUG   opendrift:2113:                z = 0.0
10:09:52 DEBUG   opendrift:2116: ---------------------------------
10:09:52 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:09:52 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:09:52 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:09:52 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:09:52 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:09:52 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:09:52 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:09:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 05:00:00 (before)
                2025-06-23 06:00:00 (after)
10:10:06 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:10:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:10:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:10:06 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:10:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:10:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:10:06 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x25x7) for time before (2025-06-23 05:00:00)
10:10:06 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 05:00:00) in space  (linearNDFast)
10:10:06 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:10:06 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:10:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84096316727604 and -65.81455439221568 degrees.
10:10:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84096316727604 and -65.81455439221568 degrees.
10:10:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:10:06 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:10:06 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:10:06 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:10:06 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:10:06 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:10:06 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:10:06 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:10:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:10:06 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:10:06 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:10:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:10:06 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:10:06 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:10:06 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:10:06 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.163738 (min) 0.18355 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.028533 (min) 0.0351178 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.331 (min) -0.33 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.67748 (min) 3.78148 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 4.03614 (min) 4.41299 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.39987e-05 (min) 5.48401e-05 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.495 (min) 300.558 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:10:06 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:10:06 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.733432, mean: 0.790615, max: 0.830843
10:10:06 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:10:06 DEBUG   opendrift.models.physics_methods:917:    min: 4.665623, mean: 4.843836, max: 4.965799
10:10:06 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.665623, mean: 4.843836, max: 4.965799
10:10:06 DEBUG   opendrift:619: No elements hit coastline.
10:10:06 DEBUG   opendrift:702: No elements hit seafloor.
10:10:06 DEBUG   opendrift:1720: No elements to deactivate
10:10:06 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:10:06 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.109205 m/s - 0.116231 m/s)
10:10:06 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:10:06 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:10:06 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:10:06 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:10:06 DEBUG   opendrift:2095: ======================================================================
10:10:06 INFO    opendrift:2096: 2025-06-23 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
10:10:06 DEBUG   opendrift:2102: 0 elements scheduled.
10:10:06 DEBUG   opendrift:2104: ======================================================================
10:10:06 DEBUG   opendrift:2115:                60.30465326301747 <- latitude -> 60.3237098788414
10:10:06 DEBUG   opendrift:2115:                4.175905805612561 <- longitude -> 4.200966217016072
10:10:06 DEBUG   opendrift:2113:                z = 0.0
10:10:06 DEBUG   opendrift:2116: ---------------------------------
10:10:06 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:10:06 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:10:06 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:10:06 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:10:06 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:10:06 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:10:06 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:10:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 06:00:00 (before)
                2025-06-23 07:00:00 (after)
10:10:20 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:10:20 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:10:20 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:10:20 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:10:20 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:10:20 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:10:20 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x7) for time before (2025-06-23 06:00:00)
10:10:20 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 06:00:00) in space  (linearNDFast)
10:10:20 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:10:20 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:10:20 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.82410503804012 and -65.79904462757652 degrees.
10:10:20 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.82410503804012 and -65.79904462757652 degrees.
10:10:20 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:10:20 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:10:20 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:10:20 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:10:20 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:10:20 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:10:20 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:10:20 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:10:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:10:20 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:10:20 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:10:20 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:10:20 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:10:20 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:10:20 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:10:20 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.17488 (min) 0.20258 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0963804 (min) -0.0684999 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.128941 (min) -0.126226 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.731 (min) 3.9508 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 3.52643 (min) 3.57746 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.40614e-05 (min) 5.47326e-05 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.148 (min) 300.203 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:10:20 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:10:20 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.656983, mean: 0.673340, max: 0.690178
10:10:20 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:10:20 DEBUG   opendrift.models.physics_methods:917:    min: 4.415771, mean: 4.470371, max: 4.525954
10:10:20 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.415771, mean: 4.470371, max: 4.525954
10:10:20 DEBUG   opendrift:619: No elements hit coastline.
10:10:20 DEBUG   opendrift:702: No elements hit seafloor.
10:10:20 DEBUG   opendrift:1720: No elements to deactivate
10:10:20 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:10:20 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103357 m/s - 0.105936 m/s)
10:10:20 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:10:20 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:10:20 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:10:20 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:10:20 DEBUG   opendrift:2095: ======================================================================
10:10:20 INFO    opendrift:2096: 2025-06-23 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
10:10:20 DEBUG   opendrift:2102: 0 elements scheduled.
10:10:20 DEBUG   opendrift:2104: ======================================================================
10:10:20 DEBUG   opendrift:2115:                60.30475013322366 <- latitude -> 60.32287488291264
10:10:20 DEBUG   opendrift:2115:                4.194235239971871 <- longitude -> 4.21731405318214
10:10:20 DEBUG   opendrift:2113:                z = 0.0
10:10:20 DEBUG   opendrift:2116: ---------------------------------
10:10:20 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:10:20 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:10:20 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:10:20 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:10:20 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:10:20 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:10:20 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:10:20 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 07:00:00 (before)
                2025-06-23 08:00:00 (after)
10:10:34 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:10:34 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:10:34 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:10:34 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:10:34 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:10:34 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:10:34 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x7) for time before (2025-06-23 07:00:00)
10:10:34 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 07:00:00) in space  (linearNDFast)
10:10:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:10:34 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:10:34 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.80577560648416 and -65.78269679286333 degrees.
10:10:34 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.80577560648416 and -65.78269679286333 degrees.
10:10:34 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:10:34 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:10:34 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:10:34 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:10:34 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:10:34 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:10:34 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:10:34 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:10:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:10:34 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:10:34 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:10:34 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:10:34 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:10:34 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:10:34 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:10:34 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.152997 (min) 0.173373 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.236918 (min) -0.196439 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0380895 (min) 0.0424189 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.95997 (min) 4.00438 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.95797 (min) 2.02815 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.41114e-05 (min) 3.43177e-05 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.66 (min) 299.766 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:10:34 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:10:34 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.480068, mean: 0.488458, max: 0.495441
10:10:34 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:10:34 DEBUG   opendrift.models.physics_methods:917:    min: 3.774687, mean: 3.807517, max: 3.834647
10:10:34 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.774687, mean: 3.807517, max: 3.834647
10:10:34 DEBUG   opendrift:619: No elements hit coastline.
10:10:34 DEBUG   opendrift:702: No elements hit seafloor.
10:10:34 DEBUG   opendrift:1720: No elements to deactivate
10:10:34 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:10:34 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.088351 m/s - 0.089755 m/s)
10:10:34 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:10:34 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:10:34 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:10:34 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:10:34 DEBUG   opendrift:2095: ======================================================================
10:10:34 INFO    opendrift:2096: 2025-06-23 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
10:10:34 DEBUG   opendrift:2102: 0 elements scheduled.
10:10:34 DEBUG   opendrift:2104: ======================================================================
10:10:34 DEBUG   opendrift:2115:                60.299667799147464 <- latitude -> 60.31652989534949
10:10:34 DEBUG   opendrift:2115:                4.210667426277692 <- longitude -> 4.23250587539228
10:10:34 DEBUG   opendrift:2113:                z = 0.0
10:10:34 DEBUG   opendrift:2116: ---------------------------------
10:10:34 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:10:34 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:10:34 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:10:34 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:10:34 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:10:34 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:10:34 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:10:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 08:00:00 (before)
                2025-06-23 09:00:00 (after)
10:10:49 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:10:49 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:10:49 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:10:49 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:10:49 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:10:49 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:10:49 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x25x7) for time before (2025-06-23 08:00:00)
10:10:49 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 08:00:00) in space  (linearNDFast)
10:10:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:10:49 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:10:49 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.78934342481797 and -65.76750498076211 degrees.
10:10:49 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.78934342481797 and -65.76750498076211 degrees.
10:10:49 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:10:49 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:10:49 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:10:49 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:10:49 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:10:49 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:10:49 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:10:49 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:10:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:10:49 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:10:49 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:10:49 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:10:49 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:10:49 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:10:49 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:10:49 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.119737 (min) 0.149317 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.318772 (min) -0.272946 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.107007 (min) 0.110069 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 2.41702 (min) 2.49728 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.68593 (min) 1.71122 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.17887e-06 (min) 1.47431e-06 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.989 (min) 299.248 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:10:49 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:10:49 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.213644, mean: 0.219824, max: 0.225414
10:10:49 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:10:49 DEBUG   opendrift.models.physics_methods:917:    min: 2.518109, mean: 2.554245, max: 2.586546
10:10:49 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 2.518109, mean: 2.554245, max: 2.586546
10:10:49 DEBUG   opendrift:619: No elements hit coastline.
10:10:49 DEBUG   opendrift:702: No elements hit seafloor.
10:10:49 DEBUG   opendrift:1720: No elements to deactivate
10:10:49 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:10:49 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.058940 m/s - 0.060541 m/s)
10:10:49 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:10:49 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:10:49 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:10:49 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:10:49 DEBUG   opendrift:2095: ======================================================================
10:10:49 INFO    opendrift:2096: 2025-06-23 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
10:10:49 DEBUG   opendrift:2102: 0 elements scheduled.
10:10:49 DEBUG   opendrift:2104: ======================================================================
10:10:49 DEBUG   opendrift:2115:                60.291937866135896 <- latitude -> 60.30733550171382
10:10:49 DEBUG   opendrift:2115:                4.223403813761033 <- longitude -> 4.243540879902658
10:10:49 DEBUG   opendrift:2113:                z = 0.0
10:10:49 DEBUG   opendrift:2116: ---------------------------------
10:10:49 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:10:49 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:10:49 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:10:49 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:10:49 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:10:49 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:10:49 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:10:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 09:00:00 (before)
                2025-06-23 10:00:00 (after)
10:11:09 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:11:09 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:11:09 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:11:09 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:11:09 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:11:09 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:11:09 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-23 09:00:00)
10:11:09 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 09:00:00) in space  (linearNDFast)
10:11:09 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:11:09 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:11:09 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.77660703552975 and -65.75646997177438 degrees.
10:11:09 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.77660703552975 and -65.75646997177438 degrees.
10:11:09 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:11:09 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:11:09 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:11:09 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:11:09 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:11:09 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:11:09 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:11:09 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:11:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:11:09 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:11:09 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:11:09 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:11:09 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:11:09 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:11:09 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:11:09 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0676944 (min) 0.103164 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.347181 (min) -0.301132 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0375621 (min) 0.0395337 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 2.04303 (min) 2.21481 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.71509 (min) 1.73774 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -3.93166e-05 (min) -3.91397e-05 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.284 (min) 298.589 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:11:09 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:11:09 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.175041, mean: 0.184895, max: 0.194958
10:11:09 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:11:09 DEBUG   opendrift.models.physics_methods:917:    min: 2.279290, mean: 2.342474, max: 2.405474
10:11:09 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 2.279290, mean: 2.342474, max: 2.405474
10:11:09 DEBUG   opendrift:619: No elements hit coastline.
10:11:09 DEBUG   opendrift:702: No elements hit seafloor.
10:11:09 DEBUG   opendrift:1720: No elements to deactivate
10:11:09 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:11:09 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.053350 m/s - 0.056303 m/s)
10:11:09 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:11:09 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:11:09 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:11:09 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:11:09 DEBUG   opendrift:2095: ======================================================================
10:11:09 INFO    opendrift:2096: 2025-06-23 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
10:11:09 DEBUG   opendrift:2102: 0 elements scheduled.
10:11:09 DEBUG   opendrift:2104: ======================================================================
10:11:09 DEBUG   opendrift:2115:                60.283316202888784 <- latitude -> 60.297240516523956
10:11:09 DEBUG   opendrift:2115:                4.232656724989083 <- longitude -> 4.250703007102723
10:11:09 DEBUG   opendrift:2113:                z = 0.0
10:11:09 DEBUG   opendrift:2116: ---------------------------------
10:11:09 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:11:09 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:11:09 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:11:09 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:11:09 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:11:09 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:11:09 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:11:09 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 10:00:00 (before)
                2025-06-23 11:00:00 (after)
10:11:29 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:11:29 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:11:29 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:11:29 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:11:29 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:11:29 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:11:29 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-23 10:00:00)
10:11:29 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 10:00:00) in space  (linearNDFast)
10:11:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:11:29 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:11:29 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76735412181694 and -65.74930784112053 degrees.
10:11:29 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76735412181694 and -65.74930784112053 degrees.
10:11:29 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:11:29 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:11:29 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:11:29 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:11:29 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:11:29 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:11:29 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:11:29 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:11:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:11:29 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:11:29 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:11:29 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:11:29 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:11:29 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:11:29 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:11:29 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.00457292 (min) 0.044792 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.328944 (min) -0.280057 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.164491 (min) -0.163564 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.63302 (min) 1.63944 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 2.03805 (min) 2.05459 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -7.10851e-05 (min) -7.09577e-05 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.623 (min) 297.831 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:11:29 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:11:29 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.168200, mean: 0.168841, max: 0.169468
10:11:29 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:11:29 DEBUG   opendrift.models.physics_methods:917:    min: 2.234305, mean: 2.238561, max: 2.242712
10:11:29 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 2.234305, mean: 2.238561, max: 2.242712
10:11:29 DEBUG   opendrift:619: No elements hit coastline.
10:11:29 DEBUG   opendrift:702: No elements hit seafloor.
10:11:29 DEBUG   opendrift:1720: No elements to deactivate
10:11:29 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:11:29 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.052297 m/s - 0.052494 m/s)
10:11:29 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:11:29 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:11:29 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:11:29 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:11:29 DEBUG   opendrift:2095: ======================================================================
10:11:29 INFO    opendrift:2096: 2025-06-23 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
10:11:29 DEBUG   opendrift:2102: 0 elements scheduled.
10:11:29 DEBUG   opendrift:2104: ======================================================================
10:11:29 DEBUG   opendrift:2115:                60.27557795433067 <- latitude -> 60.28793689816491
10:11:29 DEBUG   opendrift:2115:                4.237080745333662 <- longitude -> 4.253222346051703
10:11:29 DEBUG   opendrift:2113:                z = 0.0
10:11:29 DEBUG   opendrift:2116: ---------------------------------
10:11:29 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:11:29 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:11:29 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:11:29 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:11:29 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:11:29 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:11:29 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:11:29 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 11:00:00 (before)
                2025-06-23 12:00:00 (after)
10:11:48 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:11:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:11:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:11:48 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:11:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:11:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:11:48 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-23 11:00:00)
10:11:48 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 11:00:00) in space  (linearNDFast)
10:11:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:11:48 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:11:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76293010630495 and -65.74678851245517 degrees.
10:11:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76293010630495 and -65.74678851245517 degrees.
10:11:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:11:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:11:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:11:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:11:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:11:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:11:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:11:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:11:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:11:48 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:11:48 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:11:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:11:48 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:11:48 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:11:48 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:11:48 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0426087 (min) -0.00549054 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.257592 (min) -0.202972 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.442167 (min) -0.440985 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 2.04362 (min) 2.16046 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 3.56827 (min) 3.63219 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -7.74808e-05 (min) -7.74054e-05 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.147 (min) 297.16 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:11:48 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:11:48 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.416295, mean: 0.430466, max: 0.436968
10:11:48 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:11:48 DEBUG   opendrift.models.physics_methods:917:    min: 3.515041, mean: 3.574342, max: 3.601258
10:11:48 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.515041, mean: 3.574342, max: 3.601258
10:11:48 DEBUG   opendrift:619: No elements hit coastline.
10:11:48 DEBUG   opendrift:702: No elements hit seafloor.
10:11:48 DEBUG   opendrift:1720: No elements to deactivate
10:11:48 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:11:48 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.082274 m/s - 0.084292 m/s)
10:11:48 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:11:48 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:11:48 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:11:48 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:11:48 DEBUG   opendrift:2095: ======================================================================
10:11:48 INFO    opendrift:2096: 2025-06-23 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
10:11:48 DEBUG   opendrift:2102: 0 elements scheduled.
10:11:48 DEBUG   opendrift:2104: ======================================================================
10:11:48 DEBUG   opendrift:2115:                60.27133421537495 <- latitude -> 60.28192341074683
10:11:48 DEBUG   opendrift:2115:                4.238766856433064 <- longitude -> 4.2533491343196905
10:11:48 DEBUG   opendrift:2113:                z = 0.0
10:11:48 DEBUG   opendrift:2116: ---------------------------------
10:11:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:11:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:11:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:11:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:11:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:11:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:11:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:11:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 12:00:00 (before)
                2025-06-23 13:00:00 (after)
10:12:07 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:12:07 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:12:07 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:12:07 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:12:07 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:12:07 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:12:07 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-23 12:00:00)
10:12:07 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 12:00:00) in space  (linearNDFast)
10:12:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:12:07 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:12:07 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76124399242725 and -65.7466617259523 degrees.
10:12:07 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76124399242725 and -65.7466617259523 degrees.
10:12:07 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:12:07 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:12:07 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:12:07 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:12:07 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:12:07 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:12:07 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:12:07 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:12:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:12:07 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:12:07 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:12:07 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:12:07 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:12:07 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:12:07 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:12:07 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0511346 (min) -0.0263659 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.147807 (min) -0.109279 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.695525 (min) -0.694025 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.66485 (min) 3.73036 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 3.6701 (min) 3.69671 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.94382e-05 (min) -5.91566e-05 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 295.928 (min) 296.752 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:12:07 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:12:07 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.663493, mean: 0.670129, max: 0.674151
10:12:07 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:12:07 DEBUG   opendrift.models.physics_methods:917:    min: 4.437595, mean: 4.459727, max: 4.473097
10:12:07 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.437595, mean: 4.459727, max: 4.473097
10:12:07 DEBUG   opendrift:619: No elements hit coastline.
10:12:07 DEBUG   opendrift:702: No elements hit seafloor.
10:12:07 DEBUG   opendrift:1720: No elements to deactivate
10:12:07 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:12:07 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103868 m/s - 0.104699 m/s)
10:12:07 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:12:07 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:12:07 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:12:07 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:12:07 DEBUG   opendrift:2095: ======================================================================
10:12:07 INFO    opendrift:2096: 2025-06-23 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
10:12:07 DEBUG   opendrift:2102: 0 elements scheduled.
10:12:07 DEBUG   opendrift:2104: ======================================================================
10:12:07 DEBUG   opendrift:2115:                60.270142973347944 <- latitude -> 60.27960516724792
10:12:07 DEBUG   opendrift:2115:                4.241260119588309 <- longitude -> 4.254957900776035
10:12:07 DEBUG   opendrift:2113:                z = 0.0
10:12:07 DEBUG   opendrift:2116: ---------------------------------
10:12:07 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:12:07 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:12:07 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:12:07 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:12:07 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:12:07 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:12:07 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:12:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 13:00:00 (before)
                2025-06-23 14:00:00 (after)
10:12:26 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:12:26 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:12:26 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:12:26 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:12:26 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:12:26 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:12:26 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x7) for time before (2025-06-23 13:00:00)
10:12:26 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 13:00:00) in space  (linearNDFast)
10:12:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:12:26 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:12:26 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.75875072628511 and -65.74505296150018 degrees.
10:12:26 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.75875072628511 and -65.74505296150018 degrees.
10:12:26 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:12:26 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:12:26 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:12:26 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:12:26 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:12:26 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:12:26 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:12:26 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:12:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:12:26 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:12:26 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:12:26 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:12:26 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:12:26 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:12:26 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:12:26 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0557166 (min) -0.0321989 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0259354 (min) 0.00506999 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.85055 (min) -0.84863 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.41593 (min) 1.44956 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 4.32374 (min) 4.38289 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.487e-05 (min) -2.45914e-05 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 295.859 (min) 296.538 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:12:26 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:12:26 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.511581, mean: 0.517657, max: 0.521914
10:12:26 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:12:26 DEBUG   opendrift.models.physics_methods:917:    min: 3.896608, mean: 3.919675, max: 3.935765
10:12:26 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.896608, mean: 3.919675, max: 3.935765
10:12:26 DEBUG   opendrift:619: No elements hit coastline.
10:12:26 DEBUG   opendrift:702: No elements hit seafloor.
10:12:26 DEBUG   opendrift:1720: No elements to deactivate
10:12:26 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:12:26 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.091205 m/s - 0.092122 m/s)
10:12:26 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:12:26 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:12:26 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:12:26 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:12:26 DEBUG   opendrift:2095: ======================================================================
10:12:26 INFO    opendrift:2096: 2025-06-23 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
10:12:26 DEBUG   opendrift:2102: 0 elements scheduled.
10:12:26 DEBUG   opendrift:2104: ======================================================================
10:12:26 DEBUG   opendrift:2115:                60.27305979486809 <- latitude -> 60.28177831303425
10:12:26 DEBUG   opendrift:2115:                4.239991979200801 <- longitude -> 4.253510069514531
10:12:26 DEBUG   opendrift:2113:                z = 0.0
10:12:26 DEBUG   opendrift:2116: ---------------------------------
10:12:26 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:12:26 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:12:26 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:12:26 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:12:26 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:12:26 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:12:26 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:12:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 14:00:00 (before)
                2025-06-23 15:00:00 (after)
10:12:47 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:12:47 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:12:47 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:12:47 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:12:47 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:12:47 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:12:47 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-23 14:00:00)
10:12:47 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 14:00:00) in space  (linearNDFast)
10:12:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:12:47 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:12:47 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76001888031982 and -65.74650078898614 degrees.
10:12:47 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76001888031982 and -65.74650078898614 degrees.
10:12:47 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:12:47 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:12:47 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:12:47 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:12:47 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:12:47 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:12:47 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:12:47 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:12:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:12:47 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:12:47 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:12:47 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:12:47 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:12:47 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:12:47 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:12:47 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0305052 (min) -0.0130188 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.098873 (min) 0.119034 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.877929 (min) -0.876029 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.669086 (min) 0.702465 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.13776 (min) 5.18363 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 8.98482e-06 (min) 9.0628e-06 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.004 (min) 296.669 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:12:47 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:12:47 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.661336, mean: 0.664502, max: 0.672053
10:12:47 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:12:47 DEBUG   opendrift.models.physics_methods:917:    min: 4.430376, mean: 4.440968, max: 4.466129
10:12:47 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.430376, mean: 4.440968, max: 4.466129
10:12:47 DEBUG   opendrift:619: No elements hit coastline.
10:12:47 DEBUG   opendrift:702: No elements hit seafloor.
10:12:47 DEBUG   opendrift:1720: No elements to deactivate
10:12:47 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:12:47 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103699 m/s - 0.104536 m/s)
10:12:47 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:12:47 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:12:47 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:12:47 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:12:47 DEBUG   opendrift:2095: ======================================================================
10:12:47 INFO    opendrift:2096: 2025-06-23 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
10:12:47 DEBUG   opendrift:2102: 0 elements scheduled.
10:12:47 DEBUG   opendrift:2104: ======================================================================
10:12:47 DEBUG   opendrift:2115:                60.2801697611314 <- latitude -> 60.28858482575149
10:12:47 DEBUG   opendrift:2115:                4.239050161320921 <- longitude -> 4.252756008445677
10:12:47 DEBUG   opendrift:2113:                z = 0.0
10:12:47 DEBUG   opendrift:2116: ---------------------------------
10:12:47 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:12:47 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:12:47 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:12:47 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:12:47 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:12:47 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:12:47 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:12:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 15:00:00 (before)
                2025-06-23 16:00:00 (after)
10:13:06 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:13:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:13:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:13:06 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:13:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:13:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:13:06 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-23 15:00:00)
10:13:06 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 15:00:00) in space  (linearNDFast)
10:13:06 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:13:06 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:13:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76096068684076 and -65.74725485383638 degrees.
10:13:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76096068684076 and -65.74725485383638 degrees.
10:13:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:13:06 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:13:06 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:13:06 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:13:06 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:13:06 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:13:06 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:13:06 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:13:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:13:06 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:13:06 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:13:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:13:06 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:13:06 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:13:06 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:13:06 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0365584 (min) 0.0554088 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.203436 (min) 0.218615 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.799557 (min) -0.797367 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.31611 (min) 1.38441 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.48369 (min) 5.50641 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.3276e-05 (min) 3.34468e-05 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.417 (min) 297.08 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:13:06 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:13:06 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.782354, mean: 0.785754, max: 0.793032
10:13:06 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:13:06 DEBUG   opendrift.models.physics_methods:917:    min: 4.818714, mean: 4.829172, max: 4.851489
10:13:06 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.818714, mean: 4.829172, max: 4.851489
10:13:06 DEBUG   opendrift:619: No elements hit coastline.
10:13:06 DEBUG   opendrift:702: No elements hit seafloor.
10:13:07 DEBUG   opendrift:1720: No elements to deactivate
10:13:07 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:13:07 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.112788 m/s - 0.113555 m/s)
10:13:07 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:13:07 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:13:07 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:13:07 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:13:07 DEBUG   opendrift:2095: ======================================================================
10:13:07 INFO    opendrift:2096: 2025-06-23 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
10:13:07 DEBUG   opendrift:2102: 0 elements scheduled.
10:13:07 DEBUG   opendrift:2104: ======================================================================
10:13:07 DEBUG   opendrift:2115:                60.290595523311865 <- latitude -> 60.299123294104916
10:13:07 DEBUG   opendrift:2115:                4.243630859338618 <- longitude -> 4.256994821215142
10:13:07 DEBUG   opendrift:2113:                z = 0.0
10:13:07 DEBUG   opendrift:2116: ---------------------------------
10:13:07 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:13:07 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:13:07 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:13:07 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:13:07 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:13:07 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:13:07 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:13:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 16:00:00 (before)
                2025-06-23 17:00:00 (after)
10:13:27 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:13:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:13:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:13:27 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:13:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:13:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:13:27 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-23 16:00:00)
10:13:27 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 16:00:00) in space  (linearNDFast)
10:13:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:13:27 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:13:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.75637999581943 and -65.74301602709019 degrees.
10:13:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.75637999581943 and -65.74301602709019 degrees.
10:13:27 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:13:27 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:13:27 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:13:27 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:13:27 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:13:27 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:13:27 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:13:27 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:13:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:13:27 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:13:27 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:13:27 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:13:27 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:13:27 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:13:27 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:13:27 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.112318 (min) 0.137746 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.272931 (min) 0.291145 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.64973 (min) -0.647015 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.362671 (min) 0.395994 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.91974 (min) 5.95037 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.99071e-05 (min) 5.02985e-05 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.977 (min) 297.594 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:13:27 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:13:27 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.865549, mean: 0.871282, max: 0.874631
10:13:27 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:13:27 DEBUG   opendrift.models.physics_methods:917:    min: 5.068454, mean: 5.085209, max: 5.094976
10:13:27 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.068454, mean: 5.085209, max: 5.094976
10:13:27 DEBUG   opendrift:619: No elements hit coastline.
10:13:27 DEBUG   opendrift:702: No elements hit seafloor.
10:13:27 DEBUG   opendrift:1720: No elements to deactivate
10:13:27 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:13:27 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.118634 m/s - 0.119255 m/s)
10:13:27 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:13:27 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:13:27 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:13:27 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:13:27 DEBUG   opendrift:2095: ======================================================================
10:13:27 INFO    opendrift:2096: 2025-06-23 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
10:13:27 DEBUG   opendrift:2102: 0 elements scheduled.
10:13:27 DEBUG   opendrift:2104: ======================================================================
10:13:27 DEBUG   opendrift:2115:                60.30354191485231 <- latitude -> 60.31221882800046
10:13:27 DEBUG   opendrift:2115:                4.252617690461105 <- longitude -> 4.2648353438585245
10:13:27 DEBUG   opendrift:2113:                z = 0.0
10:13:27 DEBUG   opendrift:2116: ---------------------------------
10:13:27 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:13:27 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:13:27 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:13:27 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:13:27 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:13:27 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:13:27 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:13:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 17:00:00 (before)
                2025-06-23 18:00:00 (after)
10:13:48 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:13:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:13:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:13:48 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:13:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:13:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:13:48 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-06-23 17:00:00)
10:13:48 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 17:00:00) in space  (linearNDFast)
10:13:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:13:48 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:13:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.74739316390232 and -65.73517548414097 degrees.
10:13:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.74739316390232 and -65.73517548414097 degrees.
10:13:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:13:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:13:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:13:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:13:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:13:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:13:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:13:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:13:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:13:48 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:13:48 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:13:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:13:48 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:13:48 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:13:48 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:13:48 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.185714 (min) 0.201328 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.287366 (min) 0.303855 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.448861 (min) -0.447116 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.989741 (min) -0.950478 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.94563 (min) 5.96042 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 6.06693e-05 (min) 6.08537e-05 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.666 (min) 298.141 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:13:48 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:13:48 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.893518, mean: 0.894682, max: 0.896536
10:13:48 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:13:48 DEBUG   opendrift.models.physics_methods:917:    min: 5.149690, mean: 5.153044, max: 5.158382
10:13:48 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.149690, mean: 5.153044, max: 5.158382
10:13:48 DEBUG   opendrift:619: No elements hit coastline.
10:13:48 DEBUG   opendrift:702: No elements hit seafloor.
10:13:48 DEBUG   opendrift:1720: No elements to deactivate
10:13:48 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:13:48 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120535 m/s - 0.120739 m/s)
10:13:48 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:13:48 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:13:48 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:13:48 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:13:48 DEBUG   opendrift:2095: ======================================================================
10:13:48 INFO    opendrift:2096: 2025-06-23 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
10:13:48 DEBUG   opendrift:2102: 0 elements scheduled.
10:13:48 DEBUG   opendrift:2104: ======================================================================
10:13:48 DEBUG   opendrift:2115:                60.31692441667002 <- latitude -> 60.32586294124091
10:13:48 DEBUG   opendrift:2115:                4.264211790018909 <- longitude -> 4.27569983564081
10:13:48 DEBUG   opendrift:2113:                z = 0.0
10:13:48 DEBUG   opendrift:2116: ---------------------------------
10:13:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:13:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:13:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:13:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:13:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:13:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:13:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:13:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 18:00:00 (before)
                2025-06-23 19:00:00 (after)
10:14:08 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:14:08 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:14:08 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:14:08 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:14:08 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:14:08 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:14:08 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x7) for time before (2025-06-23 18:00:00)
10:14:08 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 18:00:00) in space  (linearNDFast)
10:14:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:14:08 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:14:08 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.73579904258881 and -65.72431099513253 degrees.
10:14:08 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.73579904258881 and -65.72431099513253 degrees.
10:14:08 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:14:08 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:14:08 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:14:08 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:14:08 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:14:08 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:14:08 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:14:08 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:14:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:14:08 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:14:08 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:14:08 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:14:08 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:14:08 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:14:08 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:14:08 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.231564 (min) 0.245637 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.241057 (min) 0.261088 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.217768 (min) -0.216009 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.652642 (min) -0.608986 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 6.39423 (min) 6.4236 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 6.5763e-05 (min) 6.61757e-05 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.263 (min) 298.567 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:14:08 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:14:08 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.016279, mean: 1.019232, max: 1.024183
10:14:08 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:14:08 DEBUG   opendrift.models.physics_methods:917:    min: 5.492070, mean: 5.500044, max: 5.513386
10:14:08 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.492070, mean: 5.500044, max: 5.513386
10:14:08 DEBUG   opendrift:619: No elements hit coastline.
10:14:08 DEBUG   opendrift:702: No elements hit seafloor.
10:14:08 DEBUG   opendrift:1720: No elements to deactivate
10:14:08 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:14:08 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.128549 m/s - 0.129048 m/s)
10:14:08 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:14:08 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:14:08 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:14:08 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:14:08 DEBUG   opendrift:2095: ======================================================================
10:14:08 INFO    opendrift:2096: 2025-06-23 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
10:14:08 DEBUG   opendrift:2102: 0 elements scheduled.
10:14:08 DEBUG   opendrift:2104: ======================================================================
10:14:08 DEBUG   opendrift:2115:                60.3290586780326 <- latitude -> 60.33844902913015
10:14:08 DEBUG   opendrift:2115:                4.279370364467543 <- longitude -> 4.289980495872061
10:14:08 DEBUG   opendrift:2113:                z = 0.0
10:14:08 DEBUG   opendrift:2116: ---------------------------------
10:14:08 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:14:08 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:14:08 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:14:08 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:14:08 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:14:08 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:14:08 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:14:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 19:00:00 (before)
                2025-06-23 20:00:00 (after)
10:14:28 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:14:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:14:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:14:28 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:14:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:14:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:14:28 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x7) for time before (2025-06-23 19:00:00)
10:14:28 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 19:00:00) in space  (linearNDFast)
10:14:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:14:28 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:14:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.72064047352536 and -65.71003032647774 degrees.
10:14:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.72064047352536 and -65.71003032647774 degrees.
10:14:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:14:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:14:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:14:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:14:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:14:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:14:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:14:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:14:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:14:28 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:14:28 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:14:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:14:28 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:14:28 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:14:28 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:14:28 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.201153 (min) 0.227377 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.156528 (min) 0.17969 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.00871682 (min) 0.0103453 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.362382 (min) -0.291752 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 6.01827 (min) 6.13642 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.59959e-05 (min) 5.61405e-05 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.638 (min) 298.815 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:14:28 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:14:28 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.893194, mean: 0.904504, max: 0.929559
10:14:28 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:14:28 DEBUG   opendrift.models.physics_methods:917:    min: 5.148759, mean: 5.181234, max: 5.252524
10:14:28 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.148759, mean: 5.181234, max: 5.252524
10:14:28 DEBUG   opendrift:619: No elements hit coastline.
10:14:28 DEBUG   opendrift:702: No elements hit seafloor.
10:14:28 DEBUG   opendrift:1720: No elements to deactivate
10:14:28 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:14:28 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120513 m/s - 0.122942 m/s)
10:14:28 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:14:28 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:14:28 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:14:28 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:14:28 DEBUG   opendrift:2095: ======================================================================
10:14:28 INFO    opendrift:2096: 2025-06-23 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
10:14:28 DEBUG   opendrift:2102: 0 elements scheduled.
10:14:28 DEBUG   opendrift:2104: ======================================================================
10:14:28 DEBUG   opendrift:2115:                60.33832743780164 <- latitude -> 60.34821973359772
10:14:28 DEBUG   opendrift:2115:                4.293730093146891 <- longitude -> 4.303077551117292
10:14:28 DEBUG   opendrift:2113:                z = 0.0
10:14:28 DEBUG   opendrift:2116: ---------------------------------
10:14:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:14:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:14:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:14:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:14:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:14:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:14:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:14:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 20:00:00 (before)
                2025-06-23 21:00:00 (after)
10:14:48 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:14:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:14:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:14:48 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:14:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:14:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:14:48 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-23 20:00:00)
10:14:48 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 20:00:00) in space  (linearNDFast)
10:14:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:14:48 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:14:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.7062807468628 and -65.69693327437056 degrees.
10:14:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.7062807468628 and -65.69693327437056 degrees.
10:14:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:14:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:14:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:14:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:14:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:14:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:14:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:14:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:14:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:14:48 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:14:48 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:14:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:14:48 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:14:48 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:14:48 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:14:48 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.126357 (min) 0.157693 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0854001 (min) 0.115599 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.160192 (min) 0.16176 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.207394 (min) 0.253515 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.57504 (min) 5.59168 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.46458e-05 (min) 2.483e-05 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.825 (min) 298.915 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:14:48 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:14:48 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.766156, mean: 0.767545, max: 0.770224
10:14:48 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:14:48 DEBUG   opendrift.models.physics_methods:917:    min: 4.768572, mean: 4.772889, max: 4.781214
10:14:48 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.768572, mean: 4.772889, max: 4.781214
10:14:48 DEBUG   opendrift:619: No elements hit coastline.
10:14:48 DEBUG   opendrift:702: No elements hit seafloor.
10:14:48 DEBUG   opendrift:1720: No elements to deactivate
10:14:48 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:14:48 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.111615 m/s - 0.111911 m/s)
10:14:48 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:14:48 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:14:48 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:14:48 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:14:48 DEBUG   opendrift:2095: ======================================================================
10:14:48 INFO    opendrift:2096: 2025-06-23 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
10:14:48 DEBUG   opendrift:2102: 0 elements scheduled.
10:14:48 DEBUG   opendrift:2104: ======================================================================
10:14:48 DEBUG   opendrift:2115:                60.34487011528486 <- latitude -> 60.35556799311152
10:14:48 DEBUG   opendrift:2115:                4.304150766560297 <- longitude -> 4.312642455873677
10:14:48 DEBUG   opendrift:2113:                z = 0.0
10:14:48 DEBUG   opendrift:2116: ---------------------------------
10:14:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:14:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:14:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:14:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:14:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:14:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:14:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:14:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 21:00:00 (before)
                2025-06-23 22:00:00 (after)
10:15:09 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:15:09 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:09 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:09 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:09 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:09 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:09 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-23 21:00:00)
10:15:09 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 21:00:00) in space  (linearNDFast)
10:15:09 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:09 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:09 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.69586005461116 and -65.68736836367586 degrees.
10:15:09 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.69586005461116 and -65.68736836367586 degrees.
10:15:09 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:09 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:09 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:09 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:09 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:09 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:09 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:09 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:09 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:09 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:09 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:09 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:09 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:09 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:15:09 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0680242 (min) 0.096848 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0425697 (min) 0.0702665 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.16874 (min) 0.170249 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 6.4113 (min) 6.5576 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 2.07466 (min) 2.23428 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.05287e-05 (min) -2.03804e-05 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.915 (min) 298.953 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:09 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:09 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.133979, mean: 1.155971, max: 1.163735
10:15:09 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:09 DEBUG   opendrift.models.physics_methods:917:    min: 5.801391, mean: 5.857366, max: 5.877012
10:15:09 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.801391, mean: 5.857366, max: 5.877012
10:15:09 DEBUG   opendrift:619: No elements hit coastline.
10:15:09 DEBUG   opendrift:702: No elements hit seafloor.
10:15:09 DEBUG   opendrift:1720: No elements to deactivate
10:15:09 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:09 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.135789 m/s - 0.137559 m/s)
10:15:09 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:09 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:09 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:09 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:09 DEBUG   opendrift:2095: ======================================================================
10:15:09 INFO    opendrift:2096: 2025-06-23 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
10:15:09 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:09 DEBUG   opendrift:2104: ======================================================================
10:15:09 DEBUG   opendrift:2115:                60.34768230861031 <- latitude -> 60.3592818305804
10:15:09 DEBUG   opendrift:2115:                4.318401650540403 <- longitude -> 4.32682996938387
10:15:09 DEBUG   opendrift:2113:                z = 0.0
10:15:09 DEBUG   opendrift:2116: ---------------------------------
10:15:09 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:09 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:09 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:09 DEBUG   opendrift.models.basemodel.environment:597: Calling reader NorKyst manual aggregate
10:15:09 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:09 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:09 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from NorKyst manual aggregate covering 1000 elements
10:15:09 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 22:00:00 (before)
                2025-06-23 23:00:00 (after)
10:15:31 DEBUG   opendrift.readers.basereader.variables:637: Checking ocean_vertical_diffusivity for invalid values
10:15:31 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:31 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:31 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:31 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:31 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:31 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x7) for time before (2025-06-23 22:00:00)
10:15:31 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 22:00:00) in space  (linearNDFast)
10:15:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:31 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:31 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.6816091654432 and -65.67318085395897 degrees.
10:15:31 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.6816091654432 and -65.67318085395897 degrees.
10:15:31 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:31 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:31 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:31 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:31 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:31 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:31 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:31 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:31 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:31 DEBUG   opendrift.models.basemodel.environment:798:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
10:15:31 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.00618814 (min) 0.0347241 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0409576 (min) 0.0644409 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0222495 (min) 0.023235 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 4.20799 (min) 4.24476 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 4.33163 (min) 4.34223 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -6.02204e-05 (min) -6.00019e-05 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.972 (min) 299 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:31 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.897236, mean: 0.903603, max: 0.906891
10:15:31 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:31 DEBUG   opendrift.models.physics_methods:917:    min: 5.160395, mean: 5.178671, max: 5.188085
10:15:31 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.160395, mean: 5.178671, max: 5.188085
10:15:31 DEBUG   opendrift:619: No elements hit coastline.
10:15:31 DEBUG   opendrift:702: No elements hit seafloor.
10:15:31 DEBUG   opendrift:1720: No elements to deactivate
10:15:31 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:31 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120786 m/s - 0.121434 m/s)
10:15:31 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:31 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:31 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:31 DEBUG   opendrift:2188: Cleaning up
10:15:31 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:31 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:31 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:31 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:31 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:31 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:31 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:31 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:31 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:31 DEBUG   opendrift:619: No elements hit coastline.
10:15:31 DEBUG   opendrift:2274: Updating minval and maxval
10:15:31 DEBUG   opendrift:2354: Writing to file
10:15:31 DEBUG   opendrift:1720: No elements to deactivate
10:15:31 DEBUG   opendrift:100: Changed mode from Mode.Run to Mode.Result
10:15:31 DEBUG   opendrift.models.oceandrift:116: No machine learning correction available.
10:15:31 DEBUG   opendrift.config:168: Adding 50 config items from environment
10:15:31 DEBUG   opendrift.config:168: Adding 5 config items from environment
10:15:31 DEBUG   opendrift.config:168: Adding 18 config items from __init__
10:15:31 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
10:15:31 DEBUG   opendrift.config:168: Adding 5 config items from __init__
10:15:31 INFO    opendrift:509: OpenDriftSimulation initialised (version 1.14.2 / v1.14.2-59-g60ee835)
10:15:31 DEBUG   opendrift.config:168: Adding 17 config items from oceandrift
10:15:31 DEBUG   opendrift.config:178:   Overwriting config item seed:z
10:15:31 DEBUG   opendrift.readers.reader_lazy:37: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:31 DEBUG   opendrift.models.basemodel.environment:312: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:31 INFO    opendrift.models.basemodel.environment:206: Adding a global landmask from GSHHG
10:15:31 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
10:15:31 DEBUG   opendrift.models.basemodel.environment:312: Added reader global_landmask
10:15:31 INFO    opendrift.models.basemodel.environment:229: Fallback values will be used for the following variables which have no readers:
10:15:31 INFO    opendrift.models.basemodel.environment:232:    x_sea_water_velocity: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    y_sea_water_velocity: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_height: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    x_wind: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    y_wind: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    upward_sea_water_velocity: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    ocean_vertical_diffusivity: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_significant_height: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_swell_wave_to_direction: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_swell_wave_significant_height: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wind_wave_to_direction: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wind_wave_mean_period: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_surface_wind_wave_significant_height: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    surface_downward_x_stress: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    surface_downward_y_stress: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    turbulent_kinetic_energy: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    turbulent_generic_length_scale: 0.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    ocean_mixed_layer_thickness: 50.000000
10:15:31 INFO    opendrift.models.basemodel.environment:232:    sea_floor_depth_below_sea_level: 10000.000000
10:15:31 DEBUG   opendrift:100: Changed mode from Mode.Config to Mode.Ready
10:15:31 DEBUG   opendrift:100: Changed mode from Mode.Ready to Mode.Run
10:15:31 DEBUG   opendrift:1788:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.14.2
  Platform: Linux, 6.8.0-1029-aws
  4.0 GB memory
  36 processors (x86_64)
  NumPy version 2.3.0
  SciPy version 1.15.2
  Matplotlib version 3.10.3
  NetCDF4 version 1.7.2
  Xarray version 2025.6.1
  ADIOS (adios_db) version 1.2.5
  Copernicusmarine version 2.1.2
  Python version 3.13.5 | packaged by conda-forge | (main, Jun 16 2025, 08:27:50) [GCC 13.3.0]
------------------------------------------------------

10:15:31 DEBUG   opendrift:1802: No output file is specified, neglecting export_buffer_length
10:15:31 DEBUG   opendrift:1920: Finalizing environment and preparing readers for simulation coverage ([np.float64(-4.71627286447143), np.float64(55.39190523302233), np.float64(13.715758357177728), np.float64(64.60825116956556)]) and time (2025-06-21 00:00:00 to 2025-06-23 23:00:00)
10:15:31 DEBUG   opendrift.models.basemodel.environment:168:    Preparing LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be for extent [np.float64(-4.71627286447143), np.float64(55.39190523302233), np.float64(13.715758357177728), np.float64(64.60825116956556)]
10:15:31 DEBUG   opendrift.models.basemodel.environment:168:    Preparing global_landmask for extent [np.float64(-4.71627286447143), np.float64(55.39190523302233), np.float64(13.715758357177728), np.float64(64.60825116956556)]
10:15:31 DEBUG   opendrift.readers.basereader.variables:553: Nothing more to prepare for global_landmask
10:15:31 DEBUG   opendrift:2007: Initial self.result, size Frozen({'trajectory': 1000, 'time': 72})
10:15:31 INFO    opendrift:885: Using existing reader for land_binary_mask
10:15:31 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:31 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:31 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:31 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:31 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:31 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:31 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:31 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:31 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:31 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:31 INFO    opendrift:914: All points are in ocean
10:15:31 INFO    opendrift:2035: Storing previous position of elements for coastline interaction
10:15:31 DEBUG   opendrift:842: to be seeded: 1000, already seeded 0
10:15:31 DEBUG   opendrift:864: Released 1000 new elements.
10:15:31 DEBUG   opendrift:2095: ======================================================================
10:15:31 INFO    opendrift:2096: 2025-06-21 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
10:15:31 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:31 DEBUG   opendrift:2104: ======================================================================
10:15:31 DEBUG   opendrift:2115:                59.997310638427734 <- latitude -> 60.002845764160156
10:15:31 DEBUG   opendrift:2115:                4.494540691375732 <- longitude -> 4.504944801330566
10:15:31 DEBUG   opendrift:2113:                z = 0.0
10:15:31 DEBUG   opendrift:2116: ---------------------------------
10:15:31 DEBUG   opendrift.models.basemodel.environment:565: Variables not covered by any reader: ['sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'sea_surface_wave_period_at_variance_spectral_density_maximum', 'sea_surface_wave_stokes_drift_x_velocity', 'turbulent_generic_length_scale', 'y_sea_water_velocity', 'turbulent_kinetic_energy', 'x_wind', 'sea_surface_wave_significant_height', 'sea_floor_depth_below_sea_level', 'surface_downward_x_stress', 'sea_surface_wave_stokes_drift_y_velocity', 'surface_downward_y_stress', 'ocean_mixed_layer_thickness', 'sea_surface_height', 'ocean_vertical_diffusivity', 'y_wind']
10:15:31 DEBUG   opendrift.readers.reader_lazy:56: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:31 DEBUG   opendrift.readers:148: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
10:15:31 INFO    opendrift.readers:61: Opening file with xr.open_dataset
10:15:32 DEBUG   opendrift.readers.reader_netCDF_CF_generic:128: Finding coordinate variables.
10:15:32 DEBUG   opendrift.readers.reader_netCDF_CF_generic:143: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'polar_stereographic', 'straight_vertical_longitude_from_pole': np.float64(70.0), 'latitude_of_projection_origin': np.float64(90.0), 'standard_parallel': np.float64(60.0), 'false_easting': np.float64(3192800.0), 'false_northing': np.float64(1784000.0), 'semi_major_axis': np.float64(6378137.0), 'semi_minor_axis': np.float64(6356752.3142), 'proj4': '+proj=stere +lat_0=90 +lat_ts=60 +lon_0=70 +x_0=3192800 +y_0=1784000 +a=6378137 +b=6356752.3142 +units=m +no_defs +type=crs'}
10:15:33 DEBUG   pyproj:40: PROJ_ERROR: proj_create: several objects matching this name: Krovak (Greenwich), Equal Earth Greenwich, Laborde Grid (Greenwich), Modified Krovak (Greenwich), Krovak East North (Greenwich), Modified Krovak East North (Greenwich), ...
10:15:33 INFO    opendrift.readers.reader_netCDF_CF_generic:332: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
10:15:33 DEBUG   opendrift.readers.reader_netCDF_CF_generic:368: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
10:15:33 DEBUG   opendrift.readers.basereader.variables:612: Setting buffer size 25 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 5 m/s and time span of 1:00:00
10:15:33 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
10:15:33 DEBUG   opendrift.readers.basereader.variables:567: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
10:15:33 DEBUG   opendrift.readers.basereader.variables:567: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
10:15:33 DEBUG   opendrift.readers.basereader.structured:153: Clearing cache for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be before starting new simulation
10:15:33 DEBUG   opendrift.readers.basereader.variables:612: Setting buffer size 11 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 2 m/s and time span of 1:00:00
10:15:33 DEBUG   opendrift.readers.basereader.variables:553: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:33 DEBUG   opendrift.readers.reader_lazy:71: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:33 DEBUG   opendrift.readers.basereader.variables:612: Setting buffer size 11 for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be, assuming a maximum average speed of 2 m/s and time span of 1:00:00
10:15:33 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:33 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:33 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:33 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:33 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:33 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:33 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:33 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:33 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:33 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:33 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:33 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:33 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:33 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:33 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:33 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:33 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 00:00:00 (before)
                2025-06-21 01:00:00 (after)
10:15:34 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:34 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:34 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:34 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:34 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:34 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x2) for time before (2025-06-21 00:00:00)
10:15:34 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 00:00:00) in space  (linearNDFast)
10:15:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:34 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:34 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
10:15:34 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
10:15:34 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:34 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:34 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:34 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:34 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:34 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.229171 (min) -0.224822 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0593461 (min) 0.0680258 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.687233 (min) -0.685381 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 2.35764 (min) 2.37433 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.97044 (min) -4.93823 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -6.39661e-07 (min) -6.16959e-07 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:34 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:34 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.738579, mean: 0.741709, max: 0.744486
10:15:34 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:34 DEBUG   opendrift.models.physics_methods:917:    min: 4.681964, mean: 4.691872, max: 4.700651
10:15:34 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.681964, mean: 4.691872, max: 4.700651
10:15:34 DEBUG   opendrift:619: No elements hit coastline.
10:15:34 DEBUG   opendrift:702: No elements hit seafloor.
10:15:34 DEBUG   opendrift:1720: No elements to deactivate
10:15:34 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:34 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.109587 m/s - 0.110025 m/s)
10:15:34 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:34 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:34 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:34 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:34 DEBUG   opendrift:2095: ======================================================================
10:15:34 INFO    opendrift:2096: 2025-06-21 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
10:15:34 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:34 DEBUG   opendrift:2104: ======================================================================
10:15:34 DEBUG   opendrift:2115:                59.99603537461877 <- latitude -> 60.00183613309658
10:15:34 DEBUG   opendrift:2115:                4.483077636408777 <- longitude -> 4.493219609249013
10:15:34 DEBUG   opendrift:2113:                z = 0.0
10:15:34 DEBUG   opendrift:2116: ---------------------------------
10:15:34 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:34 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:34 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:34 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:34 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:34 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:34 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:34 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:34 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:34 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:34 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:34 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:34 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:34 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:34 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:34 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:34 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 01:00:00 (before)
                2025-06-21 02:00:00 (after)
10:15:35 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:35 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:35 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:35 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:35 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:35 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 01:00:00)
10:15:35 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 01:00:00) in space  (linearNDFast)
10:15:35 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:35 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:35 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.51693329226356 and -65.50679132920443 degrees.
10:15:35 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.51693329226356 and -65.50679132920443 degrees.
10:15:35 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:35 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:35 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:35 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:35 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:35 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.25716 (min) -0.249866 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.180393 (min) 0.18872 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.58942 (min) -0.587111 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.13797 (min) 1.15177 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -5.62217 (min) -5.59712 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.32033e-05 (min) 3.33189e-05 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.128 (min) 298.391 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:35 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:35 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.803120, mean: 0.806447, max: 0.809695
10:15:35 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:35 DEBUG   opendrift.models.physics_methods:917:    min: 4.882249, mean: 4.892349, max: 4.902192
10:15:35 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.882249, mean: 4.892349, max: 4.902192
10:15:35 DEBUG   opendrift:619: No elements hit coastline.
10:15:35 DEBUG   opendrift:702: No elements hit seafloor.
10:15:35 DEBUG   opendrift:1720: No elements to deactivate
10:15:35 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:35 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.114275 m/s - 0.114742 m/s)
10:15:35 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:35 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:35 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:35 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:35 DEBUG   opendrift:2095: ======================================================================
10:15:35 INFO    opendrift:2096: 2025-06-21 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
10:15:35 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:35 DEBUG   opendrift:2104: ======================================================================
10:15:35 DEBUG   opendrift:2115:                59.99823496940083 <- latitude -> 60.00431598979686
10:15:35 DEBUG   opendrift:2115:                4.468424636344836 <- longitude -> 4.478107336052199
10:15:35 DEBUG   opendrift:2113:                z = 0.0
10:15:35 DEBUG   opendrift:2116: ---------------------------------
10:15:35 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:35 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:35 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:35 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:35 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:35 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:35 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:35 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:35 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:35 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:35 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:35 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:35 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:35 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:35 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:35 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:35 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 02:00:00 (before)
                2025-06-21 03:00:00 (after)
10:15:36 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:36 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:36 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:36 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:36 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:36 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x22x2) for time before (2025-06-21 02:00:00)
10:15:36 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 02:00:00) in space  (linearNDFast)
10:15:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:36 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:36 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.53158629053026 and -65.52190359055038 degrees.
10:15:36 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.53158629053026 and -65.52190359055038 degrees.
10:15:36 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:36 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:36 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:36 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:36 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:36 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.244567 (min) -0.238437 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.300844 (min) 0.308112 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.460575 (min) -0.45849 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.05782 (min) 1.09956 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -5.63239 (min) -5.56518 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.70075e-05 (min) 3.70244e-05 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.012 (min) 298.241 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:36 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:36 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.790152, mean: 0.799590, max: 0.809215
10:15:36 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:36 DEBUG   opendrift.models.physics_methods:917:    min: 4.842669, mean: 4.871498, max: 4.900740
10:15:36 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.842669, mean: 4.871498, max: 4.900740
10:15:36 DEBUG   opendrift:619: No elements hit coastline.
10:15:36 DEBUG   opendrift:702: No elements hit seafloor.
10:15:36 DEBUG   opendrift:1720: No elements to deactivate
10:15:36 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:36 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.113349 m/s - 0.114708 m/s)
10:15:36 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:36 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:36 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:36 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:36 DEBUG   opendrift:2095: ======================================================================
10:15:36 INFO    opendrift:2096: 2025-06-21 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
10:15:36 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:36 DEBUG   opendrift:2104: ======================================================================
10:15:36 DEBUG   opendrift:2115:                60.00440823418543 <- latitude -> 60.01059425748961
10:15:36 DEBUG   opendrift:2115:                4.454449249438677 <- longitude -> 4.46370552060629
10:15:36 DEBUG   opendrift:2113:                z = 0.0
10:15:36 DEBUG   opendrift:2116: ---------------------------------
10:15:36 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:36 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:36 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:36 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:36 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:36 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:36 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:36 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:36 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:36 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:36 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:36 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:36 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:36 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:36 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:36 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:36 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 03:00:00 (before)
                2025-06-21 04:00:00 (after)
10:15:37 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:37 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:37 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:37 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:37 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:37 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 03:00:00)
10:15:37 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 03:00:00) in space  (linearNDFast)
10:15:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:37 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:37 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54556167786382 and -65.53630541125756 degrees.
10:15:37 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54556167786382 and -65.53630541125756 degrees.
10:15:37 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:37 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:37 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:37 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:37 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:37 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.174695 (min) -0.173991 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.381329 (min) 0.38632 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.332007 (min) -0.330583 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.254298 (min) 0.310478 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -5.3573 (min) -5.34306 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.37079e-05 (min) 3.39893e-05 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.073 (min) 298.228 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:37 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:37 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.703880, mean: 0.706001, max: 0.708406
10:15:37 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:37 DEBUG   opendrift.models.physics_methods:917:    min: 4.570660, mean: 4.577539, max: 4.585332
10:15:37 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.570660, mean: 4.577539, max: 4.585332
10:15:37 DEBUG   opendrift:619: No elements hit coastline.
10:15:37 DEBUG   opendrift:702: No elements hit seafloor.
10:15:37 DEBUG   opendrift:1720: No elements to deactivate
10:15:37 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:37 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.106982 m/s - 0.107326 m/s)
10:15:37 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:37 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:37 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:37 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:37 DEBUG   opendrift:2095: ======================================================================
10:15:37 INFO    opendrift:2096: 2025-06-21 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
10:15:37 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:37 DEBUG   opendrift:2104: ======================================================================
10:15:37 DEBUG   opendrift:2115:                60.01333862099324 <- latitude -> 60.01956808713513
10:15:37 DEBUG   opendrift:2115:                4.443532782988991 <- longitude -> 4.452851221702909
10:15:37 DEBUG   opendrift:2113:                z = 0.0
10:15:37 DEBUG   opendrift:2116: ---------------------------------
10:15:37 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:37 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:37 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:37 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:37 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:37 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:37 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:37 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:37 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:37 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:37 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:37 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:37 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:37 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:37 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:37 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:37 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 04:00:00 (before)
                2025-06-21 05:00:00 (after)
10:15:38 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:38 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:38 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:38 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:38 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:38 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 04:00:00)
10:15:38 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 04:00:00) in space  (linearNDFast)
10:15:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:38 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:38 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.55647813965598 and -65.54715968934987 degrees.
10:15:38 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.55647813965598 and -65.54715968934987 degrees.
10:15:38 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:38 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:38 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:38 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:38 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:38 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0707601 (min) -0.0651795 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.381562 (min) 0.385037 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.2127 (min) -0.211028 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.0169551 (min) 0.0493277 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.7686 (min) -4.72281 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.8292e-05 (min) 2.8531e-05 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.194 (min) 298.259 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:38 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:38 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.548758, mean: 0.553358, max: 0.559399
10:15:38 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:38 DEBUG   opendrift.models.physics_methods:917:    min: 4.035710, mean: 4.052587, max: 4.074651
10:15:38 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.035710, mean: 4.052587, max: 4.074651
10:15:38 DEBUG   opendrift:619: No elements hit coastline.
10:15:38 DEBUG   opendrift:702: No elements hit seafloor.
10:15:38 DEBUG   opendrift:1720: No elements to deactivate
10:15:38 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:38 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.094461 m/s - 0.095373 m/s)
10:15:38 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:38 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:38 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:38 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:38 DEBUG   opendrift:2095: ======================================================================
10:15:38 INFO    opendrift:2096: 2025-06-21 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
10:15:38 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:38 DEBUG   opendrift:2104: ======================================================================
10:15:38 DEBUG   opendrift:2115:                60.022625307376714 <- latitude -> 60.02891414590911
10:15:38 DEBUG   opendrift:2115:                4.439022671625164 <- longitude -> 4.448671290679429
10:15:38 DEBUG   opendrift:2113:                z = 0.0
10:15:38 DEBUG   opendrift:2116: ---------------------------------
10:15:38 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:38 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:38 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:38 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:38 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:38 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:38 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:38 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:38 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:38 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:38 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:38 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:38 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:38 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:38 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:38 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:38 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 05:00:00 (before)
                2025-06-21 06:00:00 (after)
10:15:39 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:39 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:39 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:39 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:39 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:39 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 05:00:00)
10:15:39 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 05:00:00) in space  (linearNDFast)
10:15:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:39 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:39 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5609882475994 and -65.5513396328887 degrees.
10:15:39 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5609882475994 and -65.5513396328887 degrees.
10:15:39 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:39 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:39 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:39 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:39 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:39 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0368678 (min) 0.0463979 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.303428 (min) 0.308525 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.119648 (min) -0.117996 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.883069 (min) 0.912501 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.46461 (min) -4.42497 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.99199e-05 (min) 1.99924e-05 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.197 (min) 298.256 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:39 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:39 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.501368, mean: 0.505638, max: 0.510759
10:15:39 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:39 DEBUG   opendrift.models.physics_methods:917:    min: 3.857517, mean: 3.873906, max: 3.893475
10:15:39 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.857517, mean: 3.873906, max: 3.893475
10:15:39 DEBUG   opendrift:619: No elements hit coastline.
10:15:39 DEBUG   opendrift:702: No elements hit seafloor.
10:15:39 DEBUG   opendrift:1720: No elements to deactivate
10:15:39 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:39 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.090290 m/s - 0.091132 m/s)
10:15:39 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:39 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:39 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:39 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:39 DEBUG   opendrift:2095: ======================================================================
10:15:39 INFO    opendrift:2096: 2025-06-21 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
10:15:39 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:39 DEBUG   opendrift:2104: ======================================================================
10:15:39 DEBUG   opendrift:2115:                60.02954743763451 <- latitude -> 60.03602234252767
10:15:39 DEBUG   opendrift:2115:                4.44254440747428 <- longitude -> 4.452846480192615
10:15:39 DEBUG   opendrift:2113:                z = 0.0
10:15:39 DEBUG   opendrift:2116: ---------------------------------
10:15:39 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:39 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:39 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:39 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:39 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:39 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:39 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:39 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:39 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:39 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:39 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:39 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:39 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:39 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:39 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:39 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:39 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 06:00:00 (before)
                2025-06-21 07:00:00 (after)
10:15:40 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:40 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:40 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:40 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:40 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:40 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 06:00:00)
10:15:40 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 06:00:00) in space  (linearNDFast)
10:15:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:40 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:40 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.55746651512203 and -65.54716444081912 degrees.
10:15:40 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.55746651512203 and -65.54716444081912 degrees.
10:15:40 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:40 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:40 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:40 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:40 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:40 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.120176 (min) 0.127258 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.180826 (min) 0.184865 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0782825 (min) -0.0768154 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.399422 (min) 0.409631 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.2236 (min) -4.20467 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.0849e-06 (min) 1.1724e-06 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.111 (min) 298.239 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:40 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:40 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.438919, mean: 0.440967, max: 0.442878
10:15:40 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:40 DEBUG   opendrift.models.physics_methods:917:    min: 3.609288, mean: 3.617700, max: 3.625529
10:15:40 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.609288, mean: 3.617700, max: 3.625529
10:15:40 DEBUG   opendrift:619: No elements hit coastline.
10:15:40 DEBUG   opendrift:702: No elements hit seafloor.
10:15:40 DEBUG   opendrift:1720: No elements to deactivate
10:15:40 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:40 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.084480 m/s - 0.084860 m/s)
10:15:40 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:40 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:40 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:40 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:40 DEBUG   opendrift:2095: ======================================================================
10:15:40 INFO    opendrift:2096: 2025-06-21 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
10:15:40 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:40 DEBUG   opendrift:2104: ======================================================================
10:15:40 DEBUG   opendrift:2115:                60.032773596896035 <- latitude -> 60.03914110381244
10:15:40 DEBUG   opendrift:2115:                4.450834804113359 <- longitude -> 4.461485377689375
10:15:40 DEBUG   opendrift:2113:                z = 0.0
10:15:40 DEBUG   opendrift:2116: ---------------------------------
10:15:40 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:40 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:40 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:40 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:40 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:40 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:40 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:40 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:40 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:40 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:40 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:40 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:40 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:40 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:40 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:40 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:40 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 07:00:00 (before)
                2025-06-21 08:00:00 (after)
10:15:41 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:41 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:41 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:41 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:41 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:41 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x22x2) for time before (2025-06-21 07:00:00)
10:15:41 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 07:00:00) in space  (linearNDFast)
10:15:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:41 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:41 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54917611858826 and -65.53852553757943 degrees.
10:15:41 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54917611858826 and -65.53852553757943 degrees.
10:15:41 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:41 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:41 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:41 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:41 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:41 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.141069 (min) 0.146261 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0431226 (min) 0.0513746 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.117548 (min) -0.116226 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.105483 (min) 0.13498 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.28518 (min) -4.27156 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.44182e-05 (min) -2.43238e-05 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.125 (min) 298.301 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:41 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:41 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.449305, mean: 0.450731, max: 0.452016
10:15:41 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:41 DEBUG   opendrift.models.physics_methods:917:    min: 3.651743, mean: 3.657534, max: 3.662742
10:15:41 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.651743, mean: 3.657534, max: 3.662742
10:15:41 DEBUG   opendrift:619: No elements hit coastline.
10:15:41 DEBUG   opendrift:702: No elements hit seafloor.
10:15:41 DEBUG   opendrift:1720: No elements to deactivate
10:15:41 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:41 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.085474 m/s - 0.085731 m/s)
10:15:41 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:41 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:41 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:41 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:41 DEBUG   opendrift:2095: ======================================================================
10:15:41 INFO    opendrift:2096: 2025-06-21 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
10:15:41 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:41 DEBUG   opendrift:2104: ======================================================================
10:15:41 DEBUG   opendrift:2115:                60.03166789226887 <- latitude -> 60.03776822941076
10:15:41 DEBUG   opendrift:2115:                4.460422503529892 <- longitude -> 4.470817877769254
10:15:41 DEBUG   opendrift:2113:                z = 0.0
10:15:41 DEBUG   opendrift:2116: ---------------------------------
10:15:41 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:41 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:41 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:41 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:41 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:41 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:41 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:41 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:41 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:41 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:41 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:41 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:41 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:41 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:41 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:41 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:41 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 08:00:00 (before)
                2025-06-21 09:00:00 (after)
10:15:42 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:42 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:42 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:42 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:42 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:42 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 08:00:00)
10:15:42 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 08:00:00) in space  (linearNDFast)
10:15:42 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:42 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:42 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5395884196764 and -65.52919303817495 degrees.
10:15:42 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5395884196764 and -65.52919303817495 degrees.
10:15:42 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:42 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:42 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:42 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:42 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:42 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.102089 (min) 0.105613 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0645449 (min) -0.0573785 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.248565 (min) -0.247757 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.177384 (min) 0.190805 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.07453 (min) -4.05763 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -4.75364e-05 (min) -4.73744e-05 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.273 (min) 298.462 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:42 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:42 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.405837, mean: 0.407465, max: 0.409272
10:15:42 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:42 DEBUG   opendrift.models.physics_methods:917:    min: 3.470605, mean: 3.477560, max: 3.485262
10:15:42 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.470605, mean: 3.477560, max: 3.485262
10:15:42 DEBUG   opendrift:619: No elements hit coastline.
10:15:42 DEBUG   opendrift:702: No elements hit seafloor.
10:15:42 DEBUG   opendrift:1720: No elements to deactivate
10:15:42 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:42 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081234 m/s - 0.081577 m/s)
10:15:42 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:42 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:42 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:42 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:42 DEBUG   opendrift:2095: ======================================================================
10:15:42 INFO    opendrift:2096: 2025-06-21 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
10:15:42 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:42 DEBUG   opendrift:2104: ======================================================================
10:15:42 DEBUG   opendrift:2115:                60.02718792300222 <- latitude -> 60.033052839555104
10:15:42 DEBUG   opendrift:2115:                4.467485214202881 <- longitude -> 4.477690987386874
10:15:42 DEBUG   opendrift:2113:                z = 0.0
10:15:42 DEBUG   opendrift:2116: ---------------------------------
10:15:42 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:42 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:42 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:42 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:42 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:42 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:42 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:42 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:42 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:42 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:42 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:42 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:42 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:42 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:42 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:42 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:42 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 09:00:00 (before)
                2025-06-21 10:00:00 (after)
10:15:43 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:43 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:43 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:43 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:43 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:43 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x2) for time before (2025-06-21 09:00:00)
10:15:43 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 09:00:00) in space  (linearNDFast)
10:15:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:43 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:43 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.53252569431724 and -65.52231992462816 degrees.
10:15:43 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.53252569431724 and -65.52231992462816 degrees.
10:15:43 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:43 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:43 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:43 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:43 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:43 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0541249 (min) 0.0590031 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.1299 (min) -0.125287 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.445 (min) -0.445 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.520145 (min) 0.562974 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.25121 (min) -4.22315 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.90057e-05 (min) -5.88483e-05 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.424 (min) 298.606 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:43 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:43 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.445397, mean: 0.449052, max: 0.452346
10:15:43 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:43 DEBUG   opendrift.models.physics_methods:917:    min: 3.635828, mean: 3.650710, max: 3.664080
10:15:43 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.635828, mean: 3.650710, max: 3.664080
10:15:43 DEBUG   opendrift:619: No elements hit coastline.
10:15:43 DEBUG   opendrift:702: No elements hit seafloor.
10:15:44 DEBUG   opendrift:1720: No elements to deactivate
10:15:44 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:44 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.085101 m/s - 0.085763 m/s)
10:15:44 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:44 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:44 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:44 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:44 DEBUG   opendrift:2095: ======================================================================
10:15:44 INFO    opendrift:2096: 2025-06-21 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
10:15:44 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:44 DEBUG   opendrift:2104: ======================================================================
10:15:44 DEBUG   opendrift:2115:                60.02039780674604 <- latitude -> 60.02611482501763
10:15:44 DEBUG   opendrift:2115:                4.471785237001647 <- longitude -> 4.48210328324172
10:15:44 DEBUG   opendrift:2113:                z = 0.0
10:15:44 DEBUG   opendrift:2116: ---------------------------------
10:15:44 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:44 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:44 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:44 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:44 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:44 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:44 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:44 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:44 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:44 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:44 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:44 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:44 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:44 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:44 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:44 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:44 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 10:00:00 (before)
                2025-06-21 11:00:00 (after)
10:15:45 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:45 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:45 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:45 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:45 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:45 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x22x2) for time before (2025-06-21 10:00:00)
10:15:45 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 10:00:00) in space  (linearNDFast)
10:15:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:45 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:45 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.52822568414754 and -65.51790762484093 degrees.
10:15:45 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.52822568414754 and -65.51790762484093 degrees.
10:15:45 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:45 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:45 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:45 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:45 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:45 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0122505 (min) 0.0189562 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.156843 (min) -0.153405 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.646 (min) -0.646 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.00669842 (min) 0.0244941 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.5246 (min) -4.49857 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -4.98559e-05 (min) -4.97212e-05 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.498 (min) 298.679 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:45 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:45 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.497834, mean: 0.500550, max: 0.503618
10:15:45 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:45 DEBUG   opendrift.models.physics_methods:917:    min: 3.843898, mean: 3.854370, max: 3.866162
10:15:45 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.843898, mean: 3.854370, max: 3.866162
10:15:45 DEBUG   opendrift:619: No elements hit coastline.
10:15:45 DEBUG   opendrift:702: No elements hit seafloor.
10:15:45 DEBUG   opendrift:1720: No elements to deactivate
10:15:45 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:45 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.089971 m/s - 0.090493 m/s)
10:15:45 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:45 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:45 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:45 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:45 DEBUG   opendrift:2095: ======================================================================
10:15:45 INFO    opendrift:2096: 2025-06-21 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
10:15:45 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:45 DEBUG   opendrift:2104: ======================================================================
10:15:45 DEBUG   opendrift:2115:                60.01251878550127 <- latitude -> 60.01813612778655
10:15:45 DEBUG   opendrift:2115:                4.4726732806596505 <- longitude -> 4.483209020576468
10:15:45 DEBUG   opendrift:2113:                z = 0.0
10:15:45 DEBUG   opendrift:2116: ---------------------------------
10:15:45 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:45 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:45 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:45 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:45 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:45 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:45 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:45 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:45 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:45 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:45 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:45 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:45 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:45 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:45 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:45 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:45 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 11:00:00 (before)
                2025-06-21 12:00:00 (after)
10:15:46 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:46 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:46 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:46 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:46 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:46 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 11:00:00)
10:15:46 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 11:00:00) in space  (linearNDFast)
10:15:46 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:46 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:46 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.52733764309355 and -65.51680190505341 degrees.
10:15:46 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.52733764309355 and -65.51680190505341 degrees.
10:15:46 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:46 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:46 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:46 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:46 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:46 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0553239 (min) -0.0453867 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.148618 (min) -0.14475 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.779018 (min) -0.778573 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.475332 (min) -0.431082 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.69971 (min) -4.67908 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.20937e-05 (min) -2.18707e-05 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.438 (min) 298.625 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:46 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:46 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.544067, mean: 0.545959, max: 0.548150
10:15:46 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:46 DEBUG   opendrift.models.physics_methods:917:    min: 4.018423, mean: 4.025403, max: 4.033475
10:15:46 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.018423, mean: 4.025403, max: 4.033475
10:15:46 DEBUG   opendrift:619: No elements hit coastline.
10:15:46 DEBUG   opendrift:702: No elements hit seafloor.
10:15:46 DEBUG   opendrift:1720: No elements to deactivate
10:15:46 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:46 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.094056 m/s - 0.094409 m/s)
10:15:46 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:46 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:46 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:46 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:46 DEBUG   opendrift:2095: ======================================================================
10:15:46 INFO    opendrift:2096: 2025-06-21 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
10:15:46 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:46 DEBUG   opendrift:2104: ======================================================================
10:15:46 DEBUG   opendrift:2115:                60.004782124187805 <- latitude -> 60.01032298966675
10:15:46 DEBUG   opendrift:2115:                4.46853375797432 <- longitude -> 4.479618076843218
10:15:46 DEBUG   opendrift:2113:                z = 0.0
10:15:46 DEBUG   opendrift:2116: ---------------------------------
10:15:46 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:46 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:46 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:46 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:46 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:46 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:46 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:46 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:46 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:46 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:46 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:46 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:46 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:46 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:46 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:46 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:46 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 12:00:00 (before)
                2025-06-21 13:00:00 (after)
10:15:47 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:47 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:47 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:47 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:47 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:47 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 12:00:00)
10:15:47 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 12:00:00) in space  (linearNDFast)
10:15:47 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:47 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:47 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5314771691323 and -65.52039284126027 degrees.
10:15:47 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.5314771691323 and -65.52039284126027 degrees.
10:15:47 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:47 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:47 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:47 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:47 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:47 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.160388 (min) -0.151001 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.105755 (min) -0.102493 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.810397 (min) -0.808694 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.762736 (min) -0.716424 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.7797 (min) -4.74374 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.06104e-06 (min) 5.23727e-06 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.222 (min) 298.425 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:47 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:47 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.567860, mean: 0.571298, max: 0.574718
10:15:47 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:47 DEBUG   opendrift.models.physics_methods:917:    min: 4.105350, mean: 4.117755, max: 4.130068
10:15:47 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.105350, mean: 4.117755, max: 4.130068
10:15:47 DEBUG   opendrift:619: No elements hit coastline.
10:15:47 DEBUG   opendrift:702: No elements hit seafloor.
10:15:47 DEBUG   opendrift:1720: No elements to deactivate
10:15:47 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:47 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.096091 m/s - 0.096670 m/s)
10:15:47 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:47 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:47 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:47 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:47 DEBUG   opendrift:2095: ======================================================================
10:15:47 INFO    opendrift:2096: 2025-06-21 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
10:15:47 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:47 DEBUG   opendrift:2104: ======================================================================
10:15:47 DEBUG   opendrift:2115:                59.99829319198471 <- latitude -> 60.003884947761854
10:15:47 DEBUG   opendrift:2115:                4.457311600950546 <- longitude -> 4.4689113128313425
10:15:47 DEBUG   opendrift:2113:                z = 0.0
10:15:47 DEBUG   opendrift:2116: ---------------------------------
10:15:47 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:47 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:47 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:47 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:47 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:47 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:47 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:47 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:47 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:47 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:47 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:47 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:47 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:47 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:47 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:47 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:47 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 13:00:00 (before)
                2025-06-21 14:00:00 (after)
10:15:48 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:48 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:48 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:48 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x2) for time before (2025-06-21 13:00:00)
10:15:48 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 13:00:00) in space  (linearNDFast)
10:15:48 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:48 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54269931584906 and -65.53109960478884 degrees.
10:15:48 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.54269931584906 and -65.53109960478884 degrees.
10:15:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:48 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:48 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:48 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:48 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:48 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.266374 (min) -0.257525 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0129167 (min) -0.00679012 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.747862 (min) -0.745668 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.03862 (min) -0.995495 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.77912 (min) -4.74481 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.78787e-05 (min) 2.79432e-05 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.912 (min) 298.105 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:48 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:48 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.580361, mean: 0.583536, max: 0.586301
10:15:48 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:48 DEBUG   opendrift.models.physics_methods:917:    min: 4.150294, mean: 4.161628, max: 4.171478
10:15:48 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.150294, mean: 4.161628, max: 4.171478
10:15:48 DEBUG   opendrift:619: No elements hit coastline.
10:15:48 DEBUG   opendrift:702: No elements hit seafloor.
10:15:48 DEBUG   opendrift:1720: No elements to deactivate
10:15:48 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:48 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.097143 m/s - 0.097639 m/s)
10:15:48 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:48 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:48 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:48 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:48 DEBUG   opendrift:2095: ======================================================================
10:15:48 INFO    opendrift:2096: 2025-06-21 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
10:15:48 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:48 DEBUG   opendrift:2104: ======================================================================
10:15:48 DEBUG   opendrift:2115:                59.99483554923186 <- latitude -> 60.000586329098766
10:15:48 DEBUG   opendrift:2115:                4.439196843221135 <- longitude -> 4.4507974028073924
10:15:48 DEBUG   opendrift:2113:                z = 0.0
10:15:48 DEBUG   opendrift:2116: ---------------------------------
10:15:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:48 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:48 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:48 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:48 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:48 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:48 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:48 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:48 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:48 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:48 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 14:00:00 (before)
                2025-06-21 15:00:00 (after)
10:15:49 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:49 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:49 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:49 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:49 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:49 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x23x2) for time before (2025-06-21 14:00:00)
10:15:49 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 14:00:00) in space  (linearNDFast)
10:15:49 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:49 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:49 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.56081408563242 and -65.54921352775757 degrees.
10:15:49 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.56081408563242 and -65.54921352775757 degrees.
10:15:49 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:49 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:49 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:49 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:49 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:49 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.320912 (min) -0.311694 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.13235 (min) 0.137927 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.623022 (min) -0.621216 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.75001 (min) -1.69926 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.80621 (min) -4.77068 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.88683e-05 (min) 3.90248e-05 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.688 (min) 297.905 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:49 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:49 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.635220, mean: 0.637276, max: 0.639284
10:15:49 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:49 DEBUG   opendrift.models.physics_methods:917:    min: 4.342020, mean: 4.349038, max: 4.355886
10:15:49 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.342020, mean: 4.349038, max: 4.355886
10:15:49 DEBUG   opendrift:619: No elements hit coastline.
10:15:49 DEBUG   opendrift:702: No elements hit seafloor.
10:15:49 DEBUG   opendrift:1720: No elements to deactivate
10:15:49 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:49 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101631 m/s - 0.101955 m/s)
10:15:49 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:49 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:49 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:49 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:49 DEBUG   opendrift:2095: ======================================================================
10:15:49 INFO    opendrift:2096: 2025-06-21 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
10:15:49 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:49 DEBUG   opendrift:2104: ======================================================================
10:15:49 DEBUG   opendrift:2115:                59.996039886020064 <- latitude -> 60.001947662790265
10:15:49 DEBUG   opendrift:2115:                4.416445620695066 <- longitude -> 4.428390357513542
10:15:49 DEBUG   opendrift:2113:                z = 0.0
10:15:49 DEBUG   opendrift:2116: ---------------------------------
10:15:49 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:49 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:49 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:49 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:49 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:49 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:49 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:49 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:49 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:49 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:49 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:49 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:49 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:49 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:49 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:49 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:49 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 15:00:00 (before)
                2025-06-21 16:00:00 (after)
10:15:50 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:50 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:50 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:50 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:50 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:50 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 15:00:00)
10:15:50 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 15:00:00) in space  (linearNDFast)
10:15:50 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:50 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:50 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.58356530642081 and -65.57162057234852 degrees.
10:15:50 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.58356530642081 and -65.57162057234852 degrees.
10:15:50 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:50 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:50 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:50 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:50 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:50 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.341214 (min) -0.316083 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.275943 (min) 0.283304 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.473042 (min) -0.471203 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -2.07751 (min) -2.01369 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -5.11736 (min) -5.08987 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.25836e-05 (min) 4.28177e-05 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.784 (min) 298.033 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:50 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:50 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.742120, mean: 0.743613, max: 0.745045
10:15:50 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:50 DEBUG   opendrift.models.physics_methods:917:    min: 4.693173, mean: 4.697892, max: 4.702412
10:15:50 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.693173, mean: 4.697892, max: 4.702412
10:15:50 DEBUG   opendrift:619: No elements hit coastline.
10:15:50 DEBUG   opendrift:702: No elements hit seafloor.
10:15:50 DEBUG   opendrift:1720: No elements to deactivate
10:15:50 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:50 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.109850 m/s - 0.110066 m/s)
10:15:50 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:50 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:50 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:50 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:50 DEBUG   opendrift:2095: ======================================================================
10:15:50 INFO    opendrift:2096: 2025-06-21 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
10:15:50 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:50 DEBUG   opendrift:2104: ======================================================================
10:15:50 DEBUG   opendrift:2115:                60.00167861517525 <- latitude -> 60.007796137737905
10:15:50 DEBUG   opendrift:2115:                4.391752911519761 <- longitude -> 4.40539538749518
10:15:50 DEBUG   opendrift:2113:                z = 0.0
10:15:50 DEBUG   opendrift:2116: ---------------------------------
10:15:50 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:50 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:50 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:50 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:50 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:50 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:50 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:50 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:50 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:50 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:50 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:50 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:50 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:50 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:50 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:50 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:50 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 16:00:00 (before)
                2025-06-21 17:00:00 (after)
10:15:51 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:51 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:51 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:51 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:51 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:51 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 16:00:00)
10:15:51 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 16:00:00) in space  (linearNDFast)
10:15:51 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:51 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:51 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.60825802039618 and -65.5946155439906 degrees.
10:15:51 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.60825802039618 and -65.5946155439906 degrees.
10:15:51 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:51 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:51 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:51 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:51 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:51 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.307328 (min) -0.260899 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.381122 (min) 0.400786 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.321813 (min) -0.319721 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.35284 (min) -1.28983 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -4.5021 (min) -4.46365 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.15484e-05 (min) 4.18044e-05 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.212 (min) 298.481 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:51 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:51 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.533998, mean: 0.537345, max: 0.540574
10:15:51 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:51 DEBUG   opendrift.models.physics_methods:917:    min: 3.981068, mean: 3.993521, max: 4.005503
10:15:51 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.981068, mean: 3.993521, max: 4.005503
10:15:51 DEBUG   opendrift:619: No elements hit coastline.
10:15:51 DEBUG   opendrift:702: No elements hit seafloor.
10:15:51 DEBUG   opendrift:1720: No elements to deactivate
10:15:51 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:51 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.093182 m/s - 0.093754 m/s)
10:15:51 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:51 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:51 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:51 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:51 DEBUG   opendrift:2095: ======================================================================
10:15:51 INFO    opendrift:2096: 2025-06-21 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
10:15:51 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:51 DEBUG   opendrift:2104: ======================================================================
10:15:51 DEBUG   opendrift:2115:                60.01122252808642 <- latitude -> 60.01762716822442
10:15:51 DEBUG   opendrift:2115:                4.370168008866185 <- longitude -> 4.386890669845002
10:15:51 DEBUG   opendrift:2113:                z = 0.0
10:15:51 DEBUG   opendrift:2116: ---------------------------------
10:15:51 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:51 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:51 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:51 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:51 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:51 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:51 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:51 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:51 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:51 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:51 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:51 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:51 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:51 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:51 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:51 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:51 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:51 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 17:00:00 (before)
                2025-06-21 18:00:00 (after)
10:15:52 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:52 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:52 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:52 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:52 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:52 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 17:00:00)
10:15:52 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 17:00:00) in space  (linearNDFast)
10:15:52 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:52 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:52 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.62984291619807 and -65.6131202600059 degrees.
10:15:52 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.62984291619807 and -65.6131202600059 degrees.
10:15:52 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:52 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:52 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:52 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:52 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:52 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.229563 (min) -0.180853 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.41967 (min) 0.4598 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.180401 (min) -0.177849 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.594336 (min) -0.528388 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -3.63629 (min) -3.59416 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.71524e-05 (min) 3.73529e-05 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.652 (min) 298.81 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:52 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:52 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.326034, mean: 0.329123, max: 0.332576
10:15:52 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:52 DEBUG   opendrift.models.physics_methods:917:    min: 3.110720, mean: 3.125419, max: 3.141773
10:15:52 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.110720, mean: 3.125419, max: 3.141773
10:15:52 DEBUG   opendrift:619: No elements hit coastline.
10:15:52 DEBUG   opendrift:702: No elements hit seafloor.
10:15:52 DEBUG   opendrift:1720: No elements to deactivate
10:15:52 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:52 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.072810 m/s - 0.073537 m/s)
10:15:52 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:52 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:52 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:52 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:52 DEBUG   opendrift:2095: ======================================================================
10:15:52 INFO    opendrift:2096: 2025-06-21 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
10:15:52 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:52 DEBUG   opendrift:2104: ======================================================================
10:15:52 DEBUG   opendrift:2115:                60.0227437602981 <- latitude -> 60.02956309502488
10:15:52 DEBUG   opendrift:2115:                4.354718537645065 <- longitude -> 4.374531446831335
10:15:52 DEBUG   opendrift:2113:                z = 0.0
10:15:52 DEBUG   opendrift:2116: ---------------------------------
10:15:52 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:52 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:52 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:52 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:52 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:52 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:52 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:52 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:52 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:52 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:52 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:52 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:52 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:52 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:52 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:52 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:52 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 18:00:00 (before)
                2025-06-21 19:00:00 (after)
10:15:54 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:54 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:54 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:54 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:54 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:54 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 18:00:00)
10:15:54 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 18:00:00) in space  (linearNDFast)
10:15:54 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:54 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:54 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.64529239079604 and -65.6254794874264 degrees.
10:15:54 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.64529239079604 and -65.6254794874264 degrees.
10:15:54 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:54 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:54 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:54 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:54 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:54 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.115358 (min) -0.0783238 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.392599 (min) 0.445743 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0723991 (min) -0.0700467 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.512133 (min) -0.431467 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -2.98816 (min) -2.97891 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.27559e-05 (min) 2.31387e-05 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.446 (min) 298.714 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:54 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:54 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.224232, mean: 0.224450, max: 0.224750
10:15:54 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:54 DEBUG   opendrift.models.physics_methods:917:    min: 2.579753, mean: 2.581010, max: 2.582730
10:15:54 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 2.579753, mean: 2.581010, max: 2.582730
10:15:54 DEBUG   opendrift:619: No elements hit coastline.
10:15:54 DEBUG   opendrift:702: No elements hit seafloor.
10:15:54 DEBUG   opendrift:1720: No elements to deactivate
10:15:54 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:54 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.060382 m/s - 0.060452 m/s)
10:15:54 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:54 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:54 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:54 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:54 DEBUG   opendrift:2095: ======================================================================
10:15:54 INFO    opendrift:2096: 2025-06-21 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
10:15:54 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:54 DEBUG   opendrift:2104: ======================================================================
10:15:54 DEBUG   opendrift:2115:                60.033753224163796 <- latitude -> 60.041552244057854
10:15:54 DEBUG   opendrift:2115:                4.346720179647602 <- longitude -> 4.368915504771072
10:15:54 DEBUG   opendrift:2113:                z = 0.0
10:15:54 DEBUG   opendrift:2116: ---------------------------------
10:15:54 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:54 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:54 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:54 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:54 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:54 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:54 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:54 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:54 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:54 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:54 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:54 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:54 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:54 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:54 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:54 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:54 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:54 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 19:00:00 (before)
                2025-06-21 20:00:00 (after)
10:15:55 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:55 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:55 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:55 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:55 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:55 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 19:00:00)
10:15:55 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 19:00:00) in space  (linearNDFast)
10:15:55 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:55 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:55 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.6532907384788 and -65.63109542134795 degrees.
10:15:55 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.6532907384788 and -65.63109542134795 degrees.
10:15:55 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:55 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:55 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:55 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:55 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:55 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0152737 (min) 0.0193682 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.317881 (min) 0.347518 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0303417 (min) -0.0283396 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -2.80733 (min) -2.71988 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -3.04942 (min) -3.03749 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.24946e-06 (min) -1.40221e-06 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.488 (min) 298.259 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:55 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:55 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.410739, mean: 0.415570, max: 0.420905
10:15:55 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:55 DEBUG   opendrift.models.physics_methods:917:    min: 3.491503, mean: 3.511968, max: 3.534449
10:15:55 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.491503, mean: 3.511968, max: 3.534449
10:15:55 DEBUG   opendrift:619: No elements hit coastline.
10:15:55 DEBUG   opendrift:702: No elements hit seafloor.
10:15:55 DEBUG   opendrift:1720: No elements to deactivate
10:15:55 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:55 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081723 m/s - 0.082728 m/s)
10:15:55 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:55 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:55 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:55 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:55 DEBUG   opendrift:2095: ======================================================================
10:15:55 INFO    opendrift:2096: 2025-06-21 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
10:15:55 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:55 DEBUG   opendrift:2104: ======================================================================
10:15:55 DEBUG   opendrift:2115:                60.04236334998423 <- latitude -> 60.05020352127805
10:15:55 DEBUG   opendrift:2115:                4.3421130743931755 <- longitude -> 4.3666527169642215
10:15:55 DEBUG   opendrift:2113:                z = 0.0
10:15:55 DEBUG   opendrift:2116: ---------------------------------
10:15:55 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:55 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:55 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:55 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:55 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:55 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:55 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:55 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:55 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:55 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:55 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:55 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:55 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:55 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:55 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:55 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:55 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:55 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 20:00:00 (before)
                2025-06-21 21:00:00 (after)
10:15:56 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:56 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:56 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:56 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:56 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:56 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-21 20:00:00)
10:15:56 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 20:00:00) in space  (linearNDFast)
10:15:56 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:56 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:56 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.65789784392592 and -65.63335819944709 degrees.
10:15:56 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.65789784392592 and -65.63335819944709 degrees.
10:15:56 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:56 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:56 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:56 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:56 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:56 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0307385 (min) 0.0523886 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.126143 (min) 0.195118 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0925936 (min) -0.0900879 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.44804 (min) -3.42997 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -1.69426 (min) -1.64776 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -3.00194e-05 (min) -2.9285e-05 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.513 (min) 297.619 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:56 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:56 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.358837, mean: 0.359263, max: 0.360256
10:15:56 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:56 DEBUG   opendrift.models.physics_methods:917:    min: 3.263458, mean: 3.265393, max: 3.269904
10:15:56 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.263458, mean: 3.265393, max: 3.269904
10:15:56 DEBUG   opendrift:619: No elements hit coastline.
10:15:56 DEBUG   opendrift:702: No elements hit seafloor.
10:15:56 DEBUG   opendrift:1720: No elements to deactivate
10:15:56 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:56 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.076385 m/s - 0.076536 m/s)
10:15:56 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:56 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:56 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:56 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:56 DEBUG   opendrift:2095: ======================================================================
10:15:56 INFO    opendrift:2096: 2025-06-21 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
10:15:56 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:56 DEBUG   opendrift:2104: ======================================================================
10:15:56 DEBUG   opendrift:2115:                60.04736530690599 <- latitude -> 60.053298802674625
10:15:56 DEBUG   opendrift:2115:                4.339644238802732 <- longitude -> 4.36560371822677
10:15:56 DEBUG   opendrift:2113:                z = 0.0
10:15:56 DEBUG   opendrift:2116: ---------------------------------
10:15:56 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:56 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:56 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:56 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:56 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:56 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:56 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:56 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:56 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:56 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:56 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:56 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:56 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:56 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:56 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:56 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:56 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:56 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 21:00:00 (before)
                2025-06-21 22:00:00 (after)
10:15:57 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:57 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:57 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:57 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:57 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:57 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x24x2) for time before (2025-06-21 21:00:00)
10:15:57 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 21:00:00) in space  (linearNDFast)
10:15:57 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:57 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:57 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.66036667713087 and -65.63440720056197 degrees.
10:15:57 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.66036667713087 and -65.63440720056197 degrees.
10:15:57 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:57 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:57 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:57 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:57 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:57 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0189453 (min) -0.0137745 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0432317 (min) 0.037728 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.242677 (min) -0.240994 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.37992 (min) -4.30254 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: -1.01126 (min) -0.956124 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.27412e-05 (min) -5.23048e-05 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.124 (min) 297.164 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:57 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:57 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.480548, mean: 0.486999, max: 0.494407
10:15:57 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:57 DEBUG   opendrift.models.physics_methods:917:    min: 3.776573, mean: 3.801829, max: 3.830645
10:15:57 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.776573, mean: 3.801829, max: 3.830645
10:15:57 DEBUG   opendrift:619: No elements hit coastline.
10:15:57 DEBUG   opendrift:702: No elements hit seafloor.
10:15:57 DEBUG   opendrift:1720: No elements to deactivate
10:15:57 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:57 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.088396 m/s - 0.089661 m/s)
10:15:57 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:57 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:57 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:57 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:57 DEBUG   opendrift:2095: ======================================================================
10:15:57 INFO    opendrift:2096: 2025-06-21 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
10:15:57 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:57 DEBUG   opendrift:2104: ======================================================================
10:15:57 DEBUG   opendrift:2115:                60.04792549477244 <- latitude -> 60.05177805361102
10:15:57 DEBUG   opendrift:2115:                4.332989874500216 <- longitude -> 4.359154031037653
10:15:57 DEBUG   opendrift:2113:                z = 0.0
10:15:57 DEBUG   opendrift:2116: ---------------------------------
10:15:57 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:57 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:57 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:57 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:57 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:57 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:57 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:57 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:57 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:57 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:57 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:57 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:57 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:57 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:57 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:57 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:57 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 22:00:00 (before)
                2025-06-21 23:00:00 (after)
10:15:58 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:58 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:58 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:58 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:58 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:58 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x24x2) for time before (2025-06-21 22:00:00)
10:15:58 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 22:00:00) in space  (linearNDFast)
10:15:58 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:58 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:58 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.66702104557473 and -65.6408568898025 degrees.
10:15:58 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.66702104557473 and -65.6408568898025 degrees.
10:15:58 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:58 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:58 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:58 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:58 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:58 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0988488 (min) -0.0904559 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.116159 (min) -0.0257781 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.445257 (min) -0.444188 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.0678 (min) -4.01006 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.13163 (min) 1.14915 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.61542e-05 (min) -5.60116e-05 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.237 (min) 297.008 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:58 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:58 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.428067, mean: 0.432515, max: 0.438606
10:15:58 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:58 DEBUG   opendrift.models.physics_methods:917:    min: 3.564392, mean: 3.582858, max: 3.608002
10:15:58 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.564392, mean: 3.582858, max: 3.608002
10:15:58 DEBUG   opendrift:619: No elements hit coastline.
10:15:58 DEBUG   opendrift:702: No elements hit seafloor.
10:15:58 DEBUG   opendrift:1720: No elements to deactivate
10:15:58 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:58 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.083429 m/s - 0.084450 m/s)
10:15:58 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:58 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:58 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:58 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:58 DEBUG   opendrift:2095: ======================================================================
10:15:58 INFO    opendrift:2096: 2025-06-21 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
10:15:58 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:58 DEBUG   opendrift:2104: ======================================================================
10:15:58 DEBUG   opendrift:2115:                60.04698784625578 <- latitude -> 60.049672316536146
10:15:58 DEBUG   opendrift:2115:                4.32188930870413 <- longitude -> 4.347964722517928
10:15:58 DEBUG   opendrift:2113:                z = 0.0
10:15:58 DEBUG   opendrift:2116: ---------------------------------
10:15:58 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:58 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:58 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:58 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:58 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:58 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:58 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:58 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:58 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:58 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:58 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:58 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:58 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:58 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:58 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:58 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:58 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:58 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-21 23:00:00 (before)
                2025-06-22 00:00:00 (after)
10:15:59 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:15:59 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:15:59 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:15:59 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:15:59 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:15:59 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-21 23:00:00)
10:15:59 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-21 23:00:00) in space  (linearNDFast)
10:15:59 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:15:59 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:15:59 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.67812160457122 and -65.65204620240314 degrees.
10:15:59 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.67812160457122 and -65.65204620240314 degrees.
10:15:59 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:59 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:15:59 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:15:59 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:15:59 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:15:59 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.15764 (min) -0.147407 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.140376 (min) -0.0548623 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.615787 (min) -0.614902 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.24612 (min) -3.14832 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 2.45991 (min) 2.49468 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -3.53779e-05 (min) -3.53445e-05 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.334 (min) 296.851 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:15:59 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:15:59 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.392692, mean: 0.398965, max: 0.412314
10:15:59 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:15:59 DEBUG   opendrift.models.physics_methods:917:    min: 3.413939, mean: 3.441067, max: 3.498194
10:15:59 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.413939, mean: 3.441067, max: 3.498194
10:15:59 DEBUG   opendrift:619: No elements hit coastline.
10:15:59 DEBUG   opendrift:702: No elements hit seafloor.
10:15:59 DEBUG   opendrift:1720: No elements to deactivate
10:15:59 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:15:59 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.079908 m/s - 0.081880 m/s)
10:15:59 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:15:59 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:15:59 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:15:59 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:15:59 DEBUG   opendrift:2095: ======================================================================
10:15:59 INFO    opendrift:2096: 2025-06-22 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
10:15:59 DEBUG   opendrift:2102: 0 elements scheduled.
10:15:59 DEBUG   opendrift:2104: ======================================================================
10:15:59 DEBUG   opendrift:2115:                60.04452088658136 <- latitude -> 60.04854091882548
10:15:59 DEBUG   opendrift:2115:                4.3080557297213256 <- longitude -> 4.334115045008346
10:15:59 DEBUG   opendrift:2113:                z = 0.0
10:15:59 DEBUG   opendrift:2116: ---------------------------------
10:15:59 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:59 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:15:59 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:59 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:15:59 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:59 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:59 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:15:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:15:59 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:15:59 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:15:59 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:15:59 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:15:59 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:15:59 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:15:59 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:15:59 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:15:59 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:15:59 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:15:59 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 00:00:00 (before)
                2025-06-22 01:00:00 (after)
10:16:00 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:00 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:00 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:00 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:00 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:00 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-22 00:00:00)
10:16:00 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 00:00:00) in space  (linearNDFast)
10:16:00 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:00 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:00 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.69195519697406 and -65.66589587387705 degrees.
10:16:00 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.69195519697406 and -65.66589587387705 degrees.
10:16:00 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:00 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:00 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:00 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:00 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:00 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.20384 (min) -0.187735 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.110202 (min) -0.0534753 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.693289 (min) -0.692682 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.16145 (min) -3.11546 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.69919 (min) 1.81025 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -6.91032e-08 (min) -1.86443e-08 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.305 (min) 296.647 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:00 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:00 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.316735, mean: 0.318314, max: 0.319821
10:16:00 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:00 DEBUG   opendrift.models.physics_methods:917:    min: 3.066039, mean: 3.073672, max: 3.080937
10:16:00 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.066039, mean: 3.073672, max: 3.080937
10:16:00 DEBUG   opendrift:619: No elements hit coastline.
10:16:00 DEBUG   opendrift:702: No elements hit seafloor.
10:16:00 DEBUG   opendrift:1720: No elements to deactivate
10:16:00 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:00 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.071765 m/s - 0.072113 m/s)
10:16:00 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:00 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:00 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:00 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:00 DEBUG   opendrift:2095: ======================================================================
10:16:00 INFO    opendrift:2096: 2025-06-22 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
10:16:00 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:00 DEBUG   opendrift:2104: ======================================================================
10:16:00 DEBUG   opendrift:2115:                60.04217824076636 <- latitude -> 60.04761799495587
10:16:00 DEBUG   opendrift:2115:                4.291021929860193 <- longitude -> 4.3177791000769785
10:16:00 DEBUG   opendrift:2113:                z = 0.0
10:16:00 DEBUG   opendrift:2116: ---------------------------------
10:16:00 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:00 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:00 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:00 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:00 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:00 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:00 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:00 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:00 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:00 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:00 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:00 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:00 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:00 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:00 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:00 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:00 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:00 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 01:00:00 (before)
                2025-06-22 02:00:00 (after)
10:16:01 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:01 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:01 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:01 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:01 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:01 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x2) for time before (2025-06-22 01:00:00)
10:16:01 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 01:00:00) in space  (linearNDFast)
10:16:01 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:01 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:01 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.70898900584115 and -65.68223183023692 degrees.
10:16:01 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.70898900584115 and -65.68223183023692 degrees.
10:16:01 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:01 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:01 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:01 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:01 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:01 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.249676 (min) -0.226453 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0543799 (min) -0.0212887 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.668943 (min) -0.667831 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.39058 (min) -4.36352 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 3.48906 (min) 3.53203 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.82743e-05 (min) 1.89392e-05 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.184 (min) 296.521 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:01 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:01 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.767861, mean: 0.775979, max: 0.780071
10:16:01 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:01 DEBUG   opendrift.models.physics_methods:917:    min: 4.773875, mean: 4.799038, max: 4.811680
10:16:01 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.773875, mean: 4.799038, max: 4.811680
10:16:01 DEBUG   opendrift:619: No elements hit coastline.
10:16:01 DEBUG   opendrift:702: No elements hit seafloor.
10:16:01 DEBUG   opendrift:1720: No elements to deactivate
10:16:01 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:01 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.111739 m/s - 0.112624 m/s)
10:16:01 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:01 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:01 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:01 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:01 DEBUG   opendrift:2095: ======================================================================
10:16:01 INFO    opendrift:2096: 2025-06-22 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
10:16:01 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:01 DEBUG   opendrift:2104: ======================================================================
10:16:01 DEBUG   opendrift:2115:                60.04270247470322 <- latitude -> 60.049114046076554
10:16:01 DEBUG   opendrift:2115:                4.269237244581543 <- longitude -> 4.297417298429649
10:16:01 DEBUG   opendrift:2113:                z = 0.0
10:16:01 DEBUG   opendrift:2116: ---------------------------------
10:16:01 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:01 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:01 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:01 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:01 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:01 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:01 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:01 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:01 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:01 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:01 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:01 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:01 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:01 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:01 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:01 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:01 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 02:00:00 (before)
                2025-06-22 03:00:00 (after)
10:16:02 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:02 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:02 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:02 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:02 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:02 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-22 02:00:00)
10:16:02 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 02:00:00) in space  (linearNDFast)
10:16:02 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:02 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:02 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.73077368087283 and -65.70259362420978 degrees.
10:16:02 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.73077368087283 and -65.70259362420978 degrees.
10:16:02 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:02 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:02 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:02 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:02 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:02 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.285949 (min) -0.254239 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0292902 (min) 0.0431282 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.58059 (min) -0.578427 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.34242 (min) -3.32272 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.36112 (min) 5.40172 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.13546e-05 (min) 3.14944e-05 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 295.698 (min) 296.09 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:02 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:02 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.978640, mean: 0.985883, max: 0.991137
10:16:02 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:02 DEBUG   opendrift.models.physics_methods:917:    min: 5.389408, mean: 5.409312, max: 5.423711
10:16:02 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.389408, mean: 5.409312, max: 5.423711
10:16:02 DEBUG   opendrift:619: No elements hit coastline.
10:16:02 DEBUG   opendrift:702: No elements hit seafloor.
10:16:02 DEBUG   opendrift:1720: No elements to deactivate
10:16:02 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:02 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.126146 m/s - 0.126949 m/s)
10:16:02 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:02 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:02 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:02 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:02 DEBUG   opendrift:2095: ======================================================================
10:16:02 INFO    opendrift:2096: 2025-06-22 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
10:16:02 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:02 DEBUG   opendrift:2104: ======================================================================
10:16:02 DEBUG   opendrift:2115:                60.047220714242776 <- latitude -> 60.05398561718794
10:16:02 DEBUG   opendrift:2115:                4.246470987301442 <- longitude -> 4.2765607057196435
10:16:02 DEBUG   opendrift:2113:                z = 0.0
10:16:02 DEBUG   opendrift:2116: ---------------------------------
10:16:02 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:02 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:02 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:02 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:02 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:02 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:02 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:02 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:02 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:02 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:02 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:02 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:02 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:02 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:02 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:02 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:02 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 03:00:00 (before)
                2025-06-22 04:00:00 (after)
10:16:03 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:03 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:03 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:03 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:03 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:03 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-22 03:00:00)
10:16:03 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 03:00:00) in space  (linearNDFast)
10:16:03 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:03 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:04 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.7535399398101 and -65.72345022078444 degrees.
10:16:04 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.7535399398101 and -65.72345022078444 degrees.
10:16:04 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:04 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:04 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:04 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:04 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:04 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.29007 (min) -0.260288 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.133094 (min) 0.146158 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.446308 (min) -0.443408 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.27609 (min) -3.17395 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 6.21733 (min) 6.2474 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.72004e-05 (min) 4.7981e-05 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 294.862 (min) 295.297 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:04 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:04 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.207651, mean: 1.210506, max: 1.214942
10:16:04 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:04 DEBUG   opendrift.models.physics_methods:917:    min: 5.986878, mean: 5.993949, max: 6.004922
10:16:04 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.986878, mean: 5.993949, max: 6.004922
10:16:04 DEBUG   opendrift:619: No elements hit coastline.
10:16:04 DEBUG   opendrift:702: No elements hit seafloor.
10:16:04 DEBUG   opendrift:1720: No elements to deactivate
10:16:04 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:04 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.140131 m/s - 0.140553 m/s)
10:16:04 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:04 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:04 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:04 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:04 DEBUG   opendrift:2095: ======================================================================
10:16:04 INFO    opendrift:2096: 2025-06-22 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
10:16:04 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:04 DEBUG   opendrift:2104: ======================================================================
10:16:04 DEBUG   opendrift:2115:                60.0558636931583 <- latitude -> 60.062480198322326
10:16:04 DEBUG   opendrift:2115:                4.223493068038971 <- longitude -> 4.255483127577477
10:16:04 DEBUG   opendrift:2113:                z = 0.0
10:16:04 DEBUG   opendrift:2116: ---------------------------------
10:16:04 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:04 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:04 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:04 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:04 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:04 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:04 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:04 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:04 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:04 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:04 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:04 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:04 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:04 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:04 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:04 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:04 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 04:00:00 (before)
                2025-06-22 05:00:00 (after)
10:16:05 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:05 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:05 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:05 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:05 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:05 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x2) for time before (2025-06-22 04:00:00)
10:16:05 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 04:00:00) in space  (linearNDFast)
10:16:05 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:05 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:05 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.77651785831287 and -65.74452778557158 degrees.
10:16:05 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.77651785831287 and -65.74452778557158 degrees.
10:16:05 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:05 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:05 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:05 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:05 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:05 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.274442 (min) -0.255581 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.233223 (min) 0.247356 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.2918 (min) -0.28743 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -5.3644 (min) -5.22584 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 8.36774 (min) 8.57469 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.12585e-05 (min) 4.15733e-05 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 293.781 (min) 294.208 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:05 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:05 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.428321, mean: 2.454485, max: 2.482826
10:16:05 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:05 DEBUG   opendrift.models.physics_methods:917:    min: 8.489511, mean: 8.535105, max: 8.584257
10:16:05 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 8.489511, mean: 8.535105, max: 8.584257
10:16:05 DEBUG   opendrift:619: No elements hit coastline.
10:16:05 DEBUG   opendrift:702: No elements hit seafloor.
10:16:05 DEBUG   opendrift:1720: No elements to deactivate
10:16:05 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:05 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.198708 m/s - 0.200926 m/s)
10:16:05 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:05 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:05 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:05 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:05 DEBUG   opendrift:2095: ======================================================================
10:16:05 INFO    opendrift:2096: 2025-06-22 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
10:16:05 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:05 DEBUG   opendrift:2104: ======================================================================
10:16:05 DEBUG   opendrift:2115:                60.06912136013979 <- latitude -> 60.0756717009487
10:16:05 DEBUG   opendrift:2115:                4.1988829820720674 <- longitude -> 4.231983163511328
10:16:05 DEBUG   opendrift:2113:                z = 0.0
10:16:05 DEBUG   opendrift:2116: ---------------------------------
10:16:05 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:05 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:05 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:05 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:05 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:05 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:05 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:05 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:05 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:05 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:05 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:05 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:05 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:05 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:05 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:05 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:05 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 05:00:00 (before)
                2025-06-22 06:00:00 (after)
10:16:06 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:06 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:06 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:06 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-06-22 05:00:00)
10:16:06 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 05:00:00) in space  (linearNDFast)
10:16:06 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:06 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8011279392064 and -65.76802775706109 degrees.
10:16:06 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8011279392064 and -65.76802775706109 degrees.
10:16:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:06 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:06 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:06 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:06 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:06 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.225875 (min) -0.21665 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.298928 (min) 0.325155 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.138207 (min) -0.13418 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.52843 (min) -4.46981 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 9.59286 (min) 9.65245 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.00829e-05 (min) 4.02131e-05 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 292.623 (min) 293.072 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:06 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:06 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.768228, mean: 2.775857, max: 2.783465
10:16:06 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:06 DEBUG   opendrift.models.physics_methods:917:    min: 9.064221, mean: 9.076702, max: 9.089133
10:16:06 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.064221, mean: 9.076702, max: 9.089133
10:16:06 DEBUG   opendrift:619: No elements hit coastline.
10:16:06 DEBUG   opendrift:702: No elements hit seafloor.
10:16:06 DEBUG   opendrift:1720: No elements to deactivate
10:16:06 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:06 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.212160 m/s - 0.212743 m/s)
10:16:06 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:06 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:06 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:06 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:06 DEBUG   opendrift:2095: ======================================================================
10:16:06 INFO    opendrift:2096: 2025-06-22 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
10:16:06 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:06 DEBUG   opendrift:2104: ======================================================================
10:16:06 DEBUG   opendrift:2115:                60.085690038725254 <- latitude -> 60.091638176644096
10:16:06 DEBUG   opendrift:2115:                4.179057537522594 <- longitude -> 4.211816119221772
10:16:06 DEBUG   opendrift:2113:                z = 0.0
10:16:06 DEBUG   opendrift:2116: ---------------------------------
10:16:06 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:06 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:06 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:06 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:06 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:06 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:06 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:06 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:06 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:06 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:06 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:06 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:06 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:06 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:06 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:06 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:06 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 06:00:00 (before)
                2025-06-22 07:00:00 (after)
10:16:07 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:07 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:07 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:07 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:07 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:07 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-22 06:00:00)
10:16:07 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 06:00:00) in space  (linearNDFast)
10:16:07 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:07 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:07 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.82095339533697 and -65.78819480681227 degrees.
10:16:07 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.82095339533697 and -65.78819480681227 degrees.
10:16:07 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:07 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:07 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:07 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:07 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:07 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.135576 (min) -0.123654 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.336392 (min) 0.358278 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.00252322 (min) 0.0012908 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -4.56925 (min) -4.19245 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.4628 (min) 10.8582 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.73522e-05 (min) 2.79731e-05 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 291.945 (min) 292.541 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:07 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:07 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.206531, mean: 3.278901, max: 3.338097
10:16:07 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:07 DEBUG   opendrift.models.physics_methods:917:    min: 9.755449, mean: 9.864855, max: 9.953575
10:16:07 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.755449, mean: 9.864855, max: 9.953575
10:16:07 DEBUG   opendrift:619: No elements hit coastline.
10:16:07 DEBUG   opendrift:702: No elements hit seafloor.
10:16:07 DEBUG   opendrift:1720: No elements to deactivate
10:16:07 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:07 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.228339 m/s - 0.232976 m/s)
10:16:07 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:07 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:07 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:07 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:07 DEBUG   opendrift:2095: ======================================================================
10:16:07 INFO    opendrift:2096: 2025-06-22 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
10:16:07 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:07 DEBUG   opendrift:2104: ======================================================================
10:16:07 DEBUG   opendrift:2115:                60.104194542911024 <- latitude -> 60.10934990763978
10:16:07 DEBUG   opendrift:2115:                4.165513128722829 <- longitude -> 4.19720340972168
10:16:07 DEBUG   opendrift:2113:                z = 0.0
10:16:07 DEBUG   opendrift:2116: ---------------------------------
10:16:07 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:07 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:07 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:07 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:07 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:07 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:07 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:07 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:07 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:07 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:07 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:07 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:07 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:07 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:07 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:07 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:07 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 07:00:00 (before)
                2025-06-22 08:00:00 (after)
10:16:08 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:08 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:08 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:08 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:08 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:08 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-22 07:00:00)
10:16:08 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 07:00:00) in space  (linearNDFast)
10:16:08 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:08 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:08 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.83449779646475 and -65.80280750185783 degrees.
10:16:08 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.83449779646475 and -65.80280750185783 degrees.
10:16:08 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:08 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:08 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:08 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:08 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:08 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0154404 (min) 0.0112217 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.308776 (min) 0.318352 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0660313 (min) 0.0672504 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.78343 (min) -3.74744 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 9.82483 (min) 9.96923 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 8.20093e-06 (min) 8.74547e-06 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 291.926 (min) 292.777 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:08 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:08 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.720903, mean: 2.744997, max: 2.790352
10:16:08 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:08 DEBUG   opendrift.models.physics_methods:917:    min: 8.986408, mean: 9.026089, max: 9.100369
10:16:08 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 8.986408, mean: 9.026089, max: 9.100369
10:16:08 DEBUG   opendrift:619: No elements hit coastline.
10:16:08 DEBUG   opendrift:702: No elements hit seafloor.
10:16:08 DEBUG   opendrift:1720: No elements to deactivate
10:16:08 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:08 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.210339 m/s - 0.213006 m/s)
10:16:08 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:08 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:08 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:08 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:08 DEBUG   opendrift:2095: ======================================================================
10:16:08 INFO    opendrift:2096: 2025-06-22 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
10:16:08 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:08 DEBUG   opendrift:2104: ======================================================================
10:16:08 DEBUG   opendrift:2115:                60.120812551761276 <- latitude -> 60.12575595139268
10:16:08 DEBUG   opendrift:2115:                4.159695718445831 <- longitude -> 4.192864828462122
10:16:08 DEBUG   opendrift:2113:                z = 0.0
10:16:08 DEBUG   opendrift:2116: ---------------------------------
10:16:08 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:08 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:08 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:08 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:08 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:08 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:08 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:08 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:08 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:08 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:08 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:08 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:08 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:08 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:08 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:08 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:08 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 08:00:00 (before)
                2025-06-22 09:00:00 (after)
10:16:09 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:09 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:09 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:09 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:09 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:09 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-22 08:00:00)
10:16:09 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 08:00:00) in space  (linearNDFast)
10:16:09 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:09 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:09 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84031520236843 and -65.80714607914749 degrees.
10:16:09 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84031520236843 and -65.80714607914749 degrees.
10:16:09 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:09 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:09 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:09 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:09 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:09 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0452949 (min) 0.117665 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.198611 (min) 0.225051 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0492691 (min) 0.0504121 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -7.72285 (min) -7.22392 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.7249 (min) 10.8959 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.25401e-05 (min) -2.23039e-05 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 292.288 (min) 293.398 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:09 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:09 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.204273, mean: 4.261020, max: 4.296781
10:16:09 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:09 DEBUG   opendrift.models.physics_methods:917:    min: 11.170562, mean: 11.245676, max: 11.292788
10:16:09 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 11.170562, mean: 11.245676, max: 11.292788
10:16:09 DEBUG   opendrift:619: No elements hit coastline.
10:16:09 DEBUG   opendrift:702: No elements hit seafloor.
10:16:09 DEBUG   opendrift:1720: No elements to deactivate
10:16:09 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:09 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.261462 m/s - 0.264322 m/s)
10:16:09 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:09 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:09 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:09 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:09 DEBUG   opendrift:2095: ======================================================================
10:16:09 INFO    opendrift:2096: 2025-06-22 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
10:16:09 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:09 DEBUG   opendrift:2104: ======================================================================
10:16:09 DEBUG   opendrift:2115:                60.13511010109393 <- latitude -> 60.139125378598116
10:16:09 DEBUG   opendrift:2115:                4.153269866237358 <- longitude -> 4.190477607872204
10:16:09 DEBUG   opendrift:2113:                z = 0.0
10:16:09 DEBUG   opendrift:2116: ---------------------------------
10:16:09 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:09 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:09 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:09 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:09 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:09 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:09 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:09 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:09 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:09 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:09 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:09 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:09 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:09 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:09 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:09 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:09 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:09 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 09:00:00 (before)
                2025-06-22 10:00:00 (after)
10:16:10 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:10 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:10 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:10 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x2) for time before (2025-06-22 09:00:00)
10:16:10 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 09:00:00) in space  (linearNDFast)
10:16:10 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:10 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84674104960187 and -65.8095332997009 degrees.
10:16:10 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84674104960187 and -65.8095332997009 degrees.
10:16:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:10 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:10 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:10 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:10 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:10 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0518787 (min) 0.0877591 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0865482 (min) 0.114851 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0887987 (min) -0.0855177 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -9.96375 (min) -9.83761 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 8.44306 (min) 8.85641 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.49722e-05 (min) -5.41702e-05 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 292.913 (min) 294.338 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:10 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:10 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.134371, mean: 4.274735, max: 4.371696
10:16:10 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:10 DEBUG   opendrift.models.physics_methods:917:    min: 11.077311, mean: 11.263656, max: 11.390810
10:16:10 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 11.077311, mean: 11.263656, max: 11.390810
10:16:10 DEBUG   opendrift:619: No elements hit coastline.
10:16:10 DEBUG   opendrift:702: No elements hit seafloor.
10:16:10 DEBUG   opendrift:1720: No elements to deactivate
10:16:10 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:10 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.259279 m/s - 0.266617 m/s)
10:16:10 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:10 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:10 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:10 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:10 DEBUG   opendrift:2095: ======================================================================
10:16:10 INFO    opendrift:2096: 2025-06-22 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
10:16:10 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:10 DEBUG   opendrift:2104: ======================================================================
10:16:10 DEBUG   opendrift:2115:                60.1444150518368 <- latitude -> 60.14747889207014
10:16:10 DEBUG   opendrift:2115:                4.143718113462712 <- longitude -> 4.183413538284496
10:16:10 DEBUG   opendrift:2113:                z = 0.0
10:16:10 DEBUG   opendrift:2116: ---------------------------------
10:16:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:10 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:10 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:10 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:10 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:10 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:10 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:10 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:10 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:10 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:10 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 10:00:00 (before)
                2025-06-22 11:00:00 (after)
10:16:11 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:11 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:11 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:11 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:11 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:11 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x2) for time before (2025-06-22 10:00:00)
10:16:11 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 10:00:00) in space  (linearNDFast)
10:16:11 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:11 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:11 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85629279811477 and -65.81659736917453 degrees.
10:16:11 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85629279811477 and -65.81659736917453 degrees.
10:16:11 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:11 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:11 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:11 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:11 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:11 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0164445 (min) 0.0274302 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0649701 (min) 0.102597 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.322779 (min) -0.318751 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -10.0961 (min) -9.97716 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.2744 (min) 10.5762 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -6.97528e-05 (min) -6.96486e-05 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 293.714 (min) 295.315 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:11 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:11 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 5.103784, mean: 5.152337, max: 5.200448
10:16:11 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:11 DEBUG   opendrift.models.physics_methods:917:    min: 12.307666, mean: 12.366056, max: 12.423670
10:16:11 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 12.307666, mean: 12.366056, max: 12.423670
10:16:11 DEBUG   opendrift:619: No elements hit coastline.
10:16:11 DEBUG   opendrift:702: No elements hit seafloor.
10:16:11 DEBUG   opendrift:1720: No elements to deactivate
10:16:11 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:11 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.288077 m/s - 0.290792 m/s)
10:16:11 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:11 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:11 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:11 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:11 DEBUG   opendrift:2095: ======================================================================
10:16:11 INFO    opendrift:2096: 2025-06-22 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
10:16:11 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:11 DEBUG   opendrift:2104: ======================================================================
10:16:11 DEBUG   opendrift:2115:                60.15421047322748 <- latitude -> 60.15661091517468
10:16:11 DEBUG   opendrift:2115:                4.131849489359794 <- longitude -> 4.172104051190765
10:16:11 DEBUG   opendrift:2113:                z = 0.0
10:16:11 DEBUG   opendrift:2116: ---------------------------------
10:16:11 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:11 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:11 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:11 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:11 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:11 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:11 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:11 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:11 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:11 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:11 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:11 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:11 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:11 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:11 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:11 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:11 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:11 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 11:00:00 (before)
                2025-06-22 12:00:00 (after)
10:16:12 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:12 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:12 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:12 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:12 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:12 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-22 11:00:00)
10:16:12 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 11:00:00) in space  (linearNDFast)
10:16:12 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:12 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:12 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86816140964925 and -65.82790684766357 degrees.
10:16:12 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86816140964925 and -65.82790684766357 degrees.
10:16:12 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:12 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:12 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:12 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:12 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:12 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.00412533 (min) 0.00868669 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0852944 (min) 0.123198 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.561568 (min) -0.559046 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -7.06059 (min) -6.90922 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.6993 (min) 10.7418 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.79267e-05 (min) -5.76439e-05 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 294.851 (min) 296.515 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:12 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:12 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.012818, mean: 4.023413, max: 4.043118
10:16:12 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:12 DEBUG   opendrift.models.physics_methods:917:    min: 10.913255, mean: 10.927652, max: 10.954380
10:16:12 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.913255, mean: 10.927652, max: 10.954380
10:16:12 DEBUG   opendrift:619: No elements hit coastline.
10:16:12 DEBUG   opendrift:702: No elements hit seafloor.
10:16:12 DEBUG   opendrift:1720: No elements to deactivate
10:16:12 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:12 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.255439 m/s - 0.256402 m/s)
10:16:12 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:12 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:12 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:12 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:12 DEBUG   opendrift:2095: ======================================================================
10:16:12 INFO    opendrift:2096: 2025-06-22 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
10:16:12 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:12 DEBUG   opendrift:2104: ======================================================================
10:16:12 DEBUG   opendrift:2115:                60.16474146869086 <- latitude -> 60.16702513834667
10:16:12 DEBUG   opendrift:2115:                4.123257143723825 <- longitude -> 4.163414449917349
10:16:12 DEBUG   opendrift:2113:                z = 0.0
10:16:12 DEBUG   opendrift:2116: ---------------------------------
10:16:12 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:12 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:12 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:12 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:12 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:12 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:12 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:12 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:12 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:12 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:12 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:12 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:12 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:12 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:12 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:12 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:12 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 12:00:00 (before)
                2025-06-22 13:00:00 (after)
10:16:13 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:13 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:13 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:13 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:13 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:13 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-22 12:00:00)
10:16:13 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 12:00:00) in space  (linearNDFast)
10:16:13 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:13 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:13 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87675376741785 and -65.83659645198398 degrees.
10:16:13 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87675376741785 and -65.83659645198398 degrees.
10:16:13 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:13 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:13 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:13 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:13 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:13 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.00238443 (min) 0.00235052 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.104522 (min) 0.139098 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.709 (min) -0.707 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -7.25314 (min) -7.23428 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.535 (min) 10.732 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.45422e-05 (min) -2.40955e-05 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 295.979 (min) 297.665 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:13 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:13 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.024409, mean: 4.073743, max: 4.120750
10:16:13 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:13 DEBUG   opendrift.models.physics_methods:917:    min: 10.929006, mean: 10.995767, max: 11.059048
10:16:13 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.929006, mean: 10.995767, max: 11.059048
10:16:13 DEBUG   opendrift:619: No elements hit coastline.
10:16:13 DEBUG   opendrift:702: No elements hit seafloor.
10:16:13 DEBUG   opendrift:1720: No elements to deactivate
10:16:13 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:13 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.255808 m/s - 0.258851 m/s)
10:16:13 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:13 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:13 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:13 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:13 DEBUG   opendrift:2095: ======================================================================
10:16:13 INFO    opendrift:2096: 2025-06-22 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
10:16:13 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:13 DEBUG   opendrift:2104: ======================================================================
10:16:13 DEBUG   opendrift:2115:                60.17538419440477 <- latitude -> 60.17786805789197
10:16:13 DEBUG   opendrift:2115:                4.113739021334108 <- longitude -> 4.154127517925821
10:16:13 DEBUG   opendrift:2113:                z = 0.0
10:16:13 DEBUG   opendrift:2116: ---------------------------------
10:16:13 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:13 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:13 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:13 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:13 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:13 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:13 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:13 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:13 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:13 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:13 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:13 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:13 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:13 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:13 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:13 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:13 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 13:00:00 (before)
                2025-06-22 14:00:00 (after)
10:16:14 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:14 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:14 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:14 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:14 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:14 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-22 13:00:00)
10:16:14 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 13:00:00) in space  (linearNDFast)
10:16:14 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:14 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:14 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8862718705773 and -65.84588336626159 degrees.
10:16:14 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8862718705773 and -65.84588336626159 degrees.
10:16:14 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:14 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:14 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:14 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:14 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:14 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.000400129 (min) 0.0103233 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.153777 (min) 0.188121 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.752 (min) -0.751 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -3.72863 (min) -3.1776 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 12.9394 (min) 13.2777 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.39802e-06 (min) 1.79506e-06 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.156 (min) 298.742 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:14 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:14 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.460748, mean: 4.519823, max: 4.585281
10:16:14 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:14 DEBUG   opendrift.models.physics_methods:917:    min: 11.506241, mean: 11.582152, max: 11.665748
10:16:14 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 11.506241, mean: 11.582152, max: 11.665748
10:16:14 DEBUG   opendrift:619: No elements hit coastline.
10:16:14 DEBUG   opendrift:702: No elements hit seafloor.
10:16:14 DEBUG   opendrift:1720: No elements to deactivate
10:16:14 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:14 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.269319 m/s - 0.273052 m/s)
10:16:14 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:14 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:14 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:14 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:14 DEBUG   opendrift:2095: ======================================================================
10:16:14 INFO    opendrift:2096: 2025-06-22 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
10:16:14 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:14 DEBUG   opendrift:2104: ======================================================================
10:16:14 DEBUG   opendrift:2115:                60.1887147244763 <- latitude -> 60.19231433642514
10:16:14 DEBUG   opendrift:2115:                4.109651222413394 <- longitude -> 4.149958469580917
10:16:14 DEBUG   opendrift:2113:                z = 0.0
10:16:14 DEBUG   opendrift:2116: ---------------------------------
10:16:14 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:14 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:14 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:14 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:14 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:14 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:14 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:14 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:14 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:14 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:14 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:14 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:14 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:14 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:14 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:14 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:14 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 14:00:00 (before)
                2025-06-22 15:00:00 (after)
10:16:15 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:15 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:15 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:15 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:15 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:15 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-22 14:00:00)
10:16:15 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 14:00:00) in space  (linearNDFast)
10:16:15 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:15 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:15 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.89035966976104 and -65.85005242791068 degrees.
10:16:15 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.89035966976104 and -65.85005242791068 degrees.
10:16:15 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:15 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:15 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:15 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:15 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:15 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0235179 (min) 0.0291791 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.193011 (min) 0.228807 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.718463 (min) -0.715724 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.195384 (min) 0.156783 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 11.8 (min) 12.098 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.94145e-05 (min) 2.00436e-05 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.113 (min) 299.553 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:15 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:15 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.426241, mean: 3.517045, max: 3.601120
10:16:15 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:15 DEBUG   opendrift.models.physics_methods:917:    min: 10.084132, mean: 10.216812, max: 10.338282
10:16:15 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.084132, mean: 10.216812, max: 10.338282
10:16:15 DEBUG   opendrift:619: No elements hit coastline.
10:16:15 DEBUG   opendrift:702: No elements hit seafloor.
10:16:15 DEBUG   opendrift:1720: No elements to deactivate
10:16:15 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:15 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.236032 m/s - 0.241981 m/s)
10:16:15 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:15 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:15 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:15 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:15 DEBUG   opendrift:2095: ======================================================================
10:16:15 INFO    opendrift:2096: 2025-06-22 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
10:16:15 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:15 DEBUG   opendrift:2104: ======================================================================
10:16:15 DEBUG   opendrift:2115:                60.20257668424228 <- latitude -> 60.207480645811245
10:16:15 DEBUG   opendrift:2115:                4.111400898037441 <- longitude -> 4.151598484843801
10:16:15 DEBUG   opendrift:2113:                z = 0.0
10:16:15 DEBUG   opendrift:2116: ---------------------------------
10:16:15 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:15 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:15 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:15 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:15 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:15 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:15 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:15 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:15 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:15 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:15 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:15 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:15 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:15 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:15 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:15 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:15 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 15:00:00 (before)
                2025-06-22 16:00:00 (after)
10:16:16 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:16 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:16 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:16 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:16 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:16 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-22 15:00:00)
10:16:16 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 15:00:00) in space  (linearNDFast)
10:16:16 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:16 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:16 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.88860998558152 and -65.84841239996697 degrees.
10:16:16 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.88860998558152 and -65.84841239996697 degrees.
10:16:16 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:16 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:16 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:16 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:16 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:16 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0582664 (min) 0.0654384 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.198482 (min) 0.239148 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.59559 (min) -0.59324 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.59629 (min) 3.86403 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 11.7821 (min) 12.4318 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.2253e-05 (min) 4.23128e-05 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.49 (min) 299.807 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:16 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:16 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.733051, mean: 3.946218, max: 4.169193
10:16:16 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:16 DEBUG   opendrift.models.physics_methods:917:    min: 10.525955, mean: 10.821886, max: 11.123862
10:16:16 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.525955, mean: 10.821886, max: 11.123862
10:16:16 DEBUG   opendrift:619: No elements hit coastline.
10:16:16 DEBUG   opendrift:702: No elements hit seafloor.
10:16:16 DEBUG   opendrift:1720: No elements to deactivate
10:16:16 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:16 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.246374 m/s - 0.260369 m/s)
10:16:16 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:16 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:16 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:16 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:16 DEBUG   opendrift:2095: ======================================================================
10:16:16 INFO    opendrift:2096: 2025-06-22 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
10:16:16 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:16 DEBUG   opendrift:2104: ======================================================================
10:16:16 DEBUG   opendrift:2115:                60.216603659730204 <- latitude -> 60.22317770954773
10:16:16 DEBUG   opendrift:2115:                4.120670006568431 <- longitude -> 4.160052431614256
10:16:16 DEBUG   opendrift:2113:                z = 0.0
10:16:16 DEBUG   opendrift:2116: ---------------------------------
10:16:16 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:16 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:16 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:16 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:16 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:16 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:16 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:16 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:16 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:16 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:16 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:16 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:16 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:16 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:16 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:16 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:16 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:16 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 16:00:00 (before)
                2025-06-22 17:00:00 (after)
10:16:17 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:17 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:17 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:17 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:17 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:17 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-22 16:00:00)
10:16:17 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 16:00:00) in space  (linearNDFast)
10:16:17 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:17 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:17 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87934087294826 and -65.8399584523957 degrees.
10:16:17 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87934087294826 and -65.8399584523957 degrees.
10:16:17 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:17 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:17 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:17 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:17 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:17 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0616713 (min) 0.0763368 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.186528 (min) 0.229663 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.422745 (min) -0.420357 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.77287 (min) 1.80479 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 14.09 (min) 14.1957 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.30846e-05 (min) 5.34627e-05 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.299 (min) 299.565 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:17 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:17 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.961849, mean: 4.977450, max: 5.037448
10:16:17 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:17 DEBUG   opendrift.models.physics_methods:917:    min: 12.135323, mean: 12.154377, max: 12.227421
10:16:17 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 12.135323, mean: 12.154377, max: 12.227421
10:16:17 DEBUG   opendrift:619: No elements hit coastline.
10:16:17 DEBUG   opendrift:702: No elements hit seafloor.
10:16:17 DEBUG   opendrift:1720: No elements to deactivate
10:16:17 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:17 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.284043 m/s - 0.286199 m/s)
10:16:17 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:17 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:17 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:17 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:17 DEBUG   opendrift:2095: ======================================================================
10:16:17 INFO    opendrift:2096: 2025-06-22 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
10:16:17 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:17 DEBUG   opendrift:2104: ======================================================================
10:16:17 DEBUG   opendrift:2115:                60.23180416190964 <- latitude -> 60.239657722734165
10:16:17 DEBUG   opendrift:2115:                4.127944926389977 <- longitude -> 4.166403361811365
10:16:17 DEBUG   opendrift:2113:                z = 0.0
10:16:17 DEBUG   opendrift:2116: ---------------------------------
10:16:17 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:17 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:17 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:17 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:17 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:17 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:17 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:17 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:17 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:17 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:17 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:17 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:17 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:17 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:17 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:17 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:17 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:17 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 17:00:00 (before)
                2025-06-22 18:00:00 (after)
10:16:18 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:18 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:18 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:18 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:18 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:18 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x25x2) for time before (2025-06-22 17:00:00)
10:16:18 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 17:00:00) in space  (linearNDFast)
10:16:18 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:18 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:18 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87206594724019 and -65.83360751304181 degrees.
10:16:18 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87206594724019 and -65.83360751304181 degrees.
10:16:18 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:18 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:18 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:18 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:18 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:18 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0669945 (min) 0.078214 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.133738 (min) 0.180791 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.226831 (min) -0.226245 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.863362 (min) 1.27981 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 13.637 (min) 13.8891 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.41397e-05 (min) 5.45829e-05 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.122 (min) 299.334 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:18 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:18 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 4.593122, mean: 4.678144, max: 4.785783
10:16:18 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:18 DEBUG   opendrift.models.physics_methods:917:    min: 11.675716, mean: 11.783216, max: 11.918075
10:16:18 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 11.675716, mean: 11.783216, max: 11.918075
10:16:18 DEBUG   opendrift:619: No elements hit coastline.
10:16:18 DEBUG   opendrift:702: No elements hit seafloor.
10:16:18 DEBUG   opendrift:1720: No elements to deactivate
10:16:18 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:18 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.273285 m/s - 0.278958 m/s)
10:16:18 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:18 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:18 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:18 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:18 DEBUG   opendrift:2095: ======================================================================
10:16:18 INFO    opendrift:2096: 2025-06-22 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated)
10:16:18 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:18 DEBUG   opendrift:2104: ======================================================================
10:16:18 DEBUG   opendrift:2115:                60.24510076738181 <- latitude -> 60.25425658662658
10:16:18 DEBUG   opendrift:2115:                4.134122968208662 <- longitude -> 4.172420334504889
10:16:18 DEBUG   opendrift:2113:                z = 0.0
10:16:18 DEBUG   opendrift:2116: ---------------------------------
10:16:18 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:18 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:18 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:18 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:18 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:18 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:18 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:18 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:18 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:18 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:18 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:18 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:18 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:18 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:18 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:18 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:18 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 18:00:00 (before)
                2025-06-22 19:00:00 (after)
10:16:19 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:19 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:19 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:19 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:19 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:19 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x25x2) for time before (2025-06-22 18:00:00)
10:16:19 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 18:00:00) in space  (linearNDFast)
10:16:19 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:19 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:19 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86588789495444 and -65.82759052843846 degrees.
10:16:19 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86588789495444 and -65.82759052843846 degrees.
10:16:19 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:19 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:19 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:19 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:19 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:19 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0676372 (min) 0.0755572 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.031629 (min) 0.0805822 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.0381711 (min) -0.0363612 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.22839 (min) 1.28991 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 11.8607 (min) 11.958 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.83587e-05 (min) 4.90212e-05 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.001 (min) 299.299 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:19 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:19 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.497730, mean: 3.525791, max: 3.558571
10:16:19 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:19 DEBUG   opendrift.models.physics_methods:917:    min: 10.188792, mean: 10.229569, max: 10.277023
10:16:19 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 10.188792, mean: 10.229569, max: 10.277023
10:16:19 DEBUG   opendrift:619: No elements hit coastline.
10:16:19 DEBUG   opendrift:702: No elements hit seafloor.
10:16:19 DEBUG   opendrift:1720: No elements to deactivate
10:16:19 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:19 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.238482 m/s - 0.240547 m/s)
10:16:19 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:19 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:19 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:19 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:19 DEBUG   opendrift:2095: ======================================================================
10:16:19 INFO    opendrift:2096: 2025-06-22 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated)
10:16:19 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:19 DEBUG   opendrift:2104: ======================================================================
10:16:19 DEBUG   opendrift:2115:                60.2538501902218 <- latitude -> 60.26448325175064
10:16:19 DEBUG   opendrift:2115:                4.140616504498443 <- longitude -> 4.178510419922333
10:16:19 DEBUG   opendrift:2113:                z = 0.0
10:16:19 DEBUG   opendrift:2116: ---------------------------------
10:16:19 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:19 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:19 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:19 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:19 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:19 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:19 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:19 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:19 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:19 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:19 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:19 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:19 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:19 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:19 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:19 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:19 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:19 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 19:00:00 (before)
                2025-06-22 20:00:00 (after)
10:16:20 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:20 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:20 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:20 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:20 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:20 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x25x2) for time before (2025-06-22 19:00:00)
10:16:20 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 19:00:00) in space  (linearNDFast)
10:16:20 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:20 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:20 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85939436137495 and -65.82150044936718 degrees.
10:16:20 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85939436137495 and -65.82150044936718 degrees.
10:16:20 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:20 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:20 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:20 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:20 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:20 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0294967 (min) 0.0496272 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0705019 (min) -0.0237375 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.10507 (min) 0.109059 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.840931 (min) -0.777393 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.9435 (min) 10.9533 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.55981e-05 (min) 2.60291e-05 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.918 (min) 299.37 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:20 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:20 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.961305, mean: 2.964600, max: 2.968472
10:16:20 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:20 DEBUG   opendrift.models.physics_methods:917:    min: 9.374997, mean: 9.380212, max: 9.386335
10:16:20 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.374997, mean: 9.380212, max: 9.386335
10:16:20 DEBUG   opendrift:619: No elements hit coastline.
10:16:20 DEBUG   opendrift:702: No elements hit seafloor.
10:16:20 DEBUG   opendrift:1720: No elements to deactivate
10:16:20 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:20 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.219434 m/s - 0.219699 m/s)
10:16:20 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:20 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:20 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:20 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:20 DEBUG   opendrift:2095: ======================================================================
10:16:20 INFO    opendrift:2096: 2025-06-22 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated)
10:16:20 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:20 DEBUG   opendrift:2104: ======================================================================
10:16:20 DEBUG   opendrift:2115:                60.25864842419876 <- latitude -> 60.27078880789442
10:16:20 DEBUG   opendrift:2115:                4.142832616133182 <- longitude -> 4.179334393123856
10:16:20 DEBUG   opendrift:2113:                z = 0.0
10:16:20 DEBUG   opendrift:2116: ---------------------------------
10:16:20 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:20 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:20 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:20 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:20 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:20 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:20 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:20 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:20 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:20 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:20 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:20 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:20 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:20 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:20 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:20 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:20 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:20 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 20:00:00 (before)
                2025-06-22 21:00:00 (after)
10:16:21 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:21 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:21 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:21 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:21 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:21 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 23x25x2) for time before (2025-06-22 20:00:00)
10:16:21 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 20:00:00) in space  (linearNDFast)
10:16:21 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:21 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:21 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85717825663707 and -65.82067647207708 degrees.
10:16:21 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85717825663707 and -65.82067647207708 degrees.
10:16:21 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:21 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:21 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:21 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:21 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:21 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0189148 (min) 0.0149551 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.130378 (min) -0.0950913 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.137923 (min) 0.142424 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.28618 (min) -1.25202 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.6486 (min) 10.6667 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -1.03367e-05 (min) -1.01131e-05 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.997 (min) 299.51 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:21 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:21 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.830170, mean: 2.832818, max: 2.837584
10:16:21 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:21 DEBUG   opendrift.models.physics_methods:917:    min: 9.165072, mean: 9.169357, max: 9.177068
10:16:21 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.165072, mean: 9.169357, max: 9.177068
10:16:21 DEBUG   opendrift:619: No elements hit coastline.
10:16:21 DEBUG   opendrift:702: No elements hit seafloor.
10:16:21 DEBUG   opendrift:1720: No elements to deactivate
10:16:21 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:21 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.214520 m/s - 0.214801 m/s)
10:16:21 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:21 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:21 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:21 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:21 DEBUG   opendrift:2095: ======================================================================
10:16:21 INFO    opendrift:2096: 2025-06-22 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated)
10:16:21 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:21 DEBUG   opendrift:2104: ======================================================================
10:16:21 DEBUG   opendrift:2115:                60.261328801512576 <- latitude -> 60.27459767403478
10:16:21 DEBUG   opendrift:2115:                4.142131976787741 <- longitude -> 4.1764748023045
10:16:21 DEBUG   opendrift:2113:                z = 0.0
10:16:21 DEBUG   opendrift:2116: ---------------------------------
10:16:21 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:21 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:21 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:21 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:21 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:21 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:21 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:21 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:21 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:21 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:21 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:21 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:21 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:21 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:21 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:21 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:21 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:21 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 21:00:00 (before)
                2025-06-22 22:00:00 (after)
10:16:22 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:22 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:22 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:22 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:22 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:22 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-22 21:00:00)
10:16:22 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 21:00:00) in space  (linearNDFast)
10:16:22 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:22 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:22 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85787888166816 and -65.82353605963625 degrees.
10:16:22 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85787888166816 and -65.82353605963625 degrees.
10:16:22 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:22 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:22 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:22 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:22 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:22 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0515001 (min) -0.0318449 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.150348 (min) -0.122676 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.030639 (min) 0.0351053 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -2.3224 (min) -2.27593 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.8102 (min) 10.8821 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -4.89609e-05 (min) -4.86575e-05 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.18 (min) 299.651 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:22 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:22 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.007449, mean: 3.021169, max: 3.040538
10:16:22 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:22 DEBUG   opendrift.models.physics_methods:917:    min: 9.447757, mean: 9.469278, max: 9.499588
10:16:22 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.447757, mean: 9.469278, max: 9.499588
10:16:22 DEBUG   opendrift:619: No elements hit coastline.
10:16:22 DEBUG   opendrift:702: No elements hit seafloor.
10:16:22 DEBUG   opendrift:1720: No elements to deactivate
10:16:22 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:22 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.221137 m/s - 0.222350 m/s)
10:16:22 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:22 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:22 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:22 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:22 DEBUG   opendrift:2095: ======================================================================
10:16:22 INFO    opendrift:2096: 2025-06-22 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated)
10:16:22 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:22 DEBUG   opendrift:2104: ======================================================================
10:16:22 DEBUG   opendrift:2115:                60.26350302961204 <- latitude -> 60.27761962253685
10:16:22 DEBUG   opendrift:2115:                4.13703193803961 <- longitude -> 4.170166006430567
10:16:22 DEBUG   opendrift:2113:                z = 0.0
10:16:22 DEBUG   opendrift:2116: ---------------------------------
10:16:22 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:22 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:22 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:22 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:22 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:22 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:22 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:22 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:22 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:22 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:22 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:22 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:22 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:22 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:22 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:22 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:22 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 22:00:00 (before)
                2025-06-22 23:00:00 (after)
10:16:23 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:23 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:23 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:23 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:23 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:23 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-22 22:00:00)
10:16:23 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 22:00:00) in space  (linearNDFast)
10:16:23 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:23 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:23 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8629789340496 and -65.82984486511207 degrees.
10:16:23 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.8629789340496 and -65.82984486511207 degrees.
10:16:23 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:23 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:23 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:23 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:23 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:23 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.086196 (min) -0.0686482 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.126672 (min) -0.0975162 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.191294 (min) -0.188401 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -2.72527 (min) -2.69651 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.9744 (min) 11.0519 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -7.2581e-05 (min) -7.23876e-05 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.472 (min) 299.853 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:23 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:23 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.145393, mean: 3.159929, max: 3.183628
10:16:23 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:23 DEBUG   opendrift.models.physics_methods:917:    min: 9.662000, mean: 9.684295, max: 9.720547
10:16:23 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.662000, mean: 9.684295, max: 9.720547
10:16:23 DEBUG   opendrift:619: No elements hit coastline.
10:16:23 DEBUG   opendrift:702: No elements hit seafloor.
10:16:23 DEBUG   opendrift:1720: No elements to deactivate
10:16:23 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:23 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.226152 m/s - 0.227522 m/s)
10:16:23 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:23 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:23 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:23 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:23 DEBUG   opendrift:2095: ======================================================================
10:16:23 INFO    opendrift:2096: 2025-06-22 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
10:16:23 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:23 DEBUG   opendrift:2104: ======================================================================
10:16:23 DEBUG   opendrift:2115:                60.2665610387578 <- latitude -> 60.281560554611644
10:16:23 DEBUG   opendrift:2115:                4.129000944909955 <- longitude -> 4.16111224587549
10:16:23 DEBUG   opendrift:2113:                z = 0.0
10:16:23 DEBUG   opendrift:2116: ---------------------------------
10:16:23 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:23 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:23 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:23 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:23 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:23 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:23 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:23 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:23 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:23 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:23 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:23 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:23 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:23 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:23 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:23 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:23 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-22 23:00:00 (before)
                2025-06-23 00:00:00 (after)
10:16:24 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:24 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:24 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:24 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:24 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:24 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-22 23:00:00)
10:16:24 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-22 23:00:00) in space  (linearNDFast)
10:16:24 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:24 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:24 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87100991915395 and -65.83889862187883 degrees.
10:16:24 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87100991915395 and -65.83889862187883 degrees.
10:16:24 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:24 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:24 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:24 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:24 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:24 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.101206 (min) -0.082028 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.074023 (min) -0.0519597 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.456109 (min) -0.453671 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -1.23599 (min) -1.18283 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 10.9773 (min) 11.0166 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -7.04047e-05 (min) -7.01938e-05 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.869 (min) 300.119 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:24 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:24 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 3.001046, mean: 3.007297, max: 3.020218
10:16:24 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:24 DEBUG   opendrift.models.physics_methods:917:    min: 9.437695, mean: 9.447517, max: 9.467793
10:16:24 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 9.437695, mean: 9.447517, max: 9.467793
10:16:24 DEBUG   opendrift:619: No elements hit coastline.
10:16:24 DEBUG   opendrift:702: No elements hit seafloor.
10:16:24 DEBUG   opendrift:1720: No elements to deactivate
10:16:24 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:24 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.220902 m/s - 0.221606 m/s)
10:16:24 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:24 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:24 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:24 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:24 DEBUG   opendrift:2095: ======================================================================
10:16:24 INFO    opendrift:2096: 2025-06-23 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
10:16:24 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:24 DEBUG   opendrift:2104: ======================================================================
10:16:24 DEBUG   opendrift:2115:                60.27130908092806 <- latitude -> 60.28697756233491
10:16:24 DEBUG   opendrift:2115:                4.1220317347169715 <- longitude -> 4.153045577649059
10:16:24 DEBUG   opendrift:2113:                z = 0.0
10:16:24 DEBUG   opendrift:2116: ---------------------------------
10:16:24 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:24 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:24 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:24 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:24 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:24 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:24 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:24 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:24 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:24 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:24 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:24 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:24 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:24 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:24 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:24 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:24 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:24 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 00:00:00 (before)
                2025-06-23 01:00:00 (after)
10:16:25 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:25 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:25 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:25 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:25 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:25 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x25x2) for time before (2025-06-23 00:00:00)
10:16:25 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 00:00:00) in space  (linearNDFast)
10:16:25 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:25 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:25 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87797912200053 and -65.84696528636204 degrees.
10:16:25 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87797912200053 and -65.84696528636204 degrees.
10:16:25 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:25 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:25 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:25 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:25 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:25 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0635283 (min) -0.0537313 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0235041 (min) -0.00183179 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.666704 (min) -0.665025 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.87396 (min) 2.13677 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 9.03321 (min) 9.05361 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.08808e-08 (min) 7.17091e-08 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.265 (min) 300.387 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:25 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:25 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 2.102513, mean: 2.109706, max: 2.119652
10:16:25 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:25 DEBUG   opendrift.models.physics_methods:917:    min: 7.899486, mean: 7.912987, max: 7.931619
10:16:25 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 7.899486, mean: 7.912987, max: 7.931619
10:16:25 DEBUG   opendrift:619: No elements hit coastline.
10:16:25 DEBUG   opendrift:702: No elements hit seafloor.
10:16:25 DEBUG   opendrift:1720: No elements to deactivate
10:16:25 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:25 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.184898 m/s - 0.185650 m/s)
10:16:25 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:25 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:25 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:25 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:25 DEBUG   opendrift:2095: ======================================================================
10:16:25 INFO    opendrift:2096: 2025-06-23 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
10:16:25 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:25 DEBUG   opendrift:2104: ======================================================================
10:16:25 DEBUG   opendrift:2115:                60.276418887259716 <- latitude -> 60.292758828491046
10:16:25 DEBUG   opendrift:2115:                4.120911755083137 <- longitude -> 4.151693537564891
10:16:25 DEBUG   opendrift:2113:                z = 0.0
10:16:25 DEBUG   opendrift:2116: ---------------------------------
10:16:25 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:25 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:25 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:25 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:25 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:25 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:25 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:25 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:25 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:25 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:25 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:25 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:25 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:25 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:25 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:25 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:25 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:25 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 01:00:00 (before)
                2025-06-23 02:00:00 (after)
10:16:26 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:26 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:26 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:26 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:26 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:26 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-23 01:00:00)
10:16:26 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 01:00:00) in space  (linearNDFast)
10:16:26 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:26 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:26 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87909909709987 and -65.84831731971708 degrees.
10:16:26 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87909909709987 and -65.84831731971708 degrees.
10:16:26 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:26 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:26 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:26 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:26 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:26 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0111489 (min) -0.00102798 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0236386 (min) 0.0505905 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.77275 (min) -0.771545 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 4.66969 (min) 4.84749 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 7.64205 (min) 7.82437 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -1.72981e-05 (min) -1.72168e-05 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.484 (min) 300.572 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:26 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:26 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.973090, mean: 2.032399, max: 2.084084
10:16:26 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:26 DEBUG   opendrift.models.physics_methods:917:    min: 7.652494, mean: 7.766574, max: 7.864790
10:16:26 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 7.652494, mean: 7.766574, max: 7.864790
10:16:26 DEBUG   opendrift:619: No elements hit coastline.
10:16:26 DEBUG   opendrift:702: No elements hit seafloor.
10:16:26 DEBUG   opendrift:1720: No elements to deactivate
10:16:26 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:26 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.179117 m/s - 0.184086 m/s)
10:16:26 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:26 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:26 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:26 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:26 DEBUG   opendrift:2095: ======================================================================
10:16:26 INFO    opendrift:2096: 2025-06-23 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
10:16:26 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:26 DEBUG   opendrift:2104: ======================================================================
10:16:26 DEBUG   opendrift:2115:                60.282146510221665 <- latitude -> 60.299449563535504
10:16:26 DEBUG   opendrift:2115:                4.127109111627664 <- longitude -> 4.157070845810733
10:16:26 DEBUG   opendrift:2113:                z = 0.0
10:16:26 DEBUG   opendrift:2116: ---------------------------------
10:16:26 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:26 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:26 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:26 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:26 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:26 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:26 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:26 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:26 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:26 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:26 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:26 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:26 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:26 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:26 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:26 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:26 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 02:00:00 (before)
                2025-06-23 03:00:00 (after)
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-23 02:00:00)
10:16:27 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 02:00:00) in space  (linearNDFast)
10:16:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:27 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87290175386603 and -65.84294000504967 degrees.
10:16:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.87290175386603 and -65.84294000504967 degrees.
10:16:27 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:27 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:27 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:27 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:27 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0397632 (min) 0.0552307 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0666941 (min) 0.0894985 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.775134 (min) -0.772424 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.76275 (min) 4.08484 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 6.39159 (min) 6.47338 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 9.31859e-06 (min) 1.0098e-05 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.564 (min) 300.717 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:27 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.379148, mean: 1.392907, max: 1.415443
10:16:27 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:27 DEBUG   opendrift.models.physics_methods:917:    min: 6.397865, mean: 6.429685, max: 6.481504
10:16:27 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 6.397865, mean: 6.429685, max: 6.481504
10:16:27 DEBUG   opendrift:619: No elements hit coastline.
10:16:27 DEBUG   opendrift:702: No elements hit seafloor.
10:16:27 DEBUG   opendrift:1720: No elements to deactivate
10:16:27 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:27 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.149750 m/s - 0.151708 m/s)
10:16:27 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:27 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:27 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:27 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:27 DEBUG   opendrift:2095: ======================================================================
10:16:27 INFO    opendrift:2096: 2025-06-23 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
10:16:27 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:27 DEBUG   opendrift:2104: ======================================================================
10:16:27 DEBUG   opendrift:2115:                60.28850833050832 <- latitude -> 60.30645351715102
10:16:27 DEBUG   opendrift:2115:                4.136016380050866 <- longitude -> 4.164567478091367
10:16:27 DEBUG   opendrift:2113:                z = 0.0
10:16:27 DEBUG   opendrift:2116: ---------------------------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:27 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:27 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:27 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:27 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:27 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:27 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:27 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:27 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 03:00:00 (before)
                2025-06-23 04:00:00 (after)
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:27 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x25x2) for time before (2025-06-23 03:00:00)
10:16:27 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 03:00:00) in space  (linearNDFast)
10:16:27 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:27 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86399446477574 and -65.83544337314078 degrees.
10:16:27 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.86399446477574 and -65.83544337314078 degrees.
10:16:27 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:27 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:27 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:27 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:27 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0818106 (min) 0.103036 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0947122 (min) 0.113911 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.679914 (min) -0.676926 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.93209 (min) 2.05399 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.92003 (min) 5.96669 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.80626e-05 (min) 3.83071e-05 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.615 (min) 300.793 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:27 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:27 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.964205, mean: 0.964973, max: 0.967625
10:16:27 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:27 DEBUG   opendrift.models.physics_methods:917:    min: 5.349514, mean: 5.351644, max: 5.358991
10:16:27 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.349514, mean: 5.351644, max: 5.358991
10:16:27 DEBUG   opendrift:619: No elements hit coastline.
10:16:27 DEBUG   opendrift:702: No elements hit seafloor.
10:16:28 DEBUG   opendrift:1720: No elements to deactivate
10:16:28 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:28 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.125212 m/s - 0.125434 m/s)
10:16:28 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:28 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:28 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:28 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:28 DEBUG   opendrift:2095: ======================================================================
10:16:28 INFO    opendrift:2096: 2025-06-23 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
10:16:28 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:28 DEBUG   opendrift:2104: ======================================================================
10:16:28 DEBUG   opendrift:2115:                60.29541437043865 <- latitude -> 60.31396875526549
10:16:28 DEBUG   opendrift:2115:                4.145243662881793 <- longitude -> 4.172566691282079
10:16:28 DEBUG   opendrift:2113:                z = 0.0
10:16:28 DEBUG   opendrift:2116: ---------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:28 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:28 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 04:00:00 (before)
                2025-06-23 05:00:00 (after)
10:16:28 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:28 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:28 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:28 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x25x2) for time before (2025-06-23 04:00:00)
10:16:28 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 04:00:00) in space  (linearNDFast)
10:16:28 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:28 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85476718146654 and -65.82744416593646 degrees.
10:16:28 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.85476718146654 and -65.82744416593646 degrees.
10:16:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:28 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:28 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:28 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:28 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.127603 (min) 0.146086 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0883042 (min) 0.101144 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.521258 (min) -0.519715 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.29097 (min) 3.51905 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 4.23325 (min) 4.29941 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.90696e-05 (min) 4.96651e-05 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.664 (min) 300.78 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:28 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:28 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.720714, mean: 0.729709, max: 0.752120
10:16:28 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:28 DEBUG   opendrift.models.physics_methods:917:    min: 4.624991, mean: 4.653729, max: 4.724687
10:16:28 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.624991, mean: 4.653729, max: 4.724687
10:16:28 DEBUG   opendrift:619: No elements hit coastline.
10:16:28 DEBUG   opendrift:702: No elements hit seafloor.
10:16:28 DEBUG   opendrift:1720: No elements to deactivate
10:16:28 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:28 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.108254 m/s - 0.110587 m/s)
10:16:28 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:28 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:28 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:28 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:28 DEBUG   opendrift:2095: ======================================================================
10:16:28 INFO    opendrift:2096: 2025-06-23 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
10:16:28 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:28 DEBUG   opendrift:2104: ======================================================================
10:16:28 DEBUG   opendrift:2115:                60.30104093508787 <- latitude -> 60.319884102219106
10:16:28 DEBUG   opendrift:2115:                4.159047680331 <- longitude -> 4.185456453596523
10:16:28 DEBUG   opendrift:2113:                z = 0.0
10:16:28 DEBUG   opendrift:2116: ---------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:28 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:28 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:28 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:28 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:28 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:28 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:28 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:28 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 05:00:00 (before)
                2025-06-23 06:00:00 (after)
10:16:29 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:29 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:29 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:29 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:29 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:29 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x25x2) for time before (2025-06-23 05:00:00)
10:16:29 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 05:00:00) in space  (linearNDFast)
10:16:29 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:29 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:29 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84096316727604 and -65.81455439221568 degrees.
10:16:29 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.84096316727604 and -65.81455439221568 degrees.
10:16:29 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:29 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:29 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:29 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:29 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:29 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.163738 (min) 0.18355 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.028533 (min) 0.0351178 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.331 (min) -0.33 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.67748 (min) 3.78148 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 4.03614 (min) 4.41299 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.39987e-05 (min) 5.48401e-05 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.495 (min) 300.558 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:29 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:29 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.733432, mean: 0.790615, max: 0.830843
10:16:29 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:29 DEBUG   opendrift.models.physics_methods:917:    min: 4.665623, mean: 4.843836, max: 4.965799
10:16:29 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.665623, mean: 4.843836, max: 4.965799
10:16:29 DEBUG   opendrift:619: No elements hit coastline.
10:16:29 DEBUG   opendrift:702: No elements hit seafloor.
10:16:29 DEBUG   opendrift:1720: No elements to deactivate
10:16:29 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:29 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.109205 m/s - 0.116231 m/s)
10:16:29 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:29 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:29 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:29 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:29 DEBUG   opendrift:2095: ======================================================================
10:16:29 INFO    opendrift:2096: 2025-06-23 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
10:16:29 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:29 DEBUG   opendrift:2104: ======================================================================
10:16:29 DEBUG   opendrift:2115:                60.30465326301747 <- latitude -> 60.3237098788414
10:16:29 DEBUG   opendrift:2115:                4.175905805612561 <- longitude -> 4.200966217016072
10:16:29 DEBUG   opendrift:2113:                z = 0.0
10:16:29 DEBUG   opendrift:2116: ---------------------------------
10:16:29 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:29 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:29 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:29 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:29 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:29 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:29 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:29 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:29 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:29 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:29 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:29 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:29 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:29 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:29 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:29 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:29 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:29 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 06:00:00 (before)
                2025-06-23 07:00:00 (after)
10:16:30 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:30 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:30 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:30 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:30 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:30 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x2) for time before (2025-06-23 06:00:00)
10:16:30 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 06:00:00) in space  (linearNDFast)
10:16:30 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:30 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:30 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.82410503804012 and -65.79904462757652 degrees.
10:16:30 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.82410503804012 and -65.79904462757652 degrees.
10:16:30 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:30 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:30 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:30 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:30 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:30 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.17488 (min) 0.20258 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0963804 (min) -0.0684999 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.128941 (min) -0.126226 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.731 (min) 3.9508 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 3.52643 (min) 3.57746 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.40614e-05 (min) 5.47326e-05 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 299.148 (min) 300.203 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:30 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:30 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.656983, mean: 0.673340, max: 0.690178
10:16:30 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:30 DEBUG   opendrift.models.physics_methods:917:    min: 4.415771, mean: 4.470371, max: 4.525954
10:16:30 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.415771, mean: 4.470371, max: 4.525954
10:16:30 DEBUG   opendrift:619: No elements hit coastline.
10:16:30 DEBUG   opendrift:702: No elements hit seafloor.
10:16:30 DEBUG   opendrift:1720: No elements to deactivate
10:16:30 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:30 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103357 m/s - 0.105936 m/s)
10:16:30 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:30 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:30 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:30 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:30 DEBUG   opendrift:2095: ======================================================================
10:16:30 INFO    opendrift:2096: 2025-06-23 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
10:16:30 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:30 DEBUG   opendrift:2104: ======================================================================
10:16:30 DEBUG   opendrift:2115:                60.30475013322366 <- latitude -> 60.32287488291264
10:16:30 DEBUG   opendrift:2115:                4.194235239971871 <- longitude -> 4.21731405318214
10:16:30 DEBUG   opendrift:2113:                z = 0.0
10:16:30 DEBUG   opendrift:2116: ---------------------------------
10:16:30 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:30 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:30 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:30 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:30 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:30 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:30 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:30 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:30 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:30 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:30 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:30 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:30 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:30 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:30 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:30 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:30 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:30 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 07:00:00 (before)
                2025-06-23 08:00:00 (after)
10:16:31 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:31 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:31 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:31 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:31 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:31 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x24x2) for time before (2025-06-23 07:00:00)
10:16:31 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 07:00:00) in space  (linearNDFast)
10:16:31 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:31 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:31 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.80577560648416 and -65.78269679286333 degrees.
10:16:31 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.80577560648416 and -65.78269679286333 degrees.
10:16:31 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:31 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:31 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:31 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:31 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:31 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.152997 (min) 0.173373 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.236918 (min) -0.196439 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0380895 (min) 0.0424189 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.95997 (min) 4.00438 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.95797 (min) 2.02815 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.41114e-05 (min) 3.43177e-05 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.66 (min) 299.766 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:31 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:31 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.480068, mean: 0.488458, max: 0.495441
10:16:31 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:31 DEBUG   opendrift.models.physics_methods:917:    min: 3.774687, mean: 3.807517, max: 3.834647
10:16:31 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.774687, mean: 3.807517, max: 3.834647
10:16:31 DEBUG   opendrift:619: No elements hit coastline.
10:16:31 DEBUG   opendrift:702: No elements hit seafloor.
10:16:31 DEBUG   opendrift:1720: No elements to deactivate
10:16:31 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:31 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.088351 m/s - 0.089755 m/s)
10:16:31 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:31 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:31 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:31 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:31 DEBUG   opendrift:2095: ======================================================================
10:16:31 INFO    opendrift:2096: 2025-06-23 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
10:16:31 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:31 DEBUG   opendrift:2104: ======================================================================
10:16:31 DEBUG   opendrift:2115:                60.299667799147464 <- latitude -> 60.31652989534949
10:16:31 DEBUG   opendrift:2115:                4.210667426277692 <- longitude -> 4.23250587539228
10:16:31 DEBUG   opendrift:2113:                z = 0.0
10:16:31 DEBUG   opendrift:2116: ---------------------------------
10:16:31 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:31 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:31 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:31 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:31 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:31 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:31 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:31 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:31 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:31 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:31 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:31 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:31 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:31 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:31 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:31 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:31 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:31 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 08:00:00 (before)
                2025-06-23 09:00:00 (after)
10:16:32 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:32 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:32 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:32 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:32 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:32 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x25x2) for time before (2025-06-23 08:00:00)
10:16:32 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 08:00:00) in space  (linearNDFast)
10:16:32 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:32 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:32 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.78934342481797 and -65.76750498076211 degrees.
10:16:32 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.78934342481797 and -65.76750498076211 degrees.
10:16:32 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:32 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:32 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:32 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:32 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:32 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.119737 (min) 0.149317 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.318772 (min) -0.272946 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.107007 (min) 0.110069 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 2.41702 (min) 2.49728 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.68593 (min) 1.71122 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 1.17887e-06 (min) 1.47431e-06 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.989 (min) 299.248 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:32 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:32 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.213644, mean: 0.219824, max: 0.225414
10:16:32 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:32 DEBUG   opendrift.models.physics_methods:917:    min: 2.518109, mean: 2.554245, max: 2.586546
10:16:32 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 2.518109, mean: 2.554245, max: 2.586546
10:16:32 DEBUG   opendrift:619: No elements hit coastline.
10:16:32 DEBUG   opendrift:702: No elements hit seafloor.
10:16:32 DEBUG   opendrift:1720: No elements to deactivate
10:16:32 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:32 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.058940 m/s - 0.060541 m/s)
10:16:32 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:32 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:32 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:32 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:32 DEBUG   opendrift:2095: ======================================================================
10:16:32 INFO    opendrift:2096: 2025-06-23 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
10:16:32 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:32 DEBUG   opendrift:2104: ======================================================================
10:16:32 DEBUG   opendrift:2115:                60.291937866135896 <- latitude -> 60.30733550171382
10:16:32 DEBUG   opendrift:2115:                4.223403813761033 <- longitude -> 4.243540879902658
10:16:32 DEBUG   opendrift:2113:                z = 0.0
10:16:32 DEBUG   opendrift:2116: ---------------------------------
10:16:32 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:32 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:32 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:32 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:32 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:32 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:32 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:32 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:32 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:32 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:32 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:32 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:32 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:32 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:32 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:32 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:32 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:32 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 09:00:00 (before)
                2025-06-23 10:00:00 (after)
10:16:33 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:33 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:33 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:33 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:33 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:33 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-23 09:00:00)
10:16:33 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 09:00:00) in space  (linearNDFast)
10:16:33 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:33 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:33 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.77660703552975 and -65.75646997177438 degrees.
10:16:33 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.77660703552975 and -65.75646997177438 degrees.
10:16:33 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:33 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:33 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:33 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:33 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:33 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0676944 (min) 0.103164 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.347181 (min) -0.301132 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0375621 (min) 0.0395337 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 2.04303 (min) 2.21481 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 1.71509 (min) 1.73774 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -3.93166e-05 (min) -3.91397e-05 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.284 (min) 298.589 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:33 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:33 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.175041, mean: 0.184895, max: 0.194958
10:16:33 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:33 DEBUG   opendrift.models.physics_methods:917:    min: 2.279290, mean: 2.342474, max: 2.405474
10:16:33 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 2.279290, mean: 2.342474, max: 2.405474
10:16:33 DEBUG   opendrift:619: No elements hit coastline.
10:16:33 DEBUG   opendrift:702: No elements hit seafloor.
10:16:33 DEBUG   opendrift:1720: No elements to deactivate
10:16:33 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:33 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.053350 m/s - 0.056303 m/s)
10:16:33 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:33 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:33 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:33 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:33 DEBUG   opendrift:2095: ======================================================================
10:16:33 INFO    opendrift:2096: 2025-06-23 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
10:16:33 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:33 DEBUG   opendrift:2104: ======================================================================
10:16:33 DEBUG   opendrift:2115:                60.283316202888784 <- latitude -> 60.297240516523956
10:16:33 DEBUG   opendrift:2115:                4.232656724989083 <- longitude -> 4.250703007102723
10:16:33 DEBUG   opendrift:2113:                z = 0.0
10:16:33 DEBUG   opendrift:2116: ---------------------------------
10:16:33 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:33 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:33 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:33 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:33 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:33 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:33 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:33 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:33 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:33 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:33 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:33 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:33 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:33 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:33 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:33 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:33 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 10:00:00 (before)
                2025-06-23 11:00:00 (after)
10:16:34 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:34 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:34 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:34 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:34 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:34 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-23 10:00:00)
10:16:34 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 10:00:00) in space  (linearNDFast)
10:16:34 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:34 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:34 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76735412181694 and -65.74930784112053 degrees.
10:16:34 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76735412181694 and -65.74930784112053 degrees.
10:16:34 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:34 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:34 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:34 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:34 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:34 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.00457292 (min) 0.044792 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.328944 (min) -0.280057 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.164491 (min) -0.163564 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.63302 (min) 1.63944 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 2.03805 (min) 2.05459 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -7.10851e-05 (min) -7.09577e-05 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.623 (min) 297.831 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:34 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:34 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.168200, mean: 0.168841, max: 0.169468
10:16:34 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:34 DEBUG   opendrift.models.physics_methods:917:    min: 2.234305, mean: 2.238561, max: 2.242712
10:16:34 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 2.234305, mean: 2.238561, max: 2.242712
10:16:34 DEBUG   opendrift:619: No elements hit coastline.
10:16:34 DEBUG   opendrift:702: No elements hit seafloor.
10:16:34 DEBUG   opendrift:1720: No elements to deactivate
10:16:34 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:34 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.052297 m/s - 0.052494 m/s)
10:16:34 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:34 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:34 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:34 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:34 DEBUG   opendrift:2095: ======================================================================
10:16:34 INFO    opendrift:2096: 2025-06-23 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
10:16:34 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:34 DEBUG   opendrift:2104: ======================================================================
10:16:34 DEBUG   opendrift:2115:                60.27557795433067 <- latitude -> 60.28793689816491
10:16:34 DEBUG   opendrift:2115:                4.237080745333662 <- longitude -> 4.253222346051703
10:16:34 DEBUG   opendrift:2113:                z = 0.0
10:16:34 DEBUG   opendrift:2116: ---------------------------------
10:16:34 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:34 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:34 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:34 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:34 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:34 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:34 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:34 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:34 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:34 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:34 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:34 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:34 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:34 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:34 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:34 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:34 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 11:00:00 (before)
                2025-06-23 12:00:00 (after)
10:16:35 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:35 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:35 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:35 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:35 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:35 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-23 11:00:00)
10:16:35 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 11:00:00) in space  (linearNDFast)
10:16:35 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:35 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:35 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76293010630495 and -65.74678851245517 degrees.
10:16:35 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76293010630495 and -65.74678851245517 degrees.
10:16:35 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:35 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:35 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:35 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:35 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:35 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0426087 (min) -0.00549054 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.257592 (min) -0.202972 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.442167 (min) -0.440985 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 2.04362 (min) 2.16046 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 3.56827 (min) 3.63219 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -7.74808e-05 (min) -7.74054e-05 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.147 (min) 297.16 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:35 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:35 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.416295, mean: 0.430466, max: 0.436968
10:16:35 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:35 DEBUG   opendrift.models.physics_methods:917:    min: 3.515041, mean: 3.574342, max: 3.601258
10:16:35 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.515041, mean: 3.574342, max: 3.601258
10:16:35 DEBUG   opendrift:619: No elements hit coastline.
10:16:35 DEBUG   opendrift:702: No elements hit seafloor.
10:16:35 DEBUG   opendrift:1720: No elements to deactivate
10:16:35 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:35 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.082274 m/s - 0.084292 m/s)
10:16:35 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:35 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:35 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:35 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:35 DEBUG   opendrift:2095: ======================================================================
10:16:35 INFO    opendrift:2096: 2025-06-23 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
10:16:35 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:35 DEBUG   opendrift:2104: ======================================================================
10:16:35 DEBUG   opendrift:2115:                60.27133421537495 <- latitude -> 60.28192341074683
10:16:35 DEBUG   opendrift:2115:                4.238766856433064 <- longitude -> 4.2533491343196905
10:16:35 DEBUG   opendrift:2113:                z = 0.0
10:16:35 DEBUG   opendrift:2116: ---------------------------------
10:16:35 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:35 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:35 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:35 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:35 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:35 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:35 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:35 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:35 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:35 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:35 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:35 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:35 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:35 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:35 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:35 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:35 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 12:00:00 (before)
                2025-06-23 13:00:00 (after)
10:16:36 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:36 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:36 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:36 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:36 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:36 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-23 12:00:00)
10:16:36 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 12:00:00) in space  (linearNDFast)
10:16:36 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:36 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:36 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76124399242725 and -65.7466617259523 degrees.
10:16:36 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76124399242725 and -65.7466617259523 degrees.
10:16:36 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:36 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:36 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:36 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:36 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:36 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0511346 (min) -0.0263659 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.147807 (min) -0.109279 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.695525 (min) -0.694025 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 3.66485 (min) 3.73036 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 3.6701 (min) 3.69671 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -5.94382e-05 (min) -5.91566e-05 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 295.928 (min) 296.752 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:36 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:36 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.663493, mean: 0.670129, max: 0.674151
10:16:36 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:36 DEBUG   opendrift.models.physics_methods:917:    min: 4.437595, mean: 4.459727, max: 4.473097
10:16:36 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.437595, mean: 4.459727, max: 4.473097
10:16:36 DEBUG   opendrift:619: No elements hit coastline.
10:16:36 DEBUG   opendrift:702: No elements hit seafloor.
10:16:36 DEBUG   opendrift:1720: No elements to deactivate
10:16:36 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:36 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103868 m/s - 0.104699 m/s)
10:16:36 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:36 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:36 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:36 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:36 DEBUG   opendrift:2095: ======================================================================
10:16:36 INFO    opendrift:2096: 2025-06-23 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
10:16:36 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:36 DEBUG   opendrift:2104: ======================================================================
10:16:36 DEBUG   opendrift:2115:                60.270142973347944 <- latitude -> 60.27960516724792
10:16:36 DEBUG   opendrift:2115:                4.241260119588309 <- longitude -> 4.254957900776035
10:16:36 DEBUG   opendrift:2113:                z = 0.0
10:16:36 DEBUG   opendrift:2116: ---------------------------------
10:16:36 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:36 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:36 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:36 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:36 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:36 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:36 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:36 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:36 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:36 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:36 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:36 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:36 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:36 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:36 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:36 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:36 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 13:00:00 (before)
                2025-06-23 14:00:00 (after)
10:16:37 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:37 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:37 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:37 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:37 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:37 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x24x2) for time before (2025-06-23 13:00:00)
10:16:37 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 13:00:00) in space  (linearNDFast)
10:16:37 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:37 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:37 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.75875072628511 and -65.74505296150018 degrees.
10:16:37 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.75875072628511 and -65.74505296150018 degrees.
10:16:37 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:37 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:37 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:37 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:37 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:37 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0557166 (min) -0.0321989 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: -0.0259354 (min) 0.00506999 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.85055 (min) -0.84863 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.41593 (min) 1.44956 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 4.32374 (min) 4.38289 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.487e-05 (min) -2.45914e-05 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 295.859 (min) 296.538 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:37 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:37 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.511581, mean: 0.517657, max: 0.521914
10:16:37 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:37 DEBUG   opendrift.models.physics_methods:917:    min: 3.896608, mean: 3.919675, max: 3.935765
10:16:37 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 3.896608, mean: 3.919675, max: 3.935765
10:16:37 DEBUG   opendrift:619: No elements hit coastline.
10:16:37 DEBUG   opendrift:702: No elements hit seafloor.
10:16:37 DEBUG   opendrift:1720: No elements to deactivate
10:16:37 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:37 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.091205 m/s - 0.092122 m/s)
10:16:37 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:37 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:37 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:37 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:37 DEBUG   opendrift:2095: ======================================================================
10:16:37 INFO    opendrift:2096: 2025-06-23 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
10:16:37 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:37 DEBUG   opendrift:2104: ======================================================================
10:16:37 DEBUG   opendrift:2115:                60.27305979486809 <- latitude -> 60.28177831303425
10:16:37 DEBUG   opendrift:2115:                4.239991979200801 <- longitude -> 4.253510069514531
10:16:37 DEBUG   opendrift:2113:                z = 0.0
10:16:37 DEBUG   opendrift:2116: ---------------------------------
10:16:37 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:37 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:37 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:37 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:37 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:37 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:37 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:37 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:37 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:37 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:37 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:37 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:37 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:37 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:37 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:37 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:37 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 14:00:00 (before)
                2025-06-23 15:00:00 (after)
10:16:38 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:38 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:38 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:38 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:38 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:38 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-23 14:00:00)
10:16:38 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 14:00:00) in space  (linearNDFast)
10:16:38 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:38 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:38 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76001888031982 and -65.74650078898614 degrees.
10:16:38 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76001888031982 and -65.74650078898614 degrees.
10:16:38 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:38 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:38 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:38 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:38 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:38 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: -0.0305052 (min) -0.0130188 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.098873 (min) 0.119034 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.877929 (min) -0.876029 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.669086 (min) 0.702465 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.13776 (min) 5.18363 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 8.98482e-06 (min) 9.0628e-06 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.004 (min) 296.669 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:38 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:38 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.661336, mean: 0.664502, max: 0.672053
10:16:38 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:38 DEBUG   opendrift.models.physics_methods:917:    min: 4.430376, mean: 4.440968, max: 4.466129
10:16:38 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.430376, mean: 4.440968, max: 4.466129
10:16:38 DEBUG   opendrift:619: No elements hit coastline.
10:16:38 DEBUG   opendrift:702: No elements hit seafloor.
10:16:38 DEBUG   opendrift:1720: No elements to deactivate
10:16:38 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:38 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103699 m/s - 0.104536 m/s)
10:16:38 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:38 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:38 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:38 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:38 DEBUG   opendrift:2095: ======================================================================
10:16:38 INFO    opendrift:2096: 2025-06-23 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
10:16:38 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:38 DEBUG   opendrift:2104: ======================================================================
10:16:38 DEBUG   opendrift:2115:                60.2801697611314 <- latitude -> 60.28858482575149
10:16:38 DEBUG   opendrift:2115:                4.239050161320921 <- longitude -> 4.252756008445677
10:16:38 DEBUG   opendrift:2113:                z = 0.0
10:16:38 DEBUG   opendrift:2116: ---------------------------------
10:16:38 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:38 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:38 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:38 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:38 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:38 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:38 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:38 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:38 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:38 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:38 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:38 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:38 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:38 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:38 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:38 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:38 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 15:00:00 (before)
                2025-06-23 16:00:00 (after)
10:16:39 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:39 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:39 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:39 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:39 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:39 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-23 15:00:00)
10:16:39 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 15:00:00) in space  (linearNDFast)
10:16:39 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:39 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:39 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76096068684076 and -65.74725485383638 degrees.
10:16:39 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.76096068684076 and -65.74725485383638 degrees.
10:16:39 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:39 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:39 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:39 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:39 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:39 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0365584 (min) 0.0554088 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.203436 (min) 0.218615 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.799557 (min) -0.797367 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 1.31611 (min) 1.38441 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.48369 (min) 5.50641 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 3.3276e-05 (min) 3.34468e-05 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.417 (min) 297.08 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:39 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:39 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.782354, mean: 0.785754, max: 0.793032
10:16:39 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:39 DEBUG   opendrift.models.physics_methods:917:    min: 4.818714, mean: 4.829172, max: 4.851489
10:16:39 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.818714, mean: 4.829172, max: 4.851489
10:16:39 DEBUG   opendrift:619: No elements hit coastline.
10:16:39 DEBUG   opendrift:702: No elements hit seafloor.
10:16:39 DEBUG   opendrift:1720: No elements to deactivate
10:16:39 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:39 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.112788 m/s - 0.113555 m/s)
10:16:39 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:39 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:39 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:39 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:39 DEBUG   opendrift:2095: ======================================================================
10:16:39 INFO    opendrift:2096: 2025-06-23 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
10:16:39 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:39 DEBUG   opendrift:2104: ======================================================================
10:16:39 DEBUG   opendrift:2115:                60.290595523311865 <- latitude -> 60.299123294104916
10:16:39 DEBUG   opendrift:2115:                4.243630859338618 <- longitude -> 4.256994821215142
10:16:39 DEBUG   opendrift:2113:                z = 0.0
10:16:39 DEBUG   opendrift:2116: ---------------------------------
10:16:39 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:39 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:39 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:39 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:39 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:39 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:39 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:39 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:39 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:39 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:39 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:39 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:39 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:39 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:39 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:39 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:39 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 16:00:00 (before)
                2025-06-23 17:00:00 (after)
10:16:40 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:40 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:40 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:40 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:40 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:40 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-23 16:00:00)
10:16:40 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 16:00:00) in space  (linearNDFast)
10:16:40 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:40 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:40 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.75637999581943 and -65.74301602709019 degrees.
10:16:40 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.75637999581943 and -65.74301602709019 degrees.
10:16:40 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:40 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:40 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:40 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:40 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:40 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.112318 (min) 0.137746 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.272931 (min) 0.291145 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.64973 (min) -0.647015 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.362671 (min) 0.395994 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.91974 (min) 5.95037 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 4.99071e-05 (min) 5.02985e-05 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 296.977 (min) 297.594 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:40 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:40 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.865549, mean: 0.871282, max: 0.874631
10:16:40 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:40 DEBUG   opendrift.models.physics_methods:917:    min: 5.068454, mean: 5.085209, max: 5.094976
10:16:40 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.068454, mean: 5.085209, max: 5.094976
10:16:40 DEBUG   opendrift:619: No elements hit coastline.
10:16:40 DEBUG   opendrift:702: No elements hit seafloor.
10:16:40 DEBUG   opendrift:1720: No elements to deactivate
10:16:40 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:40 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.118634 m/s - 0.119255 m/s)
10:16:40 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:40 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:40 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:40 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:40 DEBUG   opendrift:2095: ======================================================================
10:16:40 INFO    opendrift:2096: 2025-06-23 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
10:16:40 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:40 DEBUG   opendrift:2104: ======================================================================
10:16:40 DEBUG   opendrift:2115:                60.30354191485231 <- latitude -> 60.31221882800046
10:16:40 DEBUG   opendrift:2115:                4.252617690461105 <- longitude -> 4.2648353438585245
10:16:40 DEBUG   opendrift:2113:                z = 0.0
10:16:40 DEBUG   opendrift:2116: ---------------------------------
10:16:40 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:40 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:40 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:40 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:40 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:40 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:40 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:40 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:40 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:40 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:40 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:40 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:40 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:40 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:40 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:40 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:40 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 17:00:00 (before)
                2025-06-23 18:00:00 (after)
10:16:41 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:41 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:41 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:41 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:41 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:41 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-06-23 17:00:00)
10:16:41 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 17:00:00) in space  (linearNDFast)
10:16:41 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:41 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:41 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.74739316390232 and -65.73517548414097 degrees.
10:16:41 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.74739316390232 and -65.73517548414097 degrees.
10:16:41 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:41 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:41 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:41 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:41 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:41 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.185714 (min) 0.201328 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.287366 (min) 0.303855 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.448861 (min) -0.447116 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.989741 (min) -0.950478 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.94563 (min) 5.96042 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 6.06693e-05 (min) 6.08537e-05 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 297.666 (min) 298.141 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:41 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:41 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.893518, mean: 0.894682, max: 0.896536
10:16:41 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:41 DEBUG   opendrift.models.physics_methods:917:    min: 5.149690, mean: 5.153044, max: 5.158382
10:16:41 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.149690, mean: 5.153044, max: 5.158382
10:16:41 DEBUG   opendrift:619: No elements hit coastline.
10:16:41 DEBUG   opendrift:702: No elements hit seafloor.
10:16:41 DEBUG   opendrift:1720: No elements to deactivate
10:16:41 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:41 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120535 m/s - 0.120739 m/s)
10:16:41 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:41 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:41 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:41 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:41 DEBUG   opendrift:2095: ======================================================================
10:16:41 INFO    opendrift:2096: 2025-06-23 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
10:16:41 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:41 DEBUG   opendrift:2104: ======================================================================
10:16:41 DEBUG   opendrift:2115:                60.31692441667002 <- latitude -> 60.32586294124091
10:16:41 DEBUG   opendrift:2115:                4.264211790018909 <- longitude -> 4.27569983564081
10:16:41 DEBUG   opendrift:2113:                z = 0.0
10:16:41 DEBUG   opendrift:2116: ---------------------------------
10:16:41 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:41 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:41 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:41 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:41 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:41 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:41 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:41 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:41 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:41 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:41 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:41 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:41 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:41 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:41 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:41 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:41 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 18:00:00 (before)
                2025-06-23 19:00:00 (after)
10:16:42 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:42 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:42 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:42 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:42 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:42 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x23x2) for time before (2025-06-23 18:00:00)
10:16:42 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 18:00:00) in space  (linearNDFast)
10:16:42 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:42 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:42 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.73579904258881 and -65.72431099513253 degrees.
10:16:42 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.73579904258881 and -65.72431099513253 degrees.
10:16:42 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:42 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:42 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:42 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:42 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:42 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.231564 (min) 0.245637 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.241057 (min) 0.261088 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: -0.217768 (min) -0.216009 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.652642 (min) -0.608986 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 6.39423 (min) 6.4236 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 6.5763e-05 (min) 6.61757e-05 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.263 (min) 298.567 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:42 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:42 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.016279, mean: 1.019232, max: 1.024183
10:16:42 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:42 DEBUG   opendrift.models.physics_methods:917:    min: 5.492070, mean: 5.500044, max: 5.513386
10:16:42 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.492070, mean: 5.500044, max: 5.513386
10:16:42 DEBUG   opendrift:619: No elements hit coastline.
10:16:42 DEBUG   opendrift:702: No elements hit seafloor.
10:16:42 DEBUG   opendrift:1720: No elements to deactivate
10:16:42 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:42 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.128549 m/s - 0.129048 m/s)
10:16:42 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:42 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:42 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:42 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:42 DEBUG   opendrift:2095: ======================================================================
10:16:42 INFO    opendrift:2096: 2025-06-23 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
10:16:42 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:42 DEBUG   opendrift:2104: ======================================================================
10:16:42 DEBUG   opendrift:2115:                60.3290586780326 <- latitude -> 60.33844902913015
10:16:42 DEBUG   opendrift:2115:                4.279370364467543 <- longitude -> 4.289980495872061
10:16:42 DEBUG   opendrift:2113:                z = 0.0
10:16:42 DEBUG   opendrift:2116: ---------------------------------
10:16:42 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:42 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:42 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:42 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:42 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:42 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:42 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:42 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:42 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:42 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:42 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:42 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:42 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:42 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:42 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:42 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:42 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 19:00:00 (before)
                2025-06-23 20:00:00 (after)
10:16:43 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:43 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:43 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:43 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:43 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:43 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 25x22x2) for time before (2025-06-23 19:00:00)
10:16:43 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 19:00:00) in space  (linearNDFast)
10:16:43 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:43 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:43 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.72064047352536 and -65.71003032647774 degrees.
10:16:43 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.72064047352536 and -65.71003032647774 degrees.
10:16:43 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:43 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:43 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:43 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:43 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:43 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.201153 (min) 0.227377 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.156528 (min) 0.17969 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.00871682 (min) 0.0103453 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: -0.362382 (min) -0.291752 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 6.01827 (min) 6.13642 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 5.59959e-05 (min) 5.61405e-05 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.638 (min) 298.815 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:43 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:43 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.893194, mean: 0.904504, max: 0.929559
10:16:43 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:43 DEBUG   opendrift.models.physics_methods:917:    min: 5.148759, mean: 5.181234, max: 5.252524
10:16:43 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.148759, mean: 5.181234, max: 5.252524
10:16:43 DEBUG   opendrift:619: No elements hit coastline.
10:16:43 DEBUG   opendrift:702: No elements hit seafloor.
10:16:43 DEBUG   opendrift:1720: No elements to deactivate
10:16:43 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:43 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120513 m/s - 0.122942 m/s)
10:16:43 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:43 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:43 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:43 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:43 DEBUG   opendrift:2095: ======================================================================
10:16:43 INFO    opendrift:2096: 2025-06-23 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
10:16:43 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:43 DEBUG   opendrift:2104: ======================================================================
10:16:43 DEBUG   opendrift:2115:                60.33832743780164 <- latitude -> 60.34821973359772
10:16:43 DEBUG   opendrift:2115:                4.293730093146891 <- longitude -> 4.303077551117292
10:16:43 DEBUG   opendrift:2113:                z = 0.0
10:16:43 DEBUG   opendrift:2116: ---------------------------------
10:16:43 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:43 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:43 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:43 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:43 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:43 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:43 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:43 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:43 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:43 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:43 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:43 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:43 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:43 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:43 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:43 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:43 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 20:00:00 (before)
                2025-06-23 21:00:00 (after)
10:16:44 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:44 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:44 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:44 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:44 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:44 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-23 20:00:00)
10:16:44 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 20:00:00) in space  (linearNDFast)
10:16:44 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:44 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:44 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.7062807468628 and -65.69693327437056 degrees.
10:16:44 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.7062807468628 and -65.69693327437056 degrees.
10:16:44 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:44 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:44 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:44 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:44 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:44 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.126357 (min) 0.157693 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0854001 (min) 0.115599 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.160192 (min) 0.16176 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 0.207394 (min) 0.253515 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 5.57504 (min) 5.59168 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: 2.46458e-05 (min) 2.483e-05 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.825 (min) 298.915 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:44 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:44 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.766156, mean: 0.767545, max: 0.770224
10:16:44 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:44 DEBUG   opendrift.models.physics_methods:917:    min: 4.768572, mean: 4.772889, max: 4.781214
10:16:44 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 4.768572, mean: 4.772889, max: 4.781214
10:16:44 DEBUG   opendrift:619: No elements hit coastline.
10:16:44 DEBUG   opendrift:702: No elements hit seafloor.
10:16:44 DEBUG   opendrift:1720: No elements to deactivate
10:16:44 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:44 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.111615 m/s - 0.111911 m/s)
10:16:44 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:44 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:44 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:44 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:44 DEBUG   opendrift:2095: ======================================================================
10:16:44 INFO    opendrift:2096: 2025-06-23 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
10:16:44 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:44 DEBUG   opendrift:2104: ======================================================================
10:16:44 DEBUG   opendrift:2115:                60.34487011528486 <- latitude -> 60.35556799311152
10:16:44 DEBUG   opendrift:2115:                4.304150766560297 <- longitude -> 4.312642455873677
10:16:44 DEBUG   opendrift:2113:                z = 0.0
10:16:44 DEBUG   opendrift:2116: ---------------------------------
10:16:44 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:44 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:44 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:44 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:44 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:44 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:44 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:44 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:44 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:44 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:44 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:44 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:44 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:44 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:44 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:44 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:44 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 21:00:00 (before)
                2025-06-23 22:00:00 (after)
10:16:45 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:45 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:45 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:45 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:45 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:45 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-23 21:00:00)
10:16:45 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 21:00:00) in space  (linearNDFast)
10:16:45 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:45 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:45 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.69586005461116 and -65.68736836367586 degrees.
10:16:45 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.69586005461116 and -65.68736836367586 degrees.
10:16:45 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:45 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:45 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:45 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:45 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:45 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.0680242 (min) 0.096848 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0425697 (min) 0.0702665 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.16874 (min) 0.170249 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 6.4113 (min) 6.5576 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 2.07466 (min) 2.23428 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -2.05287e-05 (min) -2.03804e-05 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.915 (min) 298.953 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:45 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:45 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 1.133979, mean: 1.155971, max: 1.163735
10:16:45 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:45 DEBUG   opendrift.models.physics_methods:917:    min: 5.801391, mean: 5.857366, max: 5.877012
10:16:45 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.801391, mean: 5.857366, max: 5.877012
10:16:45 DEBUG   opendrift:619: No elements hit coastline.
10:16:45 DEBUG   opendrift:702: No elements hit seafloor.
10:16:45 DEBUG   opendrift:1720: No elements to deactivate
10:16:45 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:45 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.135789 m/s - 0.137559 m/s)
10:16:45 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:45 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:45 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:45 DEBUG   opendrift:842: to be seeded: 0, already seeded 1000
10:16:45 DEBUG   opendrift:2095: ======================================================================
10:16:45 INFO    opendrift:2096: 2025-06-23 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
10:16:45 DEBUG   opendrift:2102: 0 elements scheduled.
10:16:45 DEBUG   opendrift:2104: ======================================================================
10:16:45 DEBUG   opendrift:2115:                60.34768230861031 <- latitude -> 60.3592818305804
10:16:45 DEBUG   opendrift:2115:                4.318401650540403 <- longitude -> 4.32682996938387
10:16:45 DEBUG   opendrift:2113:                z = 0.0
10:16:45 DEBUG   opendrift:2116: ---------------------------------
10:16:45 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:45 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:45 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:45 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:45 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:45 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:45 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:45 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:45 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:45 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:45 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:45 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
10:16:45 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:45 DEBUG   opendrift.models.basemodel.environment:597: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
10:16:45 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:45 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:45 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
10:16:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2025-06-23 22:00:00 (before)
                2025-06-23 23:00:00 (after)
10:16:46 DEBUG   opendrift.readers.basereader.variables:637: Checking sea_floor_depth_below_sea_level for invalid values
10:16:46 DEBUG   opendrift.readers.basereader.variables:637: Checking x_wind for invalid values
10:16:46 DEBUG   opendrift.readers.basereader.variables:637: Checking y_wind for invalid values
10:16:46 DEBUG   opendrift.readers.basereader.variables:637: Checking x_sea_water_velocity for invalid values
10:16:46 DEBUG   opendrift.readers.basereader.variables:637: Checking y_sea_water_velocity for invalid values
10:16:46 DEBUG   opendrift.readers.basereader.structured:292: Fetched env-block (size 24x23x2) for time before (2025-06-23 22:00:00)
10:16:46 DEBUG   opendrift.readers.basereader.structured:336: Interpolating before (2025-06-23 22:00:00) in space  (linearNDFast)
10:16:46 DEBUG   opendrift.readers.interpolation.structured:97: Initialising interpolator.
10:16:46 DEBUG   opendrift.readers.basereader.structured:390: No time interpolation needed - right on time.
10:16:46 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.6816091654432 and -65.67318085395897 degrees.
10:16:46 DEBUG   opendrift.readers.basereader.variables:100: Rotating vectors between -65.6816091654432 and -65.67318085395897 degrees.
10:16:46 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:46 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:46 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:46 DEBUG   opendrift.models.basemodel.environment:782: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
10:16:46 DEBUG   opendrift.models.basemodel.environment:787:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
10:16:46 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     x_sea_water_velocity: 0.00618814 (min) 0.0347241 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     y_sea_water_velocity: 0.0409576 (min) 0.0644409 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_height: 0.0222495 (min) 0.023235 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     x_wind: 4.20799 (min) 4.24476 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     y_wind: 4.33163 (min) 4.34223 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     upward_sea_water_velocity: -6.02204e-05 (min) -6.00019e-05 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     ocean_vertical_diffusivity: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_significant_height: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_x_stress: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     surface_downward_y_stress: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_kinetic_energy: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     turbulent_generic_length_scale: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     sea_floor_depth_below_sea_level: 298.972 (min) 299 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:46 DEBUG   opendrift.models.physics_methods:849: Calculating Hs from wind, min: 0.897236, mean: 0.903603, max: 0.906891
10:16:46 DEBUG   opendrift.models.physics_methods:907: Calculating wave period Tm02 from wind
10:16:46 DEBUG   opendrift.models.physics_methods:917:    min: 5.160395, mean: 5.178671, max: 5.188085
10:16:46 DEBUG   opendrift.models.physics_methods:857: Calculating wave period from wind, min: 5.160395, mean: 5.178671, max: 5.188085
10:16:46 DEBUG   opendrift:619: No elements hit coastline.
10:16:46 DEBUG   opendrift:702: No elements hit seafloor.
10:16:46 DEBUG   opendrift:1720: No elements to deactivate
10:16:46 DEBUG   opendrift:2150: Calling OceanDrift.update()
10:16:46 DEBUG   opendrift.models.physics_methods:771: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120786 m/s - 0.121434 m/s)
10:16:46 DEBUG   opendrift.models.physics_methods:789: No Stokes drift velocity available
10:16:46 DEBUG   opendrift.models.oceandrift:313: Vertical advection, excluding elements at surface
10:16:46 DEBUG   opendrift:1671: Horizontal diffusivity is 0, no random walk.
10:16:46 DEBUG   opendrift:2188: Cleaning up
10:16:46 DEBUG   opendrift.models.basemodel.environment:591: ----------------------------------------
10:16:46 DEBUG   opendrift.models.basemodel.environment:592: Variable group ['land_binary_mask']
10:16:46 DEBUG   opendrift.models.basemodel.environment:593: ----------------------------------------
10:16:46 DEBUG   opendrift.models.basemodel.environment:597: Calling reader global_landmask
10:16:46 DEBUG   opendrift.models.basemodel.environment:598: ----------------------------------------
10:16:46 DEBUG   opendrift.models.basemodel.environment:614: Data needed for 1000 elements
10:16:46 DEBUG   opendrift.readers.basereader.variables:759: Fetching variables from global_landmask covering 1000 elements
10:16:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
10:16:46 DEBUG   opendrift.readers.basereader.variables:637: Checking land_binary_mask for invalid values
10:16:46 DEBUG   opendrift.readers.basereader.variables:795: Reader projection is latlon - rotation of vectors is not needed.
10:16:46 DEBUG   opendrift.models.basemodel.environment:748: Obtained data for all elements.
10:16:46 DEBUG   opendrift.models.basemodel.environment:761: ---------------------------------------
10:16:46 DEBUG   opendrift.models.basemodel.environment:762: Finished processing all variable groups
10:16:46 DEBUG   opendrift.models.basemodel.environment:887: ------------ SUMMARY -------------
10:16:46 DEBUG   opendrift.models.basemodel.environment:889:     land_binary_mask: 0 (min) 0 (max)
10:16:46 DEBUG   opendrift.models.basemodel.environment:891: ---------------------------------
10:16:46 DEBUG   opendrift:619: No elements hit coastline.
10:16:46 DEBUG   opendrift:2274: Updating minval and maxval
10:16:46 DEBUG   opendrift:2354: Writing to file
10:16:46 DEBUG   opendrift:1720: No elements to deactivate
10:16:46 DEBUG   opendrift:100: Changed mode from Mode.Run to Mode.Result
10:16:46 DEBUG   opendrift:2421: Setting up map: corners=None, fast=False, lscale=None
10:16:47 DEBUG   opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 1) with Cartopy shapereader...
10:16:57 DEBUG   opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 5) with Cartopy shapereader...
10:16:57 DEBUG   opendrift.readers.reader_global_landmask:84: Loading shapes ('h' level 6) with Cartopy shapereader...
10:16:57 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:16:57 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:16:58 DEBUG   opendrift:3062: Saving animation..
10:16:58 INFO    opendrift:4607: Saving animation to /root/project/docs/source/gallery/animations/example_manual_aggregate_0.gif...
10:16:58 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:16:58 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:16:59 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:16:59 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:16:59 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:00 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:01 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:01 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:02 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:03 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:03 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:04 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:04 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:05 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:06 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:06 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:06 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:07 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:07 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:08 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:09 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:09 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:10 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:10 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:11 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:11 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:11 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:11 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:12 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:12 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:13 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:13 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:13 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:14 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:14 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:14 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:15 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:15 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:15 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:15 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:16 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:16 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:17 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:17 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:17 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:17 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:18 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:18 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:19 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:19 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:19 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:19 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:20 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:20 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:21 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:21 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:21 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:22 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:22 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:22 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:23 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:23 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:23 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:24 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:24 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:24 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:25 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:25 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:25 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:26 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:26 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:26 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:27 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:27 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:28 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:28 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:29 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:29 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:29 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:30 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:30 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:30 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:31 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:31 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:31 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:31 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:32 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:32 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:32 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:33 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:33 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:33 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:34 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:34 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:34 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:35 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:35 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:35 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:36 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:36 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:36 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:36 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:37 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:37 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:38 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:38 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:38 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:39 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:39 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:39 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:40 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:40 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:40 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:41 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:41 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:41 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:42 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:42 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:43 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:43 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:44 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:44 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:45 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:45 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:45 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:45 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:46 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:46 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:47 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:47 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:47 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:47 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:48 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:48 DEBUG   opendrift.readers.reader_global_landmask:123: Adding GSHHG shapes from cartopy, scale: h, extent: (3.7096510887145997, 4.904944801330567, 59.79483489990234, 60.56416244506836)..
10:17:56 DEBUG   opendrift:4645: MPLBACKEND = agg
10:17:56 DEBUG   opendrift:4646: DISPLAY = None
10:17:56 DEBUG   opendrift:4647: Time to save animation: 0:00:58.401765
10:17:56 INFO    opendrift:3055: Time to make animation: 0:01:10.131449
../_images/example_manual_aggregate_0.gif

Total running time of the script: (22 minutes 12.692 seconds)

Gallery generated by Sphinx-Gallery