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=3)
end_time = datetime.now().date()-timedelta(days=1)
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: 2024-06-28 00:00:00   end: 2024-06-30 23:00:00   step: 0 days 01:00:00
    72 times (0 missing)
Variables:
  ocean_vertical_salt_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_elevation
  latitude
  longitude
  wind_speed - derived from ['x_wind', 'y_wind']
  sea_water_speed - derived from ['x_sea_water_velocity', 'y_sea_water_velocity']
===========================

14:55:26 DEBUG   opendrift.config:168: Adding 18 config items from __init__
14:55:26 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
14:55:26 DEBUG   opendrift.config:168: Adding 5 config items from __init__
14:55:26 INFO    opendrift.models.basemodel:519: OpenDriftSimulation initialised (version 1.11.10 / v1.11.10-15-g65004d9)
14:55:26 DEBUG   opendrift.config:168: Adding 15 config items from oceandrift
14:55:26 DEBUG   opendrift.config:178:   Overwriting config item seed:z
14:55:26 DEBUG   opendrift.models.basemodel.environment:328: Added reader NorKyst manual aggregate
14:55:26 INFO    opendrift.models.basemodel.environment:218: Adding a dynamical landmask with max. priority based on assumed maximum speed of 2.0 m/s. Adding a customised landmask may be faster...
14:55:26 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:55:31 DEBUG   opendrift.models.basemodel.environment:328: Added reader global_landmask
14:55:31 INFO    opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_height: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    ocean_vertical_diffusivity: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_significant_height: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_to_direction: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_significant_height: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_to_direction: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_mean_period: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_significant_height: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    surface_downward_x_stress: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    surface_downward_y_stress: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    turbulent_kinetic_energy: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    turbulent_generic_length_scale: 0.000000
14:55:31 INFO    opendrift.models.basemodel.environment:248:    ocean_mixed_layer_thickness: 50.000000
14:55:31 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Config to Mode.Ready
14:55:31 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Ready to Mode.Run
14:55:32 DEBUG   opendrift.models.basemodel:1782:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.10
  Platform: Linux, 5.15.0-1057-aws
  68.56775665283203 GB memory
  36 processors (x86_64)
  NumPy version 1.26.4
  SciPy version 1.13.1
  Matplotlib version 3.8.4
  NetCDF4 version 1.6.1
  Xarray version 2024.6.0
  ADIOS (adios_db) version 1.1.1
  Copernicusmarine version 1.2.4
  Python version 3.11.6 | packaged by conda-forge | (main, Oct  3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------

14:55:32 DEBUG   opendrift.models.basemodel:1796: No output file is specified, neglecting export_buffer_length
14:55:32 DEBUG   opendrift.models.basemodel:1914: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2024-06-28 00:00:00 to 2024-06-30 23:00:00)
14:55:32 DEBUG   opendrift.models.basemodel.environment:180:    Preparing NorKyst manual aggregate for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
14:55:32 DEBUG   opendrift.readers.basereader.structured:153: Clearing cache for reader NorKyst manual aggregate before starting new simulation
14:55:32 DEBUG   opendrift.readers.basereader.variables:608: 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
14:55:32 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for NorKyst manual aggregate
14:55:32 DEBUG   opendrift.models.basemodel.environment:180:    Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
14:55:32 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
14:55:32 INFO    opendrift.models.basemodel:940: Using existing reader for land_binary_mask
14:55:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:32 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:55:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:55:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:55:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:55:32 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:55:32 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:55:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:32 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:55:32 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:55:32 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:55:32 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:55:32 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:55:32 INFO    opendrift.models.basemodel:951: All points are in ocean
14:55:32 DEBUG   opendrift.models.basemodel:895: to be seeded: 1000, already seeded 0
14:55:32 DEBUG   opendrift.models.basemodel:913: Released 1000 new elements.
14:55:32 WARNING opendrift.models.basemodel:734: Seafloor check not being run because environment is missing. This will happen the first time the function is run but if it happens subsequently there is probably a problem.
14:55:32 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:55:32 INFO    opendrift.models.basemodel:2042: 2024-06-28 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
14:55:32 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:55:32 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:55:32 DEBUG   opendrift.models.basemodel:2061:               59.99731 <- latitude  -> 60.002846
14:55:32 DEBUG   opendrift.models.basemodel:2066:               4.4945407 <- longitude -> 4.504945
14:55:32 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:55:32 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:55:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:32 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:55:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:55:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:55:32 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 00:00:00 (before)
                2024-06-28 01:00:00 (after)
14:55:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:55:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:55:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:55:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:55:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:55:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-28 00:00:00)
14:55:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 00:00:00) in space  (linearNDFast)
14:55:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:55:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:55:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
14:55:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
14:55:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:55:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:55:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:55:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:55:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:55:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:55:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:55:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:55:37 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:55:37 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:55:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0662264 (min) 0.0779441 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0737203 (min) 0.0816379 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.881874 (min) 0.893156 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.56922 (min) 7.60739 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.89596e-08 (min) 9.10191e-08 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:55:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:55:37 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.428930, mean: 1.435700, max: 1.442790
14:55:37 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:55:37 DEBUG   opendrift.models.physics_methods:1061:    min: 6.512309, mean: 6.527716, max: 6.543818
14:55:37 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.512309, mean: 6.527716, max: 6.543818
14:55:37 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:55:37 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:37 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:55:37 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:55:37 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.152429 m/s - 0.153167 m/s)
14:55:37 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:55:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:55:37 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:55:37 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:55:37 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:55:37 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:37 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:55:37 INFO    opendrift.models.basemodel:2042: 2024-06-28 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
14:55:37 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:55:37 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:55:37 DEBUG   opendrift.models.basemodel:2061:               60.0046046226293 <- latitude  -> 60.010395209217236
14:55:37 DEBUG   opendrift.models.basemodel:2066:               4.500517674528611 <- longitude -> 4.510624554632729
14:55:37 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:55:37 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:55:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:55:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:55:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:55:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 01:00:00 (before)
                2024-06-28 02:00:00 (after)
14:55:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:55:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:55:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:55:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:55:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:55:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-28 01:00:00)
14:55:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 01:00:00) in space  (linearNDFast)
14:55:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:55:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:55:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49949325638138 and -65.4893863656077 degrees.
14:55:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49949325638138 and -65.4893863656077 degrees.
14:55:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:55:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:55:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:55:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:55:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:55:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:55:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:55:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:55:40 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:55:40 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:55:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0574168 (min) 0.0663633 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0694593 (min) 0.0766573 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.13841 (min) -0.104935 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.7234 (min) 8.78182 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.89267e-05 (min) 2.9131e-05 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.722 (min) 298.972 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:55:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:55:40 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.872474, mean: 1.885088, max: 1.897432
14:55:40 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:55:40 DEBUG   opendrift.models.physics_methods:1061:    min: 7.454826, mean: 7.479889, max: 7.504343
14:55:40 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.454826, mean: 7.479889, max: 7.504343
14:55:40 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:55:40 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:40 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:55:40 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:55:40 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.174490 m/s - 0.175649 m/s)
14:55:40 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:55:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:55:40 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:55:40 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:55:40 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:55:40 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:40 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:55:40 INFO    opendrift.models.basemodel:2042: 2024-06-28 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
14:55:40 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:55:40 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:55:40 DEBUG   opendrift.models.basemodel:2061:               60.012536972769254 <- latitude  -> 60.01850610779994
14:55:40 DEBUG   opendrift.models.basemodel:2066:               4.5043640438825605 <- longitude -> 4.514493883303782
14:55:40 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:55:40 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:55:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:55:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:55:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:55:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 02:00:00 (before)
                2024-06-28 03:00:00 (after)
14:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:55:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 02:00:00)
14:55:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 02:00:00) in space  (linearNDFast)
14:55:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:55:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:55:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49564688066717 and -65.4855170319253 degrees.
14:55:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49564688066717 and -65.4855170319253 degrees.
14:55:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:55:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:55:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:55:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:55:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:55:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:55:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:55:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:55:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:55:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0717395 (min) 0.0813918 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.071153 (min) 0.0817975 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.993559 (min) -0.910918 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.05476 (min) 9.10551 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.68881e-06 (min) -1.31825e-06 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.988 (min) 299.217 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:55:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:55:44 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.041205, mean: 2.050605, max: 2.060005
14:55:44 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:55:44 DEBUG   opendrift.models.physics_methods:1061:    min: 7.783463, mean: 7.801361, max: 7.819226
14:55:44 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.783463, mean: 7.801361, max: 7.819226
14:55:44 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:55:44 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:44 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:55:44 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:55:44 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.182182 m/s - 0.183019 m/s)
14:55:44 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:55:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:55:44 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:55:44 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:55:44 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:55:44 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:44 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:55:44 INFO    opendrift.models.basemodel:2042: 2024-06-28 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
14:55:44 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:55:44 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:55:44 DEBUG   opendrift.models.basemodel:2061:               60.020796244854246 <- latitude  -> 60.026947271718015
14:55:44 DEBUG   opendrift.models.basemodel:2066:               4.507998095226265 <- longitude -> 4.518319941017951
14:55:44 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:55:44 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:55:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:55:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:55:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:55:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 03:00:00 (before)
                2024-06-28 04:00:00 (after)
14:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:55:48 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 03:00:00)
14:55:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 03:00:00) in space  (linearNDFast)
14:55:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:55:48 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:55:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49201281807574 and -65.48169098644897 degrees.
14:55:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49201281807574 and -65.48169098644897 degrees.
14:55:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:55:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:55:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:55:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:55:48 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:55:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:48 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:55:48 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:55:48 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:55:48 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:55:48 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.106173 (min) 0.11122 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0725406 (min) 0.0846922 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.33954 (min) -2.26804 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.03352 (min) 9.04365 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.73055e-05 (min) -2.65202e-05 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.182 (min) 299.388 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:55:48 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:55:48 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.135831, mean: 2.140255, max: 2.144715
14:55:48 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:55:48 DEBUG   opendrift.models.physics_methods:1061:    min: 7.961832, mean: 7.970073, max: 7.978375
14:55:48 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.961832, mean: 7.970073, max: 7.978375
14:55:48 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:55:48 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:48 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:55:48 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:55:48 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.186357 m/s - 0.186744 m/s)
14:55:48 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:55:48 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:55:48 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:55:48 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:55:48 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:55:48 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:48 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:55:48 INFO    opendrift.models.basemodel:2042: 2024-06-28 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
14:55:48 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:55:48 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:55:48 DEBUG   opendrift.models.basemodel:2061:               60.02910933631792 <- latitude  -> 60.03542215182679
14:55:48 DEBUG   opendrift.models.basemodel:2066:               4.51207618496506 <- longitude -> 4.522396650516387
14:55:48 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:55:48 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:55:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:55:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:55:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:55:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 04:00:00 (before)
                2024-06-28 05:00:00 (after)
14:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:55:51 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-28 04:00:00)
14:55:51 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 04:00:00) in space  (linearNDFast)
14:55:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:55:51 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:55:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48793471959596 and -65.47761425762377 degrees.
14:55:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48793471959596 and -65.47761425762377 degrees.
14:55:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:51 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:55:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:55:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:51 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:55:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:55:51 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:55:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:51 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:55:51 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:55:51 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:55:51 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:55:51 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.140221 (min) 0.146402 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0843582 (min) 0.0953152 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.51518 (min) -1.50128 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.184 (min) 10.2248 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.3379e-05 (min) -5.29835e-05 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.317 (min) 299.498 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:55:51 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:55:51 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.607065, mean: 2.617901, max: 2.628215
14:55:51 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:55:51 DEBUG   opendrift.models.physics_methods:1061:    min: 8.796411, mean: 8.814670, max: 8.832021
14:55:51 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.796411, mean: 8.814670, max: 8.832021
14:55:51 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:55:51 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:51 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:55:51 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:55:51 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205891 m/s - 0.206725 m/s)
14:55:51 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:55:51 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:55:51 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:55:51 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:55:51 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:55:51 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:51 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:55:51 INFO    opendrift.models.basemodel:2042: 2024-06-28 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
14:55:51 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:55:51 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:55:51 DEBUG   opendrift.models.basemodel:2061:               60.038553281375904 <- latitude  -> 60.045058073647155
14:55:51 DEBUG   opendrift.models.basemodel:2066:               4.519583843935877 <- longitude -> 4.529540045028736
14:55:51 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:55:51 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:55:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:51 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:55:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:55:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:51 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:55:51 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 05:00:00 (before)
                2024-06-28 06:00:00 (after)
14:55:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:55:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:55:55 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:55:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:55:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:55:55 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x22x2) for time before (2024-06-28 05:00:00)
14:55:55 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 05:00:00) in space  (linearNDFast)
14:55:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:55:55 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:55:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4804270662207 and -65.4704708566758 degrees.
14:55:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4804270662207 and -65.4704708566758 degrees.
14:55:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:55:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:55:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:55:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:55:55 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:55:55 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:55:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:55 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:55:55 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:55:55 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:55:55 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:55:55 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.156735 (min) 0.166721 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0878913 (min) 0.0979457 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.40799 (min) -3.38338 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.14909 (min) 9.17081 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.19542e-05 (min) -6.18202e-05 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.448 (min) 299.62 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:55:55 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:55:55 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.344363, mean: 2.348180, max: 2.352689
14:55:55 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:55:55 DEBUG   opendrift.models.physics_methods:1061:    min: 8.341459, mean: 8.348247, max: 8.356258
14:55:55 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.341459, mean: 8.348247, max: 8.356258
14:55:55 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:55:55 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:55 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:55:55 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:55:55 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.195243 m/s - 0.195589 m/s)
14:55:55 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:55:55 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:55:55 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:55:55 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:55:55 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:55:55 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:55 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:55:55 INFO    opendrift.models.basemodel:2042: 2024-06-28 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
14:55:55 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:55:55 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:55:55 DEBUG   opendrift.models.basemodel:2061:               60.04730641561143 <- latitude  -> 60.054147421743295
14:55:55 DEBUG   opendrift.models.basemodel:2066:               4.525956726982947 <- longitude -> 4.535307658814353
14:55:55 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:55:55 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:55:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:55:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:55:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:55:55 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 06:00:00 (before)
                2024-06-28 07:00:00 (after)
14:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:55:59 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 06:00:00)
14:55:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 06:00:00) in space  (linearNDFast)
14:55:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:55:59 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:55:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4740541739131 and -65.46470324602438 degrees.
14:55:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4740541739131 and -65.46470324602438 degrees.
14:55:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:55:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:55:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:55:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:55:59 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:55:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:55:59 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:55:59 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:55:59 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:55:59 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:55:59 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.168345 (min) 0.18225 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0908577 (min) 0.0935062 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.19961 (min) -5.18467 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.84653 (min) 8.9172 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.57804e-05 (min) -5.56284e-05 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.531 (min) 299.697 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:55:59 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:55:59 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.590291, mean: 2.603647, max: 2.617370
14:55:59 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:55:59 DEBUG   opendrift.models.physics_methods:1061:    min: 8.768067, mean: 8.790640, max: 8.813779
14:55:59 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.768067, mean: 8.790640, max: 8.813779
14:55:59 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:55:59 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:59 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:55:59 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:55:59 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205228 m/s - 0.206298 m/s)
14:55:59 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:55:59 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:55:59 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:55:59 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:55:59 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:55:59 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:55:59 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:55:59 INFO    opendrift.models.basemodel:2042: 2024-06-28 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
14:55:59 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:55:59 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:55:59 DEBUG   opendrift.models.basemodel:2061:               60.05598211652111 <- latitude  -> 60.06288951875902
14:55:59 DEBUG   opendrift.models.basemodel:2066:               4.530879459495599 <- longitude -> 4.5397106659980375
14:55:59 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:55:59 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:55:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:55:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:55:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:55:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:55:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:55:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:55:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:55:59 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 07:00:00 (before)
                2024-06-28 08:00:00 (after)
14:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 07:00:00)
14:56:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 07:00:00) in space  (linearNDFast)
14:56:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46913143713928 and -65.46030022665406 degrees.
14:56:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46913143713928 and -65.46030022665406 degrees.
14:56:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:02 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:02 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.178884 (min) 0.201012 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0998945 (min) 0.104253 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.24558 (min) -4.23142 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.69496 (min) 9.7398 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.2921e-05 (min) -3.27637e-05 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.59 (min) 299.757 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.752822, mean: 2.765312, max: 2.777062
14:56:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:02 DEBUG   opendrift.models.physics_methods:1061:    min: 9.038964, mean: 9.059444, max: 9.078673
14:56:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.038964, mean: 9.059444, max: 9.078673
14:56:02 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:02 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:02 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.211569 m/s - 0.212498 m/s)
14:56:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:02 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:02 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:02 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:02 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:02 INFO    opendrift.models.basemodel:2042: 2024-06-28 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
14:56:02 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:02 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:02 DEBUG   opendrift.models.basemodel:2061:               60.065538728335 <- latitude  -> 60.07253313992311
14:56:02 DEBUG   opendrift.models.basemodel:2066:               4.537947495103507 <- longitude -> 4.546405866119982
14:56:02 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:02 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 08:00:00 (before)
                2024-06-28 09:00:00 (after)
14:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:06 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 08:00:00)
14:56:06 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 08:00:00) in space  (linearNDFast)
14:56:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:06 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46206340488321 and -65.45360503329181 degrees.
14:56:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46206340488321 and -65.45360503329181 degrees.
14:56:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:06 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:06 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:06 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:06 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:06 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:06 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:06 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.164845 (min) 0.187849 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.16276 (min) 0.175478 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.58277 (min) -3.56205 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.1166 (min) 12.1523 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.77742e-06 (min) -9.61152e-06 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.719 (min) 299.876 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:06 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:06 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.927373, mean: 3.936105, max: 3.944989
14:56:06 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:06 DEBUG   opendrift.models.physics_methods:1061:    min: 10.796442, mean: 10.808437, max: 10.820628
14:56:06 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.796442, mean: 10.808437, max: 10.820628
14:56:06 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:06 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:06 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:06 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:06 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.252705 m/s - 0.253271 m/s)
14:56:06 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:06 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:06 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:06 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:06 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:06 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:06 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:06 INFO    opendrift.models.basemodel:2042: 2024-06-28 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
14:56:06 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:06 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:06 DEBUG   opendrift.models.basemodel:2061:               60.078690116695036 <- latitude  -> 60.08605136351409
14:56:06 DEBUG   opendrift.models.basemodel:2066:               4.544861818398604 <- longitude -> 4.553227329409249
14:56:06 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:06 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:06 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 09:00:00 (before)
                2024-06-28 10:00:00 (after)
14:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:09 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 09:00:00)
14:56:09 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 09:00:00) in space  (linearNDFast)
14:56:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:09 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45514907144093 and -65.44678355859487 degrees.
14:56:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45514907144093 and -65.44678355859487 degrees.
14:56:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:09 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:09 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:09 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:09 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:09 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:09 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:09 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.152275 (min) 0.172054 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.270311 (min) 0.275817 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.5825 (min) -1.53147 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.6117 (min) 13.6326 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.00925e-05 (min) 2.01892e-05 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.856 (min) 299.999 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:09 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:09 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.615625, mean: 4.624709, max: 4.633028
14:56:09 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:09 DEBUG   opendrift.models.physics_methods:1061:    min: 11.704283, mean: 11.715795, max: 11.726327
14:56:09 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.704283, mean: 11.715795, max: 11.726327
14:56:09 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:09 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:09 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:09 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:09 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.273954 m/s - 0.274470 m/s)
14:56:09 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:09 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:09 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:09 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:09 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:09 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:09 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:09 INFO    opendrift.models.basemodel:2042: 2024-06-28 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
14:56:09 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:09 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:09 DEBUG   opendrift.models.basemodel:2061:               60.0962664786401 <- latitude  -> 60.10369586992654
14:56:09 DEBUG   opendrift.models.basemodel:2066:               4.553292129185929 <- longitude -> 4.562052179022047
14:56:09 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:09 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:09 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:09 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 10:00:00 (before)
                2024-06-28 11:00:00 (after)
14:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:13 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 10:00:00)
14:56:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 10:00:00) in space  (linearNDFast)
14:56:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:13 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44671875749252 and -65.4379587089178 degrees.
14:56:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44671875749252 and -65.4379587089178 degrees.
14:56:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:13 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:13 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:13 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:13 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:13 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:13 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.149905 (min) 0.159809 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.334627 (min) 0.345497 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.58635 (min) -2.56172 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.0833 (min) 13.1084 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.32677e-05 (min) 4.34489e-05 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.891 (min) 299.982 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:13 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:13 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.374171, mean: 4.382545, max: 4.390001
14:56:13 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:13 DEBUG   opendrift.models.physics_methods:1061:    min: 11.394032, mean: 11.404934, max: 11.414632
14:56:13 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.394032, mean: 11.404934, max: 11.414632
14:56:13 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:13 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:13 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:13 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:13 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.266692 m/s - 0.267174 m/s)
14:56:13 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:13 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:13 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:13 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:13 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:13 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:13 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:13 INFO    opendrift.models.basemodel:2042: 2024-06-28 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
14:56:13 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:13 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:13 DEBUG   opendrift.models.basemodel:2061:               60.115849182857175 <- latitude  -> 60.12297710056116
14:56:13 DEBUG   opendrift.models.basemodel:2066:               4.559738776106858 <- longitude -> 4.568972752388525
14:56:13 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:13 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 11:00:00 (before)
                2024-06-28 12:00:00 (after)
14:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:17 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x22x2) for time before (2024-06-28 11:00:00)
14:56:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 11:00:00) in space  (linearNDFast)
14:56:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:17 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44027210356143 and -65.4310381198546 degrees.
14:56:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44027210356143 and -65.4310381198546 degrees.
14:56:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:17 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:17 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:17 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:17 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:17 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:17 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:17 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.159671 (min) 0.172047 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.361435 (min) 0.376977 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.88986 (min) -3.87334 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.5484 (min) 13.554 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.26623e-05 (min) 5.28536e-05 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.57 (min) 299.683 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:17 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:17 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.885382, mean: 4.887918, max: 4.890668
14:56:17 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:17 DEBUG   opendrift.models.physics_methods:1061:    min: 12.041451, mean: 12.044577, max: 12.047965
14:56:17 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.041451, mean: 12.044577, max: 12.047965
14:56:17 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:17 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:17 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:17 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:17 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.281846 m/s - 0.281998 m/s)
14:56:17 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:17 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:17 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:17 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:17 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:17 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:17 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:17 INFO    opendrift.models.basemodel:2042: 2024-06-28 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
14:56:17 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:17 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:17 DEBUG   opendrift.models.basemodel:2061:               60.13673505055967 <- latitude  -> 60.143434016261
14:56:17 DEBUG   opendrift.models.basemodel:2066:               4.565496646627421 <- longitude -> 4.574488662835084
14:56:17 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:17 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:17 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:17 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 12:00:00 (before)
                2024-06-28 13:00:00 (after)
14:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:20 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 12:00:00)
14:56:20 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 12:00:00) in space  (linearNDFast)
14:56:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:20 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43451423149511 and -65.4255222095322 degrees.
14:56:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43451423149511 and -65.4255222095322 degrees.
14:56:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:20 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:20 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:20 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:20 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:20 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:20 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:20 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.184748 (min) 0.202285 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.348428 (min) 0.367863 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.7365 (min) -4.69926 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.0441 (min) 14.0973 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.32834e-05 (min) 5.34946e-05 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.2 (min) 299.375 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:20 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:20 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.395275, mean: 5.418698, max: 5.440439
14:56:20 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:20 DEBUG   opendrift.models.physics_methods:1061:    min: 12.654249, mean: 12.681685, max: 12.707104
14:56:20 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.654249, mean: 12.681685, max: 12.707104
14:56:20 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:20 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:20 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:20 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:20 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.296189 m/s - 0.297426 m/s)
14:56:20 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:20 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:20 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:20 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:20 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:20 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:20 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:20 INFO    opendrift.models.basemodel:2042: 2024-06-28 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
14:56:20 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:20 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:20 DEBUG   opendrift.models.basemodel:2061:               60.157644646302515 <- latitude  -> 60.16381347490475
14:56:20 DEBUG   opendrift.models.basemodel:2066:               4.571991319876965 <- longitude -> 4.580528074749757
14:56:20 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:20 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:20 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:20 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 13:00:00 (before)
                2024-06-28 14:00:00 (after)
14:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:24 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 13:00:00)
14:56:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 13:00:00) in space  (linearNDFast)
14:56:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:24 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42801953997433 and -65.4194827935476 degrees.
14:56:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42801953997433 and -65.4194827935476 degrees.
14:56:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:24 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:24 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:24 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:24 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:24 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.201929 (min) 0.208892 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.302948 (min) 0.324325 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.92395 (min) -3.91436 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.9934 (min) 15.0103 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.73879e-05 (min) 3.76214e-05 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.224 (min) 299.46 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:24 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:24 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.907465, mean: 5.913240, max: 5.920070
14:56:24 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:24 DEBUG   opendrift.models.physics_methods:1061:    min: 13.241285, mean: 13.247756, max: 13.255404
14:56:24 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.241285, mean: 13.247756, max: 13.255404
14:56:24 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:24 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:24 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:24 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:24 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.309930 m/s - 0.310260 m/s)
14:56:24 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:24 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:24 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:24 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:24 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:24 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:24 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:24 INFO    opendrift.models.basemodel:2042: 2024-06-28 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
14:56:24 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:24 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:24 DEBUG   opendrift.models.basemodel:2061:               60.17772676055456 <- latitude  -> 60.18334390789023
14:56:24 DEBUG   opendrift.models.basemodel:2066:               4.580056246887956 <- longitude -> 4.5889637116002335
14:56:24 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:24 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:24 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 14:00:00 (before)
                2024-06-28 15:00:00 (after)
14:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:27 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 14:00:00)
14:56:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 14:00:00) in space  (linearNDFast)
14:56:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:27 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41995461548522 and -65.41104713940643 degrees.
14:56:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41995461548522 and -65.41104713940643 degrees.
14:56:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:27 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:27 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:27 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:27 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:27 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:27 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.16993 (min) 0.19289 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.237956 (min) 0.256562 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.76741 (min) -2.75147 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.6592 (min) 15.6698 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.70226e-05 (min) 1.71648e-05 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.68 (min) 299.905 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:27 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:27 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.218686, mean: 6.223050, max: 6.228786
14:56:27 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:27 DEBUG   opendrift.models.physics_methods:1061:    min: 13.585603, mean: 13.590368, max: 13.596630
14:56:27 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.585603, mean: 13.590368, max: 13.596630
14:56:27 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:27 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:27 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:27 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:27 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.317989 m/s - 0.318247 m/s)
14:56:27 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:27 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:27 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:27 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:27 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:27 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:27 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:27 INFO    opendrift.models.basemodel:2042: 2024-06-28 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
14:56:27 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:27 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:27 DEBUG   opendrift.models.basemodel:2061:               60.1960604602213 <- latitude  -> 60.20119204914825
14:56:27 DEBUG   opendrift.models.basemodel:2066:               4.587801862540633 <- longitude -> 4.597888874008514
14:56:27 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:27 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 15:00:00 (before)
                2024-06-28 16:00:00 (after)
14:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:31 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 15:00:00)
14:56:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 15:00:00) in space  (linearNDFast)
14:56:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:31 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41220899545019 and -65.4021219681517 degrees.
14:56:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41220899545019 and -65.4021219681517 degrees.
14:56:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:31 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:31 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:31 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:31 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:31 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:31 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:31 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.143841 (min) 0.160618 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.229711 (min) 0.238472 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.92267 (min) -1.80705 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.874 (min) 15.8871 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.19805e-05 (min) -1.18928e-05 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.153 (min) 300.334 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:31 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:31 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.282623, mean: 6.289485, max: 6.296497
14:56:31 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:31 DEBUG   opendrift.models.physics_methods:1061:    min: 13.655262, mean: 13.662718, max: 13.670333
14:56:31 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.655262, mean: 13.662718, max: 13.670333
14:56:31 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:31 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:31 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:31 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:31 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.319619 m/s - 0.319972 m/s)
14:56:31 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:31 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:31 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:31 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:31 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:31 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:31 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:31 INFO    opendrift.models.basemodel:2042: 2024-06-28 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
14:56:31 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:31 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:31 DEBUG   opendrift.models.basemodel:2061:               60.21390149278096 <- latitude  -> 60.21896941227976
14:56:31 DEBUG   opendrift.models.basemodel:2066:               4.59505784550461 <- longitude -> 4.605722647646617
14:56:31 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:31 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:31 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:31 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 16:00:00 (before)
                2024-06-28 17:00:00 (after)
14:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 16:00:00)
14:56:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 16:00:00) in space  (linearNDFast)
14:56:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.40495300046696 and -65.39428819663208 degrees.
14:56:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.40495300046696 and -65.39428819663208 degrees.
14:56:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:35 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:35 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.133838 (min) 0.145554 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.184176 (min) 0.192819 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.245908 (min) -0.213476 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.0804 (min) 14.1029 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.45846e-05 (min) -3.45319e-05 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.455 (min) 300.57 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:35 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.878442, mean: 4.886210, max: 4.894072
14:56:35 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:35 DEBUG   opendrift.models.physics_methods:1061:    min: 12.032895, mean: 12.042472, max: 12.052157
14:56:35 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.032895, mean: 12.042472, max: 12.052157
14:56:35 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:35 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:35 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:35 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:35 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.281646 m/s - 0.282096 m/s)
14:56:35 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:35 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:35 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:35 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:35 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:35 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:35 INFO    opendrift.models.basemodel:2042: 2024-06-28 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
14:56:35 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:35 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:35 DEBUG   opendrift.models.basemodel:2061:               60.22911888646067 <- latitude  -> 60.23404896685685
14:56:35 DEBUG   opendrift.models.basemodel:2066:               4.603876934315882 <- longitude -> 4.614610092345374
14:56:35 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:35 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 17:00:00 (before)
                2024-06-28 18:00:00 (after)
14:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 17:00:00)
14:56:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 17:00:00) in space  (linearNDFast)
14:56:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39613389766603 and -65.38540074631113 degrees.
14:56:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39613389766603 and -65.38540074631113 degrees.
14:56:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:40 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:40 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.160467 (min) 0.172776 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0843181 (min) 0.091328 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.74729 (min) 9.02668 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.34466 (min) 8.53191 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.16582e-05 (min) -5.14828e-05 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.54 (min) 300.568 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:40 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.661732, mean: 3.695857, max: 3.727269
14:56:40 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:40 DEBUG   opendrift.models.physics_methods:1061:    min: 10.424925, mean: 10.473376, max: 10.517801
14:56:40 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.424925, mean: 10.473376, max: 10.517801
14:56:40 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:40 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:40 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:40 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:40 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244009 m/s - 0.246183 m/s)
14:56:40 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:40 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:40 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:40 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:40 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:40 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:40 INFO    opendrift.models.basemodel:2042: 2024-06-28 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
14:56:40 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:40 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:40 DEBUG   opendrift.models.basemodel:2061:               60.237273055381806 <- latitude  -> 60.242437869905004
14:56:40 DEBUG   opendrift.models.basemodel:2066:               4.626601988545543 <- longitude -> 4.636709111656719
14:56:40 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:40 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 18:00:00 (before)
                2024-06-28 19:00:00 (after)
14:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-28 18:00:00)
14:56:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 18:00:00) in space  (linearNDFast)
14:56:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37340884605497 and -65.3633017243952 degrees.
14:56:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37340884605497 and -65.3633017243952 degrees.
14:56:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:45 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:45 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.169387 (min) 0.179155 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.029384 (min) 0.0417485 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 10.3014 (min) 10.3254 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.67347 (min) 7.67651 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.38297e-05 (min) -5.38131e-05 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.78 (min) 300.977 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.060169, mean: 4.065602, max: 4.071197
14:56:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:45 DEBUG   opendrift.models.physics_methods:1061:    min: 10.977455, mean: 10.984797, max: 10.992353
14:56:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.977455, mean: 10.984797, max: 10.992353
14:56:45 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:45 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:45 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:45 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.256942 m/s - 0.257290 m/s)
14:56:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:45 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:45 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:45 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:45 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:45 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:45 INFO    opendrift.models.basemodel:2042: 2024-06-28 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
14:56:45 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:45 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:45 DEBUG   opendrift.models.basemodel:2061:               60.243254846545796 <- latitude  -> 60.24855296617925
14:56:45 DEBUG   opendrift.models.basemodel:2066:               4.651562313655639 <- longitude -> 4.6612185957771946
14:56:45 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:45 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 19:00:00 (before)
                2024-06-28 20:00:00 (after)
14:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 19:00:00)
14:56:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 19:00:00) in space  (linearNDFast)
14:56:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3484485222328 and -65.33879222898662 degrees.
14:56:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3484485222328 and -65.33879222898662 degrees.
14:56:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:49 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:49 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.124558 (min) 0.135677 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0193132 (min) 0.0386901 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.70792 (min) 8.73111 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.6612 (min) 8.67836 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.07552e-05 (min) -4.06558e-05 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 301.988 (min) 302.66 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:49 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.717014, mean: 3.719977, max: 3.722604
14:56:49 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:49 DEBUG   opendrift.models.physics_methods:1061:    min: 10.503322, mean: 10.507507, max: 10.511217
14:56:49 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.503322, mean: 10.507507, max: 10.511217
14:56:49 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:49 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:49 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:49 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:49 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245844 m/s - 0.246029 m/s)
14:56:49 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:49 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:49 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:49 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:49 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:49 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:49 INFO    opendrift.models.basemodel:2042: 2024-06-28 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
14:56:49 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:49 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:49 DEBUG   opendrift.models.basemodel:2061:               60.24972488813931 <- latitude  -> 60.255008818592586
14:56:49 DEBUG   opendrift.models.basemodel:2066:               4.671703709589204 <- longitude -> 4.680658201390676
14:56:49 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:49 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 20:00:00 (before)
                2024-06-28 21:00:00 (after)
14:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-28 20:00:00)
14:56:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 20:00:00) in space  (linearNDFast)
14:56:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.32830710241379 and -65.31935262217542 degrees.
14:56:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.32830710241379 and -65.31935262217542 degrees.
14:56:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:53 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:53 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0452947 (min) 0.0531492 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0443863 (min) 0.067052 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.93463 (min) 7.94801 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.25617 (min) 9.27544 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.36964e-05 (min) -1.36232e-05 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 304.543 (min) 305.792 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:53 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.661649, mean: 3.663508, max: 3.665371
14:56:53 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:53 DEBUG   opendrift.models.physics_methods:1061:    min: 10.424804, mean: 10.427452, max: 10.430103
14:56:53 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.424804, mean: 10.427452, max: 10.430103
14:56:53 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:53 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:53 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:53 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:53 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244006 m/s - 0.244130 m/s)
14:56:53 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:53 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:53 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:53 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:53 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:53 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:53 INFO    opendrift.models.basemodel:2042: 2024-06-28 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
14:56:53 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:53 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:53 DEBUG   opendrift.models.basemodel:2061:               60.25750596828227 <- latitude  -> 60.26283519930243
14:56:53 DEBUG   opendrift.models.basemodel:2066:               4.685472356444022 <- longitude -> 4.693938530254051
14:56:53 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:53 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 21:00:00 (before)
                2024-06-28 22:00:00 (after)
14:56:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:56:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:56:56 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:56:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:56:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:56:56 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 21:00:00)
14:56:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 21:00:00) in space  (linearNDFast)
14:56:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:56:56 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:56:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.31453845919648 and -65.30607229177305 degrees.
14:56:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.31453845919648 and -65.30607229177305 degrees.
14:56:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:56:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:56:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:56:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:56:56 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:56:56 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:56:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:56:56 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:56:56 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:56:56 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:56:56 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:56:56 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0235241 (min) -0.0172581 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.09365 (min) 0.115455 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.94397 (min) 8.09091 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.23005 (min) 9.37517 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.46249e-05 (min) 1.48266e-05 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 308.095 (min) 309.781 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:56:56 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:56:56 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.695993, mean: 3.711150, max: 3.724849
14:56:56 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:56:56 DEBUG   opendrift.models.physics_methods:1061:    min: 10.473579, mean: 10.495031, max: 10.514386
14:56:56 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.473579, mean: 10.495031, max: 10.514386
14:56:56 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:56:56 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:56 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:56:56 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:56:56 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245148 m/s - 0.246103 m/s)
14:56:56 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:56:56 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:56:56 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:56:56 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:56:56 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:56:56 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:56:56 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:56:56 INFO    opendrift.models.basemodel:2042: 2024-06-28 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
14:56:56 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:56:56 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:56:56 DEBUG   opendrift.models.basemodel:2061:               60.266973060372834 <- latitude  -> 60.272123315423805
14:56:56 DEBUG   opendrift.models.basemodel:2066:               4.694638846201087 <- longitude -> 4.702898805296594
14:56:56 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:56:56 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:56:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:56:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:56:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:56:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:56:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:56:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:56:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:56:56 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 22:00:00 (before)
                2024-06-28 23:00:00 (after)
14:57:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 22:00:00)
14:57:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 22:00:00) in space  (linearNDFast)
14:57:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30537196945437 and -65.29711200943953 degrees.
14:57:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30537196945437 and -65.29711200943953 degrees.
14:57:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:02 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:02 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.113431 (min) -0.103109 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.153754 (min) 0.171848 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.40873 (min) 7.48655 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.72392 (min) 8.76876 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.65873e-05 (min) 3.68651e-05 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.301 (min) 314.245 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.241747, mean: 3.246199, max: 3.251018
14:57:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:02 DEBUG   opendrift.models.physics_methods:1061:    min: 9.808874, mean: 9.815607, max: 9.822889
14:57:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.808874, mean: 9.815607, max: 9.822889
14:57:02 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:02 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:02 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.229589 m/s - 0.229918 m/s)
14:57:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:02 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:02 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:02 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:02 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:02 INFO    opendrift.models.basemodel:2042: 2024-06-28 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
14:57:02 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:02 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:02 DEBUG   opendrift.models.basemodel:2061:               60.27774451163273 <- latitude  -> 60.28309592843617
14:57:02 DEBUG   opendrift.models.basemodel:2066:               4.697056766161696 <- longitude -> 4.705645673752341
14:57:02 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:02 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 23:00:00 (before)
                2024-06-29 00:00:00 (after)
14:57:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:05 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:05 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 23:00:00)
14:57:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 23:00:00) in space  (linearNDFast)
14:57:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:05 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30295403752754 and -65.29436513560194 degrees.
14:57:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30295403752754 and -65.29436513560194 degrees.
14:57:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:05 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:05 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:05 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:05 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:05 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:05 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:05 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.175953 (min) -0.168254 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.261304 (min) 0.276823 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.67727 (min) 8.70072 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.70106 (min) 7.70878 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.89593e-05 (min) 4.91522e-05 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 316.507 (min) 318.571 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:05 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:05 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.313966, mean: 3.317593, max: 3.321679
14:57:05 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:05 DEBUG   opendrift.models.physics_methods:1061:    min: 9.917533, mean: 9.922958, max: 9.929066
14:57:05 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.917533, mean: 9.922958, max: 9.929066
14:57:05 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:05 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:05 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:05 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:05 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.232133 m/s - 0.232403 m/s)
14:57:05 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:05 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:05 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:05 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:05 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:05 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:05 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:05 INFO    opendrift.models.basemodel:2042: 2024-06-29 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
14:57:05 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:05 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:05 DEBUG   opendrift.models.basemodel:2061:               60.29128544250233 <- latitude  -> 60.296800097995366
14:57:05 DEBUG   opendrift.models.basemodel:2066:               4.69696104151502 <- longitude -> 4.705906963676133
14:57:05 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:05 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 00:00:00 (before)
                2024-06-29 01:00:00 (after)
14:57:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:10 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:10 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity']
14:57:10 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-29 00:00:00)
14:57:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 00:00:00) in space  (linearNDFast)
14:57:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:10 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30304977816674 and -65.29410384598151 degrees.
14:57:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30304977816674 and -65.29410384598151 degrees.
14:57:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:10 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:10 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:10 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:10 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:10 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:10 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:10 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.175745 (min) -0.170532 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.327737 (min) 0.341612 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 9.79728 (min) 9.83017 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.65212 (min) 7.65952 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.5963e-07 (min) 2.9819e-07 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 321.616 (min) 323.722 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:10 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:10 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.801762, mean: 3.811142, max: 3.820251
14:57:10 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:10 DEBUG   opendrift.models.physics_methods:1061:    min: 10.622386, mean: 10.635480, max: 10.648184
14:57:10 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.622386, mean: 10.635480, max: 10.648184
14:57:10 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:10 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:10 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:10 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:10 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.248631 m/s - 0.249235 m/s)
14:57:10 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:10 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:10 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:10 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:10 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:10 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:10 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:10 INFO    opendrift.models.basemodel:2042: 2024-06-29 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
14:57:10 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:10 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:10 DEBUG   opendrift.models.basemodel:2061:               60.30699629921742 <- latitude  -> 60.31252908242027
14:57:10 DEBUG   opendrift.models.basemodel:2066:               4.698339675020854 <- longitude -> 4.707501829111366
14:57:10 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:10 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 01:00:00 (before)
                2024-06-29 02:00:00 (after)
14:57:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:14 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-29 01:00:00)
14:57:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 01:00:00) in space  (linearNDFast)
14:57:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30167113413094 and -65.29250897262357 degrees.
14:57:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30167113413094 and -65.29250897262357 degrees.
14:57:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:14 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:14 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.144793 (min) -0.142398 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.376281 (min) 0.389867 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 9.51637 (min) 9.55232 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.07666 (min) 8.08422 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.46217e-05 (min) 3.50033e-05 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 326.887 (min) 328.332 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:14 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.834201, mean: 3.842008, max: 3.850896
14:57:14 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:14 DEBUG   opendrift.models.physics_methods:1061:    min: 10.667607, mean: 10.678462, max: 10.690808
14:57:14 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.667607, mean: 10.678462, max: 10.690808
14:57:14 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:14 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:14 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:14 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:14 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.249689 m/s - 0.250232 m/s)
14:57:14 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:14 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:14 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:14 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:14 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:14 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:14 INFO    opendrift.models.basemodel:2042: 2024-06-29 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
14:57:14 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:14 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:14 DEBUG   opendrift.models.basemodel:2061:               60.324543527913775 <- latitude  -> 60.33008799705095
14:57:14 DEBUG   opendrift.models.basemodel:2066:               4.701490214582096 <- longitude -> 4.710470531327561
14:57:14 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:14 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 02:00:00 (before)
                2024-06-29 03:00:00 (after)
14:57:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:18 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:18 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:18 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 02:00:00)
14:57:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 02:00:00) in space  (linearNDFast)
14:57:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:18 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.29852058066093 and -65.28954026521964 degrees.
14:57:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.29852058066093 and -65.28954026521964 degrees.
14:57:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:18 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:18 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:18 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:18 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:18 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:18 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:18 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:18 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0837202 (min) -0.0799887 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.370503 (min) 0.381982 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.83163 (min) 8.84332 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.44764 (min) 8.46443 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.86396e-07 (min) 2.00502e-06 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 328.573 (min) 329.45 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:18 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:18 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.677563, mean: 3.679713, max: 3.682682
14:57:18 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:18 DEBUG   opendrift.models.physics_methods:1061:    min: 10.447435, mean: 10.450487, max: 10.454702
14:57:18 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.447435, mean: 10.450487, max: 10.454702
14:57:18 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:18 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:18 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:18 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:18 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244536 m/s - 0.244706 m/s)
14:57:18 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:18 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:18 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:18 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:18 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:18 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:18 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:18 INFO    opendrift.models.basemodel:2042: 2024-06-29 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
14:57:18 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:18 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:18 DEBUG   opendrift.models.basemodel:2061:               60.342122335566856 <- latitude  -> 60.347719338318086
14:57:18 DEBUG   opendrift.models.basemodel:2066:               4.707573027169652 <- longitude -> 4.716774536724771
14:57:18 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:18 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:18 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 03:00:00 (before)
                2024-06-29 04:00:00 (after)
14:57:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:23 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:23 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 03:00:00)
14:57:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 03:00:00) in space  (linearNDFast)
14:57:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:23 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2924377662557 and -65.28323625550861 degrees.
14:57:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2924377662557 and -65.28323625550861 degrees.
14:57:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:23 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:23 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:23 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:23 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:23 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:23 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:23 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0251342 (min) -0.0170365 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.340988 (min) 0.346139 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.39018 (min) 8.42223 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.11423 (min) 8.12925 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.1855e-06 (min) 2.21315e-06 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 322.918 (min) 326.11 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:23 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:23 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.356164, mean: 3.360741, max: 3.365306
14:57:23 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:23 DEBUG   opendrift.models.physics_methods:1061:    min: 9.980474, mean: 9.987278, max: 9.994059
14:57:23 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.980474, mean: 9.987278, max: 9.994059
14:57:23 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:23 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:23 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:23 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:23 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.233606 m/s - 0.233924 m/s)
14:57:23 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:23 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:23 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:23 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:23 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:23 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:23 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:23 INFO    opendrift.models.basemodel:2042: 2024-06-29 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
14:57:23 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:23 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:23 DEBUG   opendrift.models.basemodel:2061:               60.358385077133875 <- latitude  -> 60.36415233012997
14:57:23 DEBUG   opendrift.models.basemodel:2066:               4.716987132155139 <- longitude -> 4.726512620974446
14:57:23 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:23 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 04:00:00 (before)
                2024-06-29 05:00:00 (after)
14:57:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:27 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:27 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-29 04:00:00)
14:57:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 04:00:00) in space  (linearNDFast)
14:57:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:27 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.28302364777446 and -65.27349816180393 degrees.
14:57:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.28302364777446 and -65.27349816180393 degrees.
14:57:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:27 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:27 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:27 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:27 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:27 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:27 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:27 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00982426 (min) 0.0290712 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.302351 (min) 0.316305 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.4169 (min) 8.43793 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.1179 (min) 8.13812 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.2942e-05 (min) -3.2853e-05 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.7 (min) 318.94 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:27 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:27 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.364394, mean: 3.372646, max: 3.380673
14:57:27 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:27 DEBUG   opendrift.models.physics_methods:1061:    min: 9.992703, mean: 10.004949, max: 10.016850
14:57:27 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.992703, mean: 10.004949, max: 10.016850
14:57:27 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:27 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:27 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:27 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:27 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.233892 m/s - 0.234457 m/s)
14:57:27 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:27 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:27 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:27 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:27 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:27 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:27 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:27 INFO    opendrift.models.basemodel:2042: 2024-06-29 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
14:57:27 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:27 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:27 DEBUG   opendrift.models.basemodel:2061:               60.37356016732943 <- latitude  -> 60.37938936072706
14:57:27 DEBUG   opendrift.models.basemodel:2066:               4.729536259690233 <- longitude -> 4.738604289210522
14:57:27 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:27 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 05:00:00 (before)
                2024-06-29 06:00:00 (after)
14:57:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:31 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:31 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:31 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 05:00:00)
14:57:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 05:00:00) in space  (linearNDFast)
14:57:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:31 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.27047452154771 and -65.26140648760838 degrees.
14:57:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.27047452154771 and -65.26140648760838 degrees.
14:57:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:31 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:31 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:31 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:31 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:31 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:31 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:31 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:31 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0328208 (min) 0.0486679 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.266644 (min) 0.283883 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.15197 (min) 8.1811 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.58201 (min) 7.61926 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.71357e-05 (min) -5.69235e-05 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.328 (min) 308.571 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:31 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:31 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.052132, mean: 3.061852, max: 3.069643
14:57:31 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:31 DEBUG   opendrift.models.physics_methods:1061:    min: 9.517683, mean: 9.532824, max: 9.544948
14:57:31 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.517683, mean: 9.532824, max: 9.544948
14:57:31 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:31 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:31 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:31 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:31 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.222774 m/s - 0.223412 m/s)
14:57:31 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:31 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:31 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:31 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:31 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:31 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:31 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:31 INFO    opendrift.models.basemodel:2042: 2024-06-29 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
14:57:31 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:31 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:31 DEBUG   opendrift.models.basemodel:2061:               60.38733456352222 <- latitude  -> 60.393245642541345
14:57:31 DEBUG   opendrift.models.basemodel:2066:               4.7429976438388985 <- longitude -> 4.751529901577096
14:57:31 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:31 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:31 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:31 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 06:00:00 (before)
                2024-06-29 07:00:00 (after)
14:57:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:35 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 06:00:00)
14:57:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 06:00:00) in space  (linearNDFast)
14:57:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.25701312816983 and -65.24848086818817 degrees.
14:57:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.25701312816983 and -65.24848086818817 degrees.
14:57:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:35 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:35 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00842197 (min) 0.0211316 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.201061 (min) 0.223163 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.46157 (min) 7.48399 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.17484 (min) 7.21891 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.25519e-05 (min) -6.20904e-05 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 283.222 (min) 294.121 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:35 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.638745, mean: 2.648314, max: 2.657149
14:57:35 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:35 DEBUG   opendrift.models.physics_methods:1061:    min: 8.849695, mean: 8.865724, max: 8.880503
14:57:35 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.849695, mean: 8.865724, max: 8.880503
14:57:35 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:35 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:35 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:35 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:35 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.207139 m/s - 0.207860 m/s)
14:57:35 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:35 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:35 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:35 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:35 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:35 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:35 INFO    opendrift.models.basemodel:2042: 2024-06-29 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
14:57:35 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:35 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:35 DEBUG   opendrift.models.basemodel:2061:               60.39853817666008 <- latitude  -> 60.4051207081513
14:57:35 DEBUG   opendrift.models.basemodel:2066:               4.754140716875725 <- longitude -> 4.76183001505615
14:57:35 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:35 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 07:00:00 (before)
                2024-06-29 08:00:00 (after)
14:57:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:39 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:39 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:39 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 07:00:00)
14:57:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 07:00:00) in space  (linearNDFast)
14:57:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:39 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.24587004675182 and -65.23818074967093 degrees.
14:57:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.24587004675182 and -65.23818074967093 degrees.
14:57:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:39 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:39 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:39 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:39 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:39 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:39 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:39 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0222718 (min) -0.0163823 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.240789 (min) 0.282327 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.35057 (min) 6.37974 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.30097 (min) 7.35352 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.93829e-05 (min) -6.8977e-05 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 268.861 (min) 279.774 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:39 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:39 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.305519, mean: 2.317223, max: 2.327793
14:57:39 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:39 DEBUG   opendrift.models.physics_methods:1061:    min: 8.272064, mean: 8.293032, max: 8.311927
14:57:39 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.272064, mean: 8.293032, max: 8.311927
14:57:39 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:39 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:39 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:39 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:39 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.193618 m/s - 0.194552 m/s)
14:57:39 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:39 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:39 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:39 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:39 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:39 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:39 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:39 INFO    opendrift.models.basemodel:2042: 2024-06-29 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
14:57:39 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:39 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:39 DEBUG   opendrift.models.basemodel:2061:               60.4111572871291 <- latitude  -> 60.418930058419974
14:57:39 DEBUG   opendrift.models.basemodel:2066:               4.7612784839438955 <- longitude -> 4.768804499483293
14:57:39 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:39 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 08:00:00 (before)
                2024-06-29 09:00:00 (after)
14:57:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:43 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 08:00:00)
14:57:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 08:00:00) in space  (linearNDFast)
14:57:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23873227726506 and -65.23120625047116 degrees.
14:57:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23873227726506 and -65.23120625047116 degrees.
14:57:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0427911 (min) -0.0308069 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.332648 (min) 0.386757 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.52726 (min) 5.57553 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.22714 (min) 7.24313 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.79868e-05 (min) -4.77566e-05 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 256.635 (min) 268.768 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:43 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.036590, mean: 2.045463, max: 2.054924
14:57:43 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:43 DEBUG   opendrift.models.physics_methods:1061:    min: 7.774660, mean: 7.791575, max: 7.809575
14:57:43 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.774660, mean: 7.791575, max: 7.809575
14:57:43 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:43 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:43 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:43 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:43 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.181976 m/s - 0.182793 m/s)
14:57:43 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:43 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:43 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:43 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:43 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:43 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:43 INFO    opendrift.models.basemodel:2042: 2024-06-29 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
14:57:43 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:43 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:43 DEBUG   opendrift.models.basemodel:2061:               60.42658452157686 <- latitude  -> 60.43596945846328
14:57:43 DEBUG   opendrift.models.basemodel:2066:               4.766032198440247 <- longitude -> 4.773786390737874
14:57:43 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:43 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 09:00:00 (before)
                2024-06-29 10:00:00 (after)
14:57:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:46 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 09:00:00)
14:57:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 09:00:00) in space  (linearNDFast)
14:57:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23397855502424 and -65.2262243656445 degrees.
14:57:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23397855502424 and -65.2262243656445 degrees.
14:57:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:46 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:46 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0485372 (min) -0.0188277 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.442484 (min) 0.468888 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.80141 (min) 4.83526 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.20448 (min) 7.24892 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.69001e-06 (min) -4.35461e-06 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 241.668 (min) 257.023 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.843970, mean: 1.855807, max: 1.867792
14:57:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:46 DEBUG   opendrift.models.physics_methods:1061:    min: 7.397866, mean: 7.421569, max: 7.445501
14:57:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.397866, mean: 7.421569, max: 7.445501
14:57:46 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:46 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:47 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:47 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:47 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.173157 m/s - 0.174272 m/s)
14:57:47 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:47 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:47 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:47 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:47 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:47 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:47 INFO    opendrift.models.basemodel:2042: 2024-06-29 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
14:57:47 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:47 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:47 DEBUG   opendrift.models.basemodel:2061:               60.44559211458116 <- latitude  -> 60.45570085089561
14:57:47 DEBUG   opendrift.models.basemodel:2066:               4.7692472324870945 <- longitude -> 4.778877397088915
14:57:47 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:47 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 10:00:00 (before)
                2024-06-29 11:00:00 (after)
14:57:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:50 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-06-29 10:00:00)
14:57:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 10:00:00) in space  (linearNDFast)
14:57:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23076352215607 and -65.22113335072112 degrees.
14:57:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23076352215607 and -65.22113335072112 degrees.
14:57:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00702541 (min) 0.0664837 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.518541 (min) 0.544365 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.08614 (min) 3.10466 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.94534 (min) 7.97314 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.19623e-05 (min) 2.30432e-05 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 219.586 (min) 241.303 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.788999, mean: 1.794680, max: 1.799400
14:57:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:50 DEBUG   opendrift.models.physics_methods:1061:    min: 7.286763, mean: 7.298323, max: 7.307914
14:57:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.286763, mean: 7.298323, max: 7.307914
14:57:50 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:50 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:50 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:50 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.170556 m/s - 0.171051 m/s)
14:57:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:50 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:50 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:50 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:50 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:50 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:50 INFO    opendrift.models.basemodel:2042: 2024-06-29 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
14:57:50 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:50 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:50 DEBUG   opendrift.models.basemodel:2061:               60.468131085101604 <- latitude  -> 60.477606355634904
14:57:50 DEBUG   opendrift.models.basemodel:2066:               4.772952888513977 <- longitude -> 4.787075223916337
14:57:50 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:50 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 11:00:00 (before)
                2024-06-29 12:00:00 (after)
14:57:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:54 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:54 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:54 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-06-29 11:00:00)
14:57:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 11:00:00) in space  (linearNDFast)
14:57:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:54 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22705785009221 and -65.2129355230197 degrees.
14:57:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22705785009221 and -65.2129355230197 degrees.
14:57:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:54 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:54 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:54 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:54 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:54 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:54 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:54 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:54 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0573896 (min) 0.0837017 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.393798 (min) 0.509275 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.86632 (min) 2.94066 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.37492 (min) 8.40343 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.17849e-05 (min) 4.25018e-05 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 181.671 (min) 214.504 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:54 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:54 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.927533, mean: 1.939927, max: 1.947793
14:57:54 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:54 DEBUG   opendrift.models.physics_methods:1061:    min: 7.563633, mean: 7.587909, max: 7.603281
14:57:54 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.563633, mean: 7.587909, max: 7.603281
14:57:54 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:54 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:54 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:54 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:54 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.177037 m/s - 0.177965 m/s)
14:57:54 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:54 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:54 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:54 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:54 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:54 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:54 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:54 INFO    opendrift.models.basemodel:2042: 2024-06-29 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
14:57:54 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:54 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:54 DEBUG   opendrift.models.basemodel:2061:               60.4899517593542 <- latitude  -> 60.49579555951053
14:57:54 DEBUG   opendrift.models.basemodel:2066:               4.78056201729642 <- longitude -> 4.796133704143731
14:57:54 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:54 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:54 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:54 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 12:00:00 (before)
                2024-06-29 13:00:00 (after)
14:57:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:57:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:57:58 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:57:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:57:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:57:58 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:57:58 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 12:00:00)
14:57:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 12:00:00) in space  (linearNDFast)
14:57:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:57:58 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:57:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.21944871791138 and -65.20387703168694 degrees.
14:57:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.21944871791138 and -65.20387703168694 degrees.
14:57:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:58 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:57:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:57:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:57:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:57:58 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:57:58 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:57:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:57:58 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:57:58 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:57:58 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:57:58 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:57:58 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0748514 (min) -0.0243725 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.267184 (min) 0.359093 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.84215 (min) 2.89264 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.07137 (min) 8.10835 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.64232e-05 (min) 5.66726e-05 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 143.406 (min) 176.313 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:57:58 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:57:58 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.802451, mean: 1.807902, max: 1.823171
14:57:58 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:57:58 DEBUG   opendrift.models.physics_methods:1061:    min: 7.314107, mean: 7.325157, max: 7.356027
14:57:58 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.314107, mean: 7.325157, max: 7.356027
14:57:58 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:57:58 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:58 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:57:58 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:57:58 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.171196 m/s - 0.172177 m/s)
14:57:58 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:57:58 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:57:58 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:57:58 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:57:58 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:57:58 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:57:58 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:57:58 INFO    opendrift.models.basemodel:2042: 2024-06-29 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
14:57:58 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:57:58 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:57:58 DEBUG   opendrift.models.basemodel:2061:               60.50679358938132 <- latitude  -> 60.50964736446494
14:57:58 DEBUG   opendrift.models.basemodel:2066:               4.7826035404115474 <- longitude -> 4.795333707514193
14:57:58 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:57:58 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:57:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:57:58 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:57:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:57:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:57:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:57:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:57:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:57:58 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 13:00:00 (before)
                2024-06-29 14:00:00 (after)
14:58:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:02 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 13:00:00)
14:58:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 13:00:00) in space  (linearNDFast)
14:58:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.21740719381762 and -65.20467701042989 degrees.
14:58:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.21740719381762 and -65.20467701042989 degrees.
14:58:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:02 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:02 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.1721 (min) -0.141051 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.299895 (min) 0.325409 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.85526 (min) 2.89863 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.91049 (min) 7.91982 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.15287e-05 (min) 5.17495e-05 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 130.942 (min) 155.367 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.742289, mean: 1.744754, max: 1.749196
14:58:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:02 DEBUG   opendrift.models.physics_methods:1061:    min: 7.191007, mean: 7.196091, max: 7.205246
14:58:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.191007, mean: 7.196091, max: 7.205246
14:58:02 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:02 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:02 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.168315 m/s - 0.168648 m/s)
14:58:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:02 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:02 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:02 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:02 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:02 INFO    opendrift.models.basemodel:2042: 2024-06-29 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
14:58:02 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:02 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:02 DEBUG   opendrift.models.basemodel:2061:               60.522412638954265 <- latitude  -> 60.52452316173482
14:58:02 DEBUG   opendrift.models.basemodel:2066:               4.777020508333696 <- longitude -> 4.788355430650657
14:58:02 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:02 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:58:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:58:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 14:00:00 (before)
                2024-06-29 15:00:00 (after)
14:58:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:07 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:07 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:07 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 14:00:00)
14:58:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 14:00:00) in space  (linearNDFast)
14:58:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:07 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22299021118448 and -65.21165528835678 degrees.
14:58:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22299021118448 and -65.21165528835678 degrees.
14:58:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:07 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:07 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:07 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:07 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:07 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:07 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:07 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:07 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.202855 (min) -0.186514 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.379455 (min) 0.400426 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.41003 (min) 3.4511 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.69156 (min) 7.72591 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.61099e-05 (min) 3.62624e-05 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 129.312 (min) 149.96 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:07 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:07 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.741395, mean: 1.754175, max: 1.760705
14:58:07 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:07 DEBUG   opendrift.models.physics_methods:1061:    min: 7.189162, mean: 7.215491, max: 7.228911
14:58:07 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.189162, mean: 7.215491, max: 7.228911
14:58:07 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:07 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:07 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:07 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:07 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.168272 m/s - 0.169202 m/s)
14:58:07 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:07 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:07 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:07 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:07 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:07 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:07 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:07 INFO    opendrift.models.basemodel:2042: 2024-06-29 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
14:58:07 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:07 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:07 DEBUG   opendrift.models.basemodel:2061:               60.540109919271174 <- latitude  -> 60.54202313204717
14:58:07 DEBUG   opendrift.models.basemodel:2066:               4.769235435042616 <- longitude -> 4.779815274686398
14:58:07 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:07 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:07 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:58:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:58:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 15:00:00 (before)
                2024-06-29 16:00:00 (after)
14:58:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:11 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:11 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:11 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 15:00:00)
14:58:11 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 15:00:00) in space  (linearNDFast)
14:58:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:58:11 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:58:11 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23077528806206 and -65.22019543540772 degrees.
14:58:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23077528806206 and -65.22019543540772 degrees.
14:58:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:11 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:11 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:11 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:11 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:11 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:11 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:11 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:11 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.224589 (min) -0.179351 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.512489 (min) 0.536122 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.46573 (min) 3.49746 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.56638 (min) 7.62445 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.68886e-05 (min) 1.75038e-05 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 126.269 (min) 141.878 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:11 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:11 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.703831, mean: 1.724796, max: 1.730746
14:58:11 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:11 DEBUG   opendrift.models.physics_methods:1061:    min: 7.111199, mean: 7.154810, max: 7.167146
14:58:11 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.111199, mean: 7.154810, max: 7.167146
14:58:11 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:11 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:11 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:11 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:11 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.166447 m/s - 0.167756 m/s)
14:58:11 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:11 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:11 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:11 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:11 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:11 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:11 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:11 INFO    opendrift.models.basemodel:2042: 2024-06-29 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
14:58:11 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:11 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:11 DEBUG   opendrift.models.basemodel:2061:               60.56164384333057 <- latitude  -> 60.564261239447205
14:58:11 DEBUG   opendrift.models.basemodel:2066:               4.7620568587388545 <- longitude -> 4.7696260883919095
14:58:11 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:11 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:11 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:58:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:58:11 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 16:00:00 (before)
                2024-06-29 17:00:00 (after)
14:58:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:16 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:16 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:16 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x22x2) for time before (2024-06-29 16:00:00)
14:58:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 16:00:00) in space  (linearNDFast)
14:58:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:16 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23795385973636 and -65.23038461695148 degrees.
14:58:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23795385973636 and -65.23038461695148 degrees.
14:58:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:16 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:16 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:16 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:16 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:16 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:16 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:16 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:16 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.10582 (min) -0.0797435 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.459352 (min) 0.526992 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.48238 (min) 3.54211 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.77071 (min) 7.89734 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.00339e-05 (min) -9.73401e-06 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 108.233 (min) 119.817 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:16 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:16 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.783767, mean: 1.818636, max: 1.842896
14:58:16 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:16 DEBUG   opendrift.models.physics_methods:1061:    min: 7.276100, mean: 7.346855, max: 7.395712
14:58:16 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.276100, mean: 7.346855, max: 7.395712
14:58:16 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:16 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:16 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:16 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:16 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.170307 m/s - 0.173106 m/s)
14:58:16 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:16 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:16 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:16 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:16 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:16 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:16 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:16 INFO    opendrift.models.basemodel:2042: 2024-06-29 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
14:58:16 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:16 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:16 DEBUG   opendrift.models.basemodel:2061:               60.58287897121434 <- latitude  -> 60.58507069177585
14:58:16 DEBUG   opendrift.models.basemodel:2066:               4.759875427596913 <- longitude -> 4.7688504966531085
14:58:16 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:16 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:16 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:58:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:58:16 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 17:00:00 (before)
                2024-06-29 18:00:00 (after)
14:58:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:21 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:21 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:21 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 17:00:00)
14:58:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 17:00:00) in space  (linearNDFast)
14:58:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 1
14:58:21 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 1
14:58:21 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2401352842751 and -65.2311602048778 degrees.
14:58:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2401352842751 and -65.2311602048778 degrees.
14:58:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:21 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:21 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:21 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:21 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:21 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:21 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:21 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:21 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00820965 (min) 0.0377826 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.289456 (min) 0.382146 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.42845 (min) 3.51822 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.69017 (min) 7.92439 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.30032e-05 (min) -3.26537e-05 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 81.9011 (min) 93.4202 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 1 (max)
14:58:21 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:21 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.743968, mean: 1.810810, max: 1.849213
14:58:21 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:21 DEBUG   opendrift.models.physics_methods:1061:    min: 7.194472, mean: 7.330986, max: 7.408376
14:58:21 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.194472, mean: 7.330986, max: 7.408376
14:58:21 DEBUG   opendrift.models.basemodel:666: 665 elements hit land, moving them to the coastline.
14:58:21 DEBUG   opendrift.models.basemodel:1687: Added status stranded
14:58:21 DEBUG   opendrift.models.basemodel:1698: 665 elements scheduled for deactivation (stranded)
14:58:21 DEBUG   opendrift.models.basemodel:1700:       (z: 0.000000 to 0.000000)
14:58:21 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:21 DEBUG   opendrift.models.basemodel:1718: Removed 665 elements.
14:58:21 DEBUG   opendrift.models.basemodel:1721: Removed 665 values from environment.
14:58:21 DEBUG   opendrift.models.basemodel:1726: remove items from profile for z
14:58:21 DEBUG   opendrift.models.basemodel:1726: remove items from profile for ocean_vertical_diffusivity
14:58:21 DEBUG   opendrift.models.basemodel:1730: Removed 665 values from environment_profiles.
14:58:21 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:21 DEBUG   opendrift.models.physics_methods:915: Advecting 335 of 335 elements above 0.100m with wind-sheared ocean current (0.168396 m/s - 0.173403 m/s)
14:58:21 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:21 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:21 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:21 DEBUG   opendrift.models.basemodel:2128: 335 active elements (665 deactivated)
14:58:21 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:21 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:21 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:21 INFO    opendrift.models.basemodel:2042: 2024-06-29 18:00:00 - step 43 of 71 - 335 active elements (665 deactivated)
14:58:21 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:21 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:21 DEBUG   opendrift.models.basemodel:2061:               60.597374691531115 <- latitude  -> 60.6019846501639
14:58:21 DEBUG   opendrift.models.basemodel:2066:               4.766613687221742 <- longitude -> 4.7738951015842295
14:58:21 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:21 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:21 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:58:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 335 elements
14:58:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 335 elements
14:58:21 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 18:00:00 (before)
                2024-06-29 19:00:00 (after)
14:58:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:24 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:24 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:24 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 18:00:00)
14:58:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 18:00:00) in space  (linearNDFast)
14:58:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:58:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:58:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:58:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:58:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:58:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:58:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:58:24 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:58:24 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2333970098037 and -65.22611559516774 degrees.
14:58:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2333970098037 and -65.22611559516774 degrees.
14:58:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 335 elements
14:58:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 335 elements
14:58:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:24 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:24 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:24 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:24 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:24 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:24 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0525918 (min) 0.127882 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.347823 (min) 0.415864 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.15631 (min) 3.30142 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.82742 (min) 7.17172 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.67985e-05 (min) -4.58403e-05 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 25.1769 (min) 65.6149 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 1 (max)
14:58:24 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:24 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.391928, mean: 1.453292, max: 1.533066
14:58:24 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:24 DEBUG   opendrift.models.physics_methods:1061:    min: 6.427439, mean: 6.567157, max: 6.745435
14:58:24 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.427439, mean: 6.567157, max: 6.745435
14:58:24 DEBUG   opendrift.models.basemodel:666: 6 elements hit land, moving them to the coastline.
14:58:24 DEBUG   opendrift.models.basemodel:1698: 6 elements scheduled for deactivation (stranded)
14:58:24 DEBUG   opendrift.models.basemodel:1700:       (z: 0.000000 to 0.000000)
14:58:24 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:24 DEBUG   opendrift.models.basemodel:1718: Removed 6 elements.
14:58:24 DEBUG   opendrift.models.basemodel:1721: Removed 6 values from environment.
14:58:24 DEBUG   opendrift.models.basemodel:1726: remove items from profile for z
14:58:24 DEBUG   opendrift.models.basemodel:1726: remove items from profile for ocean_vertical_diffusivity
14:58:24 DEBUG   opendrift.models.basemodel:1730: Removed 6 values from environment_profiles.
14:58:24 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:24 DEBUG   opendrift.models.physics_methods:915: Advecting 329 of 329 elements above 0.100m with wind-sheared ocean current (0.150443 m/s - 0.157886 m/s)
14:58:24 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:24 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:24 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:24 DEBUG   opendrift.models.basemodel:2128: 329 active elements (671 deactivated)
14:58:24 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:24 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:24 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:24 INFO    opendrift.models.basemodel:2042: 2024-06-29 19:00:00 - step 44 of 71 - 329 active elements (671 deactivated)
14:58:24 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:24 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:24 DEBUG   opendrift.models.basemodel:2061:               60.61543480088906 <- latitude  -> 60.6182172195519
14:58:24 DEBUG   opendrift.models.basemodel:2066:               4.779675896168689 <- longitude -> 4.78298420603022
14:58:24 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:24 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:58:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 329 elements
14:58:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 329 elements
14:58:24 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 19:00:00 (before)
                2024-06-29 20:00:00 (after)
14:58:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:28 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-29 19:00:00)
14:58:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 19:00:00) in space  (linearNDFast)
14:58:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:58:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:58:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:58:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:58:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:58:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:58:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:58:28 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:58:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22033479934345 and -65.21702648691026 degrees.
14:58:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22033479934345 and -65.21702648691026 degrees.
14:58:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 329 elements
14:58:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 329 elements
14:58:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:28 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:28 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.198446 (min) 0.203729 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.151624 (min) 0.190908 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.91015 (min) 2.9454 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.43281 (min) 5.48131 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.62705e-05 (min) -5.6091e-05 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 42.338 (min) 48.5441 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 1 (max)
14:58:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:28 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.935504, mean: 0.943091, max: 0.952514
14:58:28 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:28 DEBUG   opendrift.models.physics_methods:1061:    min: 5.269294, mean: 5.290615, max: 5.316983
14:58:28 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.269294, mean: 5.290615, max: 5.316983
14:58:28 DEBUG   opendrift.models.basemodel:666: 10 elements hit land, moving them to the coastline.
14:58:28 DEBUG   opendrift.models.basemodel:1698: 10 elements scheduled for deactivation (stranded)
14:58:28 DEBUG   opendrift.models.basemodel:1700:       (z: 0.000000 to 0.000000)
14:58:28 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:28 DEBUG   opendrift.models.basemodel:1718: Removed 10 elements.
14:58:28 DEBUG   opendrift.models.basemodel:1721: Removed 10 values from environment.
14:58:28 DEBUG   opendrift.models.basemodel:1726: remove items from profile for z
14:58:28 DEBUG   opendrift.models.basemodel:1726: remove items from profile for ocean_vertical_diffusivity
14:58:28 DEBUG   opendrift.models.basemodel:1730: Removed 10 values from environment_profiles.
14:58:28 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:28 DEBUG   opendrift.models.physics_methods:915: Advecting 319 of 319 elements above 0.100m with wind-sheared ocean current (0.123335 m/s - 0.124451 m/s)
14:58:28 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:28 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:28 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:28 DEBUG   opendrift.models.basemodel:2128: 319 active elements (681 deactivated)
14:58:28 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:28 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:28 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:28 INFO    opendrift.models.basemodel:2042: 2024-06-29 20:00:00 - step 45 of 71 - 319 active elements (681 deactivated)
14:58:28 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:28 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:28 DEBUG   opendrift.models.basemodel:2061:               60.625522288611805 <- latitude  -> 60.626626010385124
14:58:28 DEBUG   opendrift.models.basemodel:2066:               4.796658433191437 <- longitude -> 4.799411885413778
14:58:28 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:28 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:58:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 319 elements
14:58:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 319 elements
14:58:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 20:00:00 (before)
                2024-06-29 21:00:00 (after)
14:58:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:33 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:33 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:33 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x22x2) for time before (2024-06-29 20:00:00)
14:58:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 20:00:00) in space  (linearNDFast)
14:58:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 2
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 2
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:58:33 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:58:33 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.20335225520904 and -65.20059880697494 degrees.
14:58:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.20335225520904 and -65.20059880697494 degrees.
14:58:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 319 elements
14:58:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 319 elements
14:58:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:33 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:33 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:33 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:33 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.140728 (min) 0.145482 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.164653 (min) 0.175692 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.31478 (min) 1.33316 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.24303 (min) 5.28392 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.43118e-05 (min) -4.42402e-05 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 12.9701 (min) 19.3315 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 1 (min) 1 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:33 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.718762, mean: 0.727123, max: 0.730548
14:58:33 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:33 DEBUG   opendrift.models.physics_methods:1061:    min: 4.618727, mean: 4.645508, max: 4.656439
14:58:33 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.618727, mean: 4.645508, max: 4.656439
14:58:33 DEBUG   opendrift.models.basemodel:666: 319 elements hit land, moving them to the coastline.
14:58:33 DEBUG   opendrift.models.basemodel:1698: 319 elements scheduled for deactivation (stranded)
14:58:33 DEBUG   opendrift.models.basemodel:1700:       (z: 0.000000 to 0.000000)
14:58:33 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:33 DEBUG   opendrift.models.basemodel:1718: Removed 319 elements.
14:58:33 DEBUG   opendrift.models.basemodel:1721: Removed 319 values from environment.
14:58:33 DEBUG   opendrift.models.basemodel:1726: remove items from profile for z
14:58:33 DEBUG   opendrift.models.basemodel:1726: remove items from profile for ocean_vertical_diffusivity
14:58:33 DEBUG   opendrift.models.basemodel:1730: Removed 319 values from environment_profiles.
14:58:33 WARNING opendrift.models.basemodel:2138: The simulation stopped before requested end time was reached.
14:58:33 INFO    opendrift.models.basemodel:2140: ========================
14:58:33 INFO    opendrift.models.basemodel:2141: End of simulation:
14:58:33 INFO    opendrift.models.basemodel:2142: No more active or scheduled elements, quitting.
14:58:33 INFO    opendrift.models.basemodel:2143: Traceback (most recent call last):
  File "/root/project/opendrift/models/basemodel/__init__.py", line 2105, in run
    raise ValueError(
ValueError: No more active or scheduled elements, quitting.

14:58:33 INFO    opendrift.models.basemodel:2144: 'The simulation stopped before requested end time was reached.'

14:58:33 INFO    opendrift.models.basemodel:2147: ========================
14:58:33 DEBUG   opendrift.models.basemodel:2157: Cleaning up
14:58:33 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:33 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Run to Mode.Result
14:58:33 DEBUG   opendrift.models.oceandrift:115: No machine learning correction available.
14:58:33 DEBUG   opendrift.config:168: Adding 50 config items from environment
14:58:33 DEBUG   opendrift.config:168: Adding 5 config items from environment
14:58:33 DEBUG   opendrift.config:168: Adding 18 config items from __init__
14:58:33 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
14:58:33 DEBUG   opendrift.config:168: Adding 5 config items from __init__
14:58:33 INFO    opendrift.models.basemodel:519: OpenDriftSimulation initialised (version 1.11.10 / v1.11.10-15-g65004d9)
14:58:33 DEBUG   opendrift.config:168: Adding 15 config items from oceandrift
14:58:33 DEBUG   opendrift.config:178:   Overwriting config item seed:z
14:58:33 DEBUG   opendrift.readers.reader_lazy:38: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:33 DEBUG   opendrift.models.basemodel.environment:328: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:33 INFO    opendrift.models.basemodel.environment:218: Adding a dynamical landmask with max. priority based on assumed maximum speed of 2.0 m/s. Adding a customised landmask may be faster...
14:58:33 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:58:33 DEBUG   opendrift.models.basemodel.environment:328: Added reader global_landmask
14:58:33 INFO    opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
14:58:33 INFO    opendrift.models.basemodel.environment:248:    x_sea_water_velocity: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    y_sea_water_velocity: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_height: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    x_wind: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    y_wind: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    upward_sea_water_velocity: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    ocean_vertical_diffusivity: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_significant_height: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_to_direction: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_significant_height: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_to_direction: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_mean_period: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_significant_height: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    surface_downward_x_stress: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    surface_downward_y_stress: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    turbulent_kinetic_energy: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    turbulent_generic_length_scale: 0.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    ocean_mixed_layer_thickness: 50.000000
14:58:33 INFO    opendrift.models.basemodel.environment:248:    sea_floor_depth_below_sea_level: 10000.000000
14:58:33 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Config to Mode.Ready
14:58:33 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Ready to Mode.Run
14:58:33 DEBUG   opendrift.models.basemodel:1782:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.10
  Platform: Linux, 5.15.0-1057-aws
  68.56775665283203 GB memory
  36 processors (x86_64)
  NumPy version 1.26.4
  SciPy version 1.13.1
  Matplotlib version 3.8.4
  NetCDF4 version 1.6.1
  Xarray version 2024.6.0
  ADIOS (adios_db) version 1.1.1
  Copernicusmarine version 1.2.4
  Python version 3.11.6 | packaged by conda-forge | (main, Oct  3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------

14:58:33 DEBUG   opendrift.models.basemodel:1796: No output file is specified, neglecting export_buffer_length
14:58:33 DEBUG   opendrift.models.basemodel:1914: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2024-06-28 00:00:00 to 2024-06-30 23:00:00)
14:58:33 DEBUG   opendrift.models.basemodel.environment:180:    Preparing LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
14:58:33 DEBUG   opendrift.models.basemodel.environment:180:    Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
14:58:33 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
14:58:33 INFO    opendrift.models.basemodel:940: Using existing reader for land_binary_mask
14:58:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:33 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:33 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:33 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:33 INFO    opendrift.models.basemodel:951: All points are in ocean
14:58:33 DEBUG   opendrift.models.basemodel:895: to be seeded: 1000, already seeded 0
14:58:33 DEBUG   opendrift.models.basemodel:913: Released 1000 new elements.
14:58:33 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:33 INFO    opendrift.models.basemodel:2042: 2024-06-28 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
14:58:33 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:33 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:33 DEBUG   opendrift.models.basemodel:2061:               59.99731 <- latitude  -> 60.002846
14:58:33 DEBUG   opendrift.models.basemodel:2066:               4.4945407 <- longitude -> 4.504945
14:58:33 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:33 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:33 DEBUG   opendrift.models.basemodel.environment:581: Variables not covered by any reader: ['sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'turbulent_kinetic_energy', 'x_sea_water_velocity', 'ocean_vertical_diffusivity', 'surface_downward_y_stress', 'x_wind', 'sea_surface_wave_period_at_variance_spectral_density_maximum', 'y_wind', 'ocean_mixed_layer_thickness', 'sea_floor_depth_below_sea_level', 'sea_surface_wave_stokes_drift_x_velocity', 'upward_sea_water_velocity', 'surface_downward_x_stress', 'y_sea_water_velocity', 'sea_surface_wave_stokes_drift_y_velocity', 'sea_surface_wave_significant_height', 'turbulent_generic_length_scale', 'sea_surface_height']
14:58:33 DEBUG   opendrift.readers.reader_lazy:57: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:33 INFO    opendrift.readers.reader_netCDF_CF_generic:102: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:34 DEBUG   opendrift.readers.reader_netCDF_CF_generic:119: Finding coordinate variables.
14:58:34 DEBUG   opendrift.readers.reader_netCDF_CF_generic:134: Parsing CF grid mapping dictionary: {'grid_mapping_name': 'polar_stereographic', 'straight_vertical_longitude_from_pole': 70.0, 'latitude_of_projection_origin': 90.0, 'standard_parallel': 60.0, 'false_easting': 3192800.0, 'false_northing': 1784000.0, 'semi_major_axis': 6378137.0, 'semi_minor_axis': 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'}
14:58:35 INFO    opendrift.readers.reader_netCDF_CF_generic:314: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
14:58:35 DEBUG   opendrift.readers.reader_netCDF_CF_generic:350: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
14:58:35 DEBUG   opendrift.readers.basereader.variables:608: 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
14:58:35 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:58:35 DEBUG   opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
14:58:35 DEBUG   opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
14:58:35 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
14:58:35 DEBUG   opendrift.readers.basereader.variables:608: 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
14:58:35 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:35 DEBUG   opendrift.readers.reader_lazy:72: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:35 DEBUG   opendrift.readers.basereader.variables:608: 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
14:58:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 00:00:00 (before)
                2024-06-28 01:00:00 (after)
14:58:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-28 00:00:00)
14:58:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 00:00:00) in space  (linearNDFast)
14:58:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
14:58:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
14:58:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:35 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:35 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0662264 (min) 0.0779441 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0737203 (min) 0.0816379 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.881874 (min) 0.893156 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.56922 (min) 7.60739 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.89596e-08 (min) 9.10191e-08 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:35 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.428930, mean: 1.435700, max: 1.442790
14:58:35 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:35 DEBUG   opendrift.models.physics_methods:1061:    min: 6.512309, mean: 6.527716, max: 6.543818
14:58:35 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.512309, mean: 6.527716, max: 6.543818
14:58:35 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:35 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:35 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:35 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:35 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.152429 m/s - 0.153167 m/s)
14:58:35 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:35 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:35 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:35 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:35 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:35 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:35 INFO    opendrift.models.basemodel:2042: 2024-06-28 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
14:58:35 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:35 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:35 DEBUG   opendrift.models.basemodel:2061:               60.0046046226293 <- latitude  -> 60.010395209217236
14:58:35 DEBUG   opendrift.models.basemodel:2066:               4.500517674528611 <- longitude -> 4.510624554632729
14:58:35 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:35 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 01:00:00 (before)
                2024-06-28 02:00:00 (after)
14:58:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-28 01:00:00)
14:58:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 01:00:00) in space  (linearNDFast)
14:58:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49949325638138 and -65.4893863656077 degrees.
14:58:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49949325638138 and -65.4893863656077 degrees.
14:58:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:36 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:36 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0574168 (min) 0.0663633 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0694593 (min) 0.0766573 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.13841 (min) -0.104935 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.7234 (min) 8.78182 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.89267e-05 (min) 2.9131e-05 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.722 (min) 298.972 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:36 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.872474, mean: 1.885088, max: 1.897432
14:58:36 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:36 DEBUG   opendrift.models.physics_methods:1061:    min: 7.454826, mean: 7.479889, max: 7.504343
14:58:36 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.454826, mean: 7.479889, max: 7.504343
14:58:36 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:36 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:36 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:36 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:36 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.174490 m/s - 0.175649 m/s)
14:58:36 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:36 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:36 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:36 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:36 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:36 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:36 INFO    opendrift.models.basemodel:2042: 2024-06-28 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
14:58:36 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:36 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:36 DEBUG   opendrift.models.basemodel:2061:               60.012536972769254 <- latitude  -> 60.01850610779994
14:58:36 DEBUG   opendrift.models.basemodel:2066:               4.5043640438825605 <- longitude -> 4.514493883303782
14:58:36 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:36 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 02:00:00 (before)
                2024-06-28 03:00:00 (after)
14:58:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 02:00:00)
14:58:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 02:00:00) in space  (linearNDFast)
14:58:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49564688066717 and -65.4855170319253 degrees.
14:58:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49564688066717 and -65.4855170319253 degrees.
14:58:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:37 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:37 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0717395 (min) 0.0813918 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.071153 (min) 0.0817975 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.993559 (min) -0.910918 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.05476 (min) 9.10551 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.68881e-06 (min) -1.31825e-06 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.988 (min) 299.217 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:37 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.041205, mean: 2.050605, max: 2.060005
14:58:37 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:37 DEBUG   opendrift.models.physics_methods:1061:    min: 7.783463, mean: 7.801361, max: 7.819226
14:58:37 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.783463, mean: 7.801361, max: 7.819226
14:58:37 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:37 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:37 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:37 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:37 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.182182 m/s - 0.183019 m/s)
14:58:37 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:37 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:37 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:37 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:37 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:37 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:37 INFO    opendrift.models.basemodel:2042: 2024-06-28 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
14:58:37 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:37 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:37 DEBUG   opendrift.models.basemodel:2061:               60.020796244854246 <- latitude  -> 60.026947271718015
14:58:37 DEBUG   opendrift.models.basemodel:2066:               4.507998095226265 <- longitude -> 4.518319941017951
14:58:37 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:37 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 03:00:00 (before)
                2024-06-28 04:00:00 (after)
14:58:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 03:00:00)
14:58:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 03:00:00) in space  (linearNDFast)
14:58:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49201281807574 and -65.48169098644897 degrees.
14:58:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49201281807574 and -65.48169098644897 degrees.
14:58:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:38 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:38 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.106173 (min) 0.11122 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0725406 (min) 0.0846922 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.33954 (min) -2.26804 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.03352 (min) 9.04365 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.73055e-05 (min) -2.65202e-05 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.182 (min) 299.388 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:38 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.135831, mean: 2.140255, max: 2.144715
14:58:38 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:38 DEBUG   opendrift.models.physics_methods:1061:    min: 7.961832, mean: 7.970073, max: 7.978375
14:58:38 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.961832, mean: 7.970073, max: 7.978375
14:58:38 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:38 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:38 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:38 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:38 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.186357 m/s - 0.186744 m/s)
14:58:38 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:38 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:38 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:38 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:38 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:38 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:38 INFO    opendrift.models.basemodel:2042: 2024-06-28 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
14:58:38 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:38 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:38 DEBUG   opendrift.models.basemodel:2061:               60.02910933631792 <- latitude  -> 60.03542215182679
14:58:38 DEBUG   opendrift.models.basemodel:2066:               4.51207618496506 <- longitude -> 4.522396650516387
14:58:38 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:38 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 04:00:00 (before)
                2024-06-28 05:00:00 (after)
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-28 04:00:00)
14:58:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 04:00:00) in space  (linearNDFast)
14:58:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:39 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48793471959596 and -65.47761425762377 degrees.
14:58:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48793471959596 and -65.47761425762377 degrees.
14:58:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:39 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:39 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:39 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:39 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.140221 (min) 0.146402 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0843582 (min) 0.0953152 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.51518 (min) -1.50128 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.184 (min) 10.2248 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.3379e-05 (min) -5.29835e-05 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.317 (min) 299.498 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:39 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.607065, mean: 2.617901, max: 2.628215
14:58:39 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:39 DEBUG   opendrift.models.physics_methods:1061:    min: 8.796411, mean: 8.814670, max: 8.832021
14:58:39 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.796411, mean: 8.814670, max: 8.832021
14:58:39 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:39 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:39 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:39 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:39 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205891 m/s - 0.206725 m/s)
14:58:39 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:39 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:39 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:39 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:39 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:39 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:39 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:39 INFO    opendrift.models.basemodel:2042: 2024-06-28 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
14:58:39 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:39 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:39 DEBUG   opendrift.models.basemodel:2061:               60.038553281375904 <- latitude  -> 60.045058073647155
14:58:39 DEBUG   opendrift.models.basemodel:2066:               4.519583843935877 <- longitude -> 4.529540045028736
14:58:39 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:39 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 05:00:00 (before)
                2024-06-28 06:00:00 (after)
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x22x2) for time before (2024-06-28 05:00:00)
14:58:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 05:00:00) in space  (linearNDFast)
14:58:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:39 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4804270662207 and -65.4704708566758 degrees.
14:58:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4804270662207 and -65.4704708566758 degrees.
14:58:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:39 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:39 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:39 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:39 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.156735 (min) 0.166721 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0878913 (min) 0.0979457 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.40799 (min) -3.38338 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.14909 (min) 9.17081 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.19542e-05 (min) -6.18202e-05 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.448 (min) 299.62 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:39 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:39 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.344363, mean: 2.348180, max: 2.352689
14:58:39 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:39 DEBUG   opendrift.models.physics_methods:1061:    min: 8.341459, mean: 8.348247, max: 8.356258
14:58:39 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.341459, mean: 8.348247, max: 8.356258
14:58:39 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:39 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:39 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:39 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:39 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.195243 m/s - 0.195589 m/s)
14:58:39 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:39 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:39 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:39 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:39 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:39 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:39 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:39 INFO    opendrift.models.basemodel:2042: 2024-06-28 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
14:58:39 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:39 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:39 DEBUG   opendrift.models.basemodel:2061:               60.04730641561143 <- latitude  -> 60.054147421743295
14:58:39 DEBUG   opendrift.models.basemodel:2066:               4.525956726982947 <- longitude -> 4.535307658814353
14:58:39 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:39 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:39 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:39 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 06:00:00 (before)
                2024-06-28 07:00:00 (after)
14:58:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 06:00:00)
14:58:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 06:00:00) in space  (linearNDFast)
14:58:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4740541739131 and -65.46470324602438 degrees.
14:58:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4740541739131 and -65.46470324602438 degrees.
14:58:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:40 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:40 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.168345 (min) 0.18225 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0908577 (min) 0.0935062 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.19961 (min) -5.18467 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.84653 (min) 8.9172 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.57804e-05 (min) -5.56284e-05 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.531 (min) 299.697 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:40 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.590291, mean: 2.603647, max: 2.617370
14:58:40 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:40 DEBUG   opendrift.models.physics_methods:1061:    min: 8.768067, mean: 8.790640, max: 8.813779
14:58:40 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.768067, mean: 8.790640, max: 8.813779
14:58:40 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:40 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:40 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:40 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:40 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205228 m/s - 0.206298 m/s)
14:58:40 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:40 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:40 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:40 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:40 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:40 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:40 INFO    opendrift.models.basemodel:2042: 2024-06-28 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
14:58:40 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:40 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:40 DEBUG   opendrift.models.basemodel:2061:               60.05598211652111 <- latitude  -> 60.06288951875902
14:58:40 DEBUG   opendrift.models.basemodel:2066:               4.530879459495599 <- longitude -> 4.5397106659980375
14:58:40 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:40 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 07:00:00 (before)
                2024-06-28 08:00:00 (after)
14:58:41 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:41 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 07:00:00)
14:58:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 07:00:00) in space  (linearNDFast)
14:58:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:41 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46913143713928 and -65.46030022665406 degrees.
14:58:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46913143713928 and -65.46030022665406 degrees.
14:58:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:41 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:41 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:41 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:41 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:41 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.178884 (min) 0.201012 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0998945 (min) 0.104253 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.24558 (min) -4.23142 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.69496 (min) 9.7398 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.2921e-05 (min) -3.27637e-05 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.59 (min) 299.757 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:41 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:41 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.752822, mean: 2.765312, max: 2.777062
14:58:41 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:41 DEBUG   opendrift.models.physics_methods:1061:    min: 9.038964, mean: 9.059444, max: 9.078673
14:58:41 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.038964, mean: 9.059444, max: 9.078673
14:58:41 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:41 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:41 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:41 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:41 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.211569 m/s - 0.212498 m/s)
14:58:41 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:41 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:41 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:41 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:41 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:41 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:41 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:41 INFO    opendrift.models.basemodel:2042: 2024-06-28 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
14:58:41 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:41 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:41 DEBUG   opendrift.models.basemodel:2061:               60.065538728335 <- latitude  -> 60.07253313992311
14:58:41 DEBUG   opendrift.models.basemodel:2066:               4.537947495103507 <- longitude -> 4.546405866119982
14:58:41 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:41 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 08:00:00 (before)
                2024-06-28 09:00:00 (after)
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 08:00:00)
14:58:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 08:00:00) in space  (linearNDFast)
14:58:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46206340488321 and -65.45360503329181 degrees.
14:58:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46206340488321 and -65.45360503329181 degrees.
14:58:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.164845 (min) 0.187849 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.16276 (min) 0.175478 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.58277 (min) -3.56205 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.1166 (min) 12.1523 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.77742e-06 (min) -9.61152e-06 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.719 (min) 299.876 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:43 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.927373, mean: 3.936105, max: 3.944989
14:58:43 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:43 DEBUG   opendrift.models.physics_methods:1061:    min: 10.796442, mean: 10.808437, max: 10.820628
14:58:43 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.796442, mean: 10.808437, max: 10.820628
14:58:43 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:43 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:43 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:43 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:43 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.252705 m/s - 0.253271 m/s)
14:58:43 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:43 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:43 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:43 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:43 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:43 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:43 INFO    opendrift.models.basemodel:2042: 2024-06-28 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
14:58:43 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:43 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:43 DEBUG   opendrift.models.basemodel:2061:               60.078690116695036 <- latitude  -> 60.08605136351409
14:58:43 DEBUG   opendrift.models.basemodel:2066:               4.544861818398604 <- longitude -> 4.553227329409249
14:58:43 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:43 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 09:00:00 (before)
                2024-06-28 10:00:00 (after)
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 09:00:00)
14:58:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 09:00:00) in space  (linearNDFast)
14:58:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45514907144093 and -65.44678355859487 degrees.
14:58:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45514907144093 and -65.44678355859487 degrees.
14:58:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.152275 (min) 0.172054 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.270311 (min) 0.275817 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.5825 (min) -1.53147 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.6117 (min) 13.6326 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.00925e-05 (min) 2.01892e-05 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.856 (min) 299.999 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:43 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.615625, mean: 4.624709, max: 4.633028
14:58:43 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:43 DEBUG   opendrift.models.physics_methods:1061:    min: 11.704283, mean: 11.715795, max: 11.726327
14:58:43 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.704283, mean: 11.715795, max: 11.726327
14:58:43 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:43 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:43 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:43 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:43 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.273954 m/s - 0.274470 m/s)
14:58:43 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:43 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:43 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:43 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:43 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:43 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:43 INFO    opendrift.models.basemodel:2042: 2024-06-28 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
14:58:43 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:43 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:43 DEBUG   opendrift.models.basemodel:2061:               60.0962664786401 <- latitude  -> 60.10369586992654
14:58:43 DEBUG   opendrift.models.basemodel:2066:               4.553292129185929 <- longitude -> 4.562052179022047
14:58:43 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:43 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 10:00:00 (before)
                2024-06-28 11:00:00 (after)
14:58:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 10:00:00)
14:58:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 10:00:00) in space  (linearNDFast)
14:58:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44671875749252 and -65.4379587089178 degrees.
14:58:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44671875749252 and -65.4379587089178 degrees.
14:58:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.149905 (min) 0.159809 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.334627 (min) 0.345497 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.58635 (min) -2.56172 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.0833 (min) 13.1084 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.32677e-05 (min) 4.34489e-05 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.891 (min) 299.982 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:44 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.374171, mean: 4.382545, max: 4.390001
14:58:44 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:44 DEBUG   opendrift.models.physics_methods:1061:    min: 11.394032, mean: 11.404934, max: 11.414632
14:58:44 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.394032, mean: 11.404934, max: 11.414632
14:58:44 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:44 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:44 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:44 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:44 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.266692 m/s - 0.267174 m/s)
14:58:44 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:44 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:44 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:44 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:44 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:44 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:44 INFO    opendrift.models.basemodel:2042: 2024-06-28 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
14:58:44 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:44 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:44 DEBUG   opendrift.models.basemodel:2061:               60.115849182857175 <- latitude  -> 60.12297710056116
14:58:44 DEBUG   opendrift.models.basemodel:2066:               4.559738776106858 <- longitude -> 4.568972752388525
14:58:44 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:44 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 11:00:00 (before)
                2024-06-28 12:00:00 (after)
14:58:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x22x2) for time before (2024-06-28 11:00:00)
14:58:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 11:00:00) in space  (linearNDFast)
14:58:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44027210356143 and -65.4310381198546 degrees.
14:58:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44027210356143 and -65.4310381198546 degrees.
14:58:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:45 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:45 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.159671 (min) 0.172047 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.361435 (min) 0.376977 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.88986 (min) -3.87334 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.5484 (min) 13.554 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.26623e-05 (min) 5.28536e-05 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.57 (min) 299.683 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.885382, mean: 4.887918, max: 4.890668
14:58:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:45 DEBUG   opendrift.models.physics_methods:1061:    min: 12.041451, mean: 12.044577, max: 12.047965
14:58:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.041451, mean: 12.044577, max: 12.047965
14:58:45 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:45 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:45 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:45 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.281846 m/s - 0.281998 m/s)
14:58:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:45 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:45 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:45 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:45 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:45 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:45 INFO    opendrift.models.basemodel:2042: 2024-06-28 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
14:58:45 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:45 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:45 DEBUG   opendrift.models.basemodel:2061:               60.13673505055967 <- latitude  -> 60.143434016261
14:58:45 DEBUG   opendrift.models.basemodel:2066:               4.565496646627421 <- longitude -> 4.574488662835084
14:58:45 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:45 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 12:00:00 (before)
                2024-06-28 13:00:00 (after)
14:58:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 12:00:00)
14:58:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 12:00:00) in space  (linearNDFast)
14:58:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43451423149511 and -65.4255222095322 degrees.
14:58:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43451423149511 and -65.4255222095322 degrees.
14:58:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:46 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:46 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.184748 (min) 0.202285 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.348428 (min) 0.367863 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.7365 (min) -4.69926 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.0441 (min) 14.0973 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.32834e-05 (min) 5.34946e-05 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.2 (min) 299.375 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.395275, mean: 5.418698, max: 5.440439
14:58:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:46 DEBUG   opendrift.models.physics_methods:1061:    min: 12.654249, mean: 12.681685, max: 12.707104
14:58:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.654249, mean: 12.681685, max: 12.707104
14:58:46 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:46 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:46 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:46 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:46 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.296189 m/s - 0.297426 m/s)
14:58:46 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:46 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:46 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:46 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:46 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:46 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:46 INFO    opendrift.models.basemodel:2042: 2024-06-28 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
14:58:46 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:46 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:46 DEBUG   opendrift.models.basemodel:2061:               60.157644646302515 <- latitude  -> 60.16381347490475
14:58:46 DEBUG   opendrift.models.basemodel:2066:               4.571991319876965 <- longitude -> 4.580528074749757
14:58:46 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:46 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 13:00:00 (before)
                2024-06-28 14:00:00 (after)
14:58:47 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 13:00:00)
14:58:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 13:00:00) in space  (linearNDFast)
14:58:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:47 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42801953997433 and -65.4194827935476 degrees.
14:58:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42801953997433 and -65.4194827935476 degrees.
14:58:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:47 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:47 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:47 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:47 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.201929 (min) 0.208892 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.302948 (min) 0.324325 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.92395 (min) -3.91436 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.9934 (min) 15.0103 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.73879e-05 (min) 3.76214e-05 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.224 (min) 299.46 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:47 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:47 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.907465, mean: 5.913240, max: 5.920070
14:58:47 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:47 DEBUG   opendrift.models.physics_methods:1061:    min: 13.241285, mean: 13.247756, max: 13.255404
14:58:47 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.241285, mean: 13.247756, max: 13.255404
14:58:47 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:47 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:47 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:47 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:47 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.309930 m/s - 0.310260 m/s)
14:58:47 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:47 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:47 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:47 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:47 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:47 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:47 INFO    opendrift.models.basemodel:2042: 2024-06-28 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
14:58:47 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:47 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:47 DEBUG   opendrift.models.basemodel:2061:               60.17772676055456 <- latitude  -> 60.18334390789023
14:58:47 DEBUG   opendrift.models.basemodel:2066:               4.580056246887956 <- longitude -> 4.5889637116002335
14:58:47 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:47 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:47 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:47 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 14:00:00 (before)
                2024-06-28 15:00:00 (after)
14:58:48 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:48 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 14:00:00)
14:58:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 14:00:00) in space  (linearNDFast)
14:58:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:48 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41995461548522 and -65.41104713940643 degrees.
14:58:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41995461548522 and -65.41104713940643 degrees.
14:58:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:48 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:48 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:48 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:48 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:48 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.16993 (min) 0.19289 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.237956 (min) 0.256562 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.76741 (min) -2.75147 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.6592 (min) 15.6698 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.70226e-05 (min) 1.71648e-05 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.68 (min) 299.905 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:48 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:48 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.218686, mean: 6.223050, max: 6.228786
14:58:48 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:48 DEBUG   opendrift.models.physics_methods:1061:    min: 13.585603, mean: 13.590368, max: 13.596630
14:58:48 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.585603, mean: 13.590368, max: 13.596630
14:58:48 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:48 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:48 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:48 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:48 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.317989 m/s - 0.318247 m/s)
14:58:48 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:48 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:48 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:48 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:48 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:48 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:48 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:48 INFO    opendrift.models.basemodel:2042: 2024-06-28 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
14:58:48 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:48 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:48 DEBUG   opendrift.models.basemodel:2061:               60.1960604602213 <- latitude  -> 60.20119204914825
14:58:48 DEBUG   opendrift.models.basemodel:2066:               4.587801862540633 <- longitude -> 4.597888874008514
14:58:48 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:48 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:48 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:48 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 15:00:00 (before)
                2024-06-28 16:00:00 (after)
14:58:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 15:00:00)
14:58:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 15:00:00) in space  (linearNDFast)
14:58:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41220899545019 and -65.4021219681517 degrees.
14:58:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41220899545019 and -65.4021219681517 degrees.
14:58:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:49 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:49 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.143841 (min) 0.160618 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.229711 (min) 0.238472 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.92267 (min) -1.80705 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.874 (min) 15.8871 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.19805e-05 (min) -1.18928e-05 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.153 (min) 300.334 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:49 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.282623, mean: 6.289485, max: 6.296497
14:58:49 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:49 DEBUG   opendrift.models.physics_methods:1061:    min: 13.655262, mean: 13.662718, max: 13.670333
14:58:49 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.655262, mean: 13.662718, max: 13.670333
14:58:49 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:49 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:49 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:49 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:49 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.319619 m/s - 0.319972 m/s)
14:58:49 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:49 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:49 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:49 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:49 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:49 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:49 INFO    opendrift.models.basemodel:2042: 2024-06-28 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
14:58:49 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:49 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:49 DEBUG   opendrift.models.basemodel:2061:               60.21390149278096 <- latitude  -> 60.21896941227976
14:58:49 DEBUG   opendrift.models.basemodel:2066:               4.59505784550461 <- longitude -> 4.605722647646617
14:58:49 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:49 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 16:00:00 (before)
                2024-06-28 17:00:00 (after)
14:58:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 16:00:00)
14:58:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 16:00:00) in space  (linearNDFast)
14:58:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.40495300046696 and -65.39428819663208 degrees.
14:58:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.40495300046696 and -65.39428819663208 degrees.
14:58:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.133838 (min) 0.145554 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.184176 (min) 0.192819 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.245908 (min) -0.213476 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.0804 (min) 14.1029 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.45846e-05 (min) -3.45319e-05 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.455 (min) 300.57 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.878442, mean: 4.886210, max: 4.894072
14:58:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:50 DEBUG   opendrift.models.physics_methods:1061:    min: 12.032895, mean: 12.042472, max: 12.052157
14:58:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.032895, mean: 12.042472, max: 12.052157
14:58:50 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:50 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:50 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:50 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.281646 m/s - 0.282096 m/s)
14:58:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:50 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:50 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:50 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:50 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:50 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:50 INFO    opendrift.models.basemodel:2042: 2024-06-28 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
14:58:50 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:50 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:50 DEBUG   opendrift.models.basemodel:2061:               60.22911888646067 <- latitude  -> 60.23404896685685
14:58:50 DEBUG   opendrift.models.basemodel:2066:               4.603876934315882 <- longitude -> 4.614610092345374
14:58:50 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:50 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 17:00:00 (before)
                2024-06-28 18:00:00 (after)
14:58:51 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:51 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 17:00:00)
14:58:51 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 17:00:00) in space  (linearNDFast)
14:58:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:51 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39613389766603 and -65.38540074631113 degrees.
14:58:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39613389766603 and -65.38540074631113 degrees.
14:58:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:51 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:51 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:51 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:51 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:51 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.160467 (min) 0.172776 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0843181 (min) 0.091328 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.74729 (min) 9.02668 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.34466 (min) 8.53191 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.16582e-05 (min) -5.14828e-05 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.54 (min) 300.568 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:51 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:51 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.661732, mean: 3.695857, max: 3.727269
14:58:51 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:51 DEBUG   opendrift.models.physics_methods:1061:    min: 10.424925, mean: 10.473376, max: 10.517801
14:58:51 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.424925, mean: 10.473376, max: 10.517801
14:58:51 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:51 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:51 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:51 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:51 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244009 m/s - 0.246183 m/s)
14:58:51 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:51 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:51 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:51 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:51 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:51 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:51 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:51 INFO    opendrift.models.basemodel:2042: 2024-06-28 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
14:58:51 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:51 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:51 DEBUG   opendrift.models.basemodel:2061:               60.237273055381806 <- latitude  -> 60.242437869905004
14:58:51 DEBUG   opendrift.models.basemodel:2066:               4.626601988545543 <- longitude -> 4.636709111656719
14:58:51 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:51 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:51 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:51 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:51 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:51 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:51 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:51 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:51 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 18:00:00 (before)
                2024-06-28 19:00:00 (after)
14:58:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-28 18:00:00)
14:58:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 18:00:00) in space  (linearNDFast)
14:58:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37340884605497 and -65.3633017243952 degrees.
14:58:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37340884605497 and -65.3633017243952 degrees.
14:58:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:52 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:52 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.169387 (min) 0.179155 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.029384 (min) 0.0417485 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 10.3014 (min) 10.3254 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.67347 (min) 7.67651 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.38297e-05 (min) -5.38131e-05 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.78 (min) 300.977 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.060169, mean: 4.065602, max: 4.071197
14:58:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:52 DEBUG   opendrift.models.physics_methods:1061:    min: 10.977455, mean: 10.984797, max: 10.992353
14:58:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.977455, mean: 10.984797, max: 10.992353
14:58:52 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:52 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:52 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:52 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.256942 m/s - 0.257290 m/s)
14:58:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:52 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:52 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:52 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:52 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:52 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:52 INFO    opendrift.models.basemodel:2042: 2024-06-28 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
14:58:52 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:52 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:52 DEBUG   opendrift.models.basemodel:2061:               60.243254846545796 <- latitude  -> 60.24855296617925
14:58:52 DEBUG   opendrift.models.basemodel:2066:               4.651562313655639 <- longitude -> 4.6612185957771946
14:58:52 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:52 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 19:00:00 (before)
                2024-06-28 20:00:00 (after)
14:58:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 19:00:00)
14:58:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 19:00:00) in space  (linearNDFast)
14:58:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3484485222328 and -65.33879222898662 degrees.
14:58:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3484485222328 and -65.33879222898662 degrees.
14:58:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:53 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:53 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.124558 (min) 0.135677 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0193132 (min) 0.0386901 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.70792 (min) 8.73111 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.6612 (min) 8.67836 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.07552e-05 (min) -4.06558e-05 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 301.988 (min) 302.66 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:53 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.717014, mean: 3.719977, max: 3.722604
14:58:53 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:53 DEBUG   opendrift.models.physics_methods:1061:    min: 10.503322, mean: 10.507507, max: 10.511217
14:58:53 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.503322, mean: 10.507507, max: 10.511217
14:58:53 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:53 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:53 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:53 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:53 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245844 m/s - 0.246029 m/s)
14:58:53 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:53 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:53 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:53 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:53 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:53 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:53 INFO    opendrift.models.basemodel:2042: 2024-06-28 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
14:58:53 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:53 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:53 DEBUG   opendrift.models.basemodel:2061:               60.24972488813931 <- latitude  -> 60.255008818592586
14:58:53 DEBUG   opendrift.models.basemodel:2066:               4.671703709589204 <- longitude -> 4.680658201390676
14:58:53 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:53 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 20:00:00 (before)
                2024-06-28 21:00:00 (after)
14:58:54 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:54 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-28 20:00:00)
14:58:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 20:00:00) in space  (linearNDFast)
14:58:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:54 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.32830710241379 and -65.31935262217542 degrees.
14:58:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.32830710241379 and -65.31935262217542 degrees.
14:58:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:54 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:54 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:54 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:54 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:54 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0452947 (min) 0.0531492 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0443863 (min) 0.067052 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.93463 (min) 7.94801 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.25617 (min) 9.27544 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.36964e-05 (min) -1.36232e-05 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 304.543 (min) 305.792 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:54 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:54 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.661649, mean: 3.663508, max: 3.665371
14:58:54 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:54 DEBUG   opendrift.models.physics_methods:1061:    min: 10.424804, mean: 10.427452, max: 10.430103
14:58:54 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.424804, mean: 10.427452, max: 10.430103
14:58:54 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:54 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:54 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:54 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:54 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244006 m/s - 0.244130 m/s)
14:58:54 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:54 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:54 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:54 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:54 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:54 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:54 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:54 INFO    opendrift.models.basemodel:2042: 2024-06-28 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
14:58:54 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:54 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:54 DEBUG   opendrift.models.basemodel:2061:               60.25750596828227 <- latitude  -> 60.26283519930243
14:58:54 DEBUG   opendrift.models.basemodel:2066:               4.685472356444022 <- longitude -> 4.693938530254051
14:58:54 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:54 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:54 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:54 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:54 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:54 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:54 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 21:00:00 (before)
                2024-06-28 22:00:00 (after)
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 21:00:00)
14:58:55 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 21:00:00) in space  (linearNDFast)
14:58:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:55 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.31453845919648 and -65.30607229177305 degrees.
14:58:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.31453845919648 and -65.30607229177305 degrees.
14:58:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:55 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:55 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:55 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:55 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0235241 (min) -0.0172581 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.09365 (min) 0.115455 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.94397 (min) 8.09091 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.23005 (min) 9.37517 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.46249e-05 (min) 1.48266e-05 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 308.095 (min) 309.781 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:55 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.695993, mean: 3.711150, max: 3.724849
14:58:55 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:55 DEBUG   opendrift.models.physics_methods:1061:    min: 10.473579, mean: 10.495031, max: 10.514386
14:58:55 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.473579, mean: 10.495031, max: 10.514386
14:58:55 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:55 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:55 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:55 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:55 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.245148 m/s - 0.246103 m/s)
14:58:55 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:55 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:55 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:55 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:55 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:55 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:55 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:55 INFO    opendrift.models.basemodel:2042: 2024-06-28 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
14:58:55 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:55 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:55 DEBUG   opendrift.models.basemodel:2061:               60.266973060372834 <- latitude  -> 60.272123315423805
14:58:55 DEBUG   opendrift.models.basemodel:2066:               4.694638846201087 <- longitude -> 4.702898805296594
14:58:55 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:55 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:55 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 22:00:00 (before)
                2024-06-28 23:00:00 (after)
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 22:00:00)
14:58:55 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 22:00:00) in space  (linearNDFast)
14:58:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:55 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30537196945437 and -65.29711200943953 degrees.
14:58:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30537196945437 and -65.29711200943953 degrees.
14:58:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:55 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:55 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:55 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:55 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.113431 (min) -0.103109 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.153754 (min) 0.171848 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.40873 (min) 7.48655 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.72392 (min) 8.76876 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.65873e-05 (min) 3.68651e-05 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.301 (min) 314.245 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:55 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:55 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.241747, mean: 3.246199, max: 3.251018
14:58:55 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:55 DEBUG   opendrift.models.physics_methods:1061:    min: 9.808874, mean: 9.815607, max: 9.822889
14:58:55 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.808874, mean: 9.815607, max: 9.822889
14:58:55 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:55 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:55 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:55 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:55 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.229589 m/s - 0.229918 m/s)
14:58:55 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:55 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:55 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:55 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:55 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:55 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:55 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:55 INFO    opendrift.models.basemodel:2042: 2024-06-28 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
14:58:55 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:55 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:55 DEBUG   opendrift.models.basemodel:2061:               60.27774451163273 <- latitude  -> 60.28309592843617
14:58:55 DEBUG   opendrift.models.basemodel:2066:               4.697056766161696 <- longitude -> 4.705645673752341
14:58:55 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:55 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:55 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:55 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:55 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-28 23:00:00 (before)
                2024-06-29 00:00:00 (after)
14:58:56 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:56 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-28 23:00:00)
14:58:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-28 23:00:00) in space  (linearNDFast)
14:58:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:56 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30295403752754 and -65.29436513560194 degrees.
14:58:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30295403752754 and -65.29436513560194 degrees.
14:58:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:56 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:56 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:56 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:56 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:56 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.175953 (min) -0.168254 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.261304 (min) 0.276823 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.67727 (min) 8.70072 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.70106 (min) 7.70878 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.89593e-05 (min) 4.91522e-05 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 316.507 (min) 318.571 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:56 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:56 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.313966, mean: 3.317593, max: 3.321679
14:58:56 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:56 DEBUG   opendrift.models.physics_methods:1061:    min: 9.917533, mean: 9.922958, max: 9.929066
14:58:56 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.917533, mean: 9.922958, max: 9.929066
14:58:56 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:56 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:56 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:56 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:56 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.232133 m/s - 0.232403 m/s)
14:58:56 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:56 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:56 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:56 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:56 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:56 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:56 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:56 INFO    opendrift.models.basemodel:2042: 2024-06-29 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
14:58:56 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:56 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:56 DEBUG   opendrift.models.basemodel:2061:               60.29128544250233 <- latitude  -> 60.296800097995366
14:58:56 DEBUG   opendrift.models.basemodel:2066:               4.69696104151502 <- longitude -> 4.705906963676133
14:58:56 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:56 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:56 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:56 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:56 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 00:00:00 (before)
                2024-06-29 01:00:00 (after)
14:58:57 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:57 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity']
14:58:57 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-29 00:00:00)
14:58:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 00:00:00) in space  (linearNDFast)
14:58:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:57 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30304977816674 and -65.29410384598151 degrees.
14:58:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30304977816674 and -65.29410384598151 degrees.
14:58:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:57 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:57 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:57 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:57 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:57 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.175745 (min) -0.170532 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.327737 (min) 0.341612 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 9.79728 (min) 9.83017 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.65212 (min) 7.65952 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.5963e-07 (min) 2.9819e-07 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 321.616 (min) 323.722 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:57 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:57 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.801762, mean: 3.811142, max: 3.820251
14:58:57 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:57 DEBUG   opendrift.models.physics_methods:1061:    min: 10.622386, mean: 10.635480, max: 10.648184
14:58:57 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.622386, mean: 10.635480, max: 10.648184
14:58:57 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:57 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:57 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:57 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:57 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.248631 m/s - 0.249235 m/s)
14:58:57 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:57 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:57 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:57 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:57 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:57 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:57 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:57 INFO    opendrift.models.basemodel:2042: 2024-06-29 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
14:58:57 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:57 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:57 DEBUG   opendrift.models.basemodel:2061:               60.30699629921742 <- latitude  -> 60.31252908242027
14:58:57 DEBUG   opendrift.models.basemodel:2066:               4.698339675020854 <- longitude -> 4.707501829111366
14:58:57 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:57 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:57 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:57 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 01:00:00 (before)
                2024-06-29 02:00:00 (after)
14:58:58 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:58 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:58 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-29 01:00:00)
14:58:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 01:00:00) in space  (linearNDFast)
14:58:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:58 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30167113413094 and -65.29250897262357 degrees.
14:58:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.30167113413094 and -65.29250897262357 degrees.
14:58:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:58 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:58 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:58 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:58 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:58 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.144793 (min) -0.142398 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.376281 (min) 0.389867 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 9.51637 (min) 9.55232 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.07666 (min) 8.08422 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.46217e-05 (min) 3.50033e-05 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 326.887 (min) 328.332 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:58 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:58 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.834201, mean: 3.842008, max: 3.850896
14:58:58 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:58 DEBUG   opendrift.models.physics_methods:1061:    min: 10.667607, mean: 10.678462, max: 10.690808
14:58:58 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.667607, mean: 10.678462, max: 10.690808
14:58:58 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:58 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:58 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:58 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:58 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.249689 m/s - 0.250232 m/s)
14:58:58 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:58 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:58 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:58 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:58 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:58 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:58 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:58 INFO    opendrift.models.basemodel:2042: 2024-06-29 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
14:58:58 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:58 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:58 DEBUG   opendrift.models.basemodel:2061:               60.324543527913775 <- latitude  -> 60.33008799705095
14:58:58 DEBUG   opendrift.models.basemodel:2066:               4.701490214582096 <- longitude -> 4.710470531327561
14:58:58 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:58 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:58 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:58 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:58 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:58 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:58 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 02:00:00 (before)
                2024-06-29 03:00:00 (after)
14:58:59 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:58:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:58:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:58:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:58:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:58:59 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:58:59 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 02:00:00)
14:58:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 02:00:00) in space  (linearNDFast)
14:58:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:58:59 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:58:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.29852058066093 and -65.28954026521964 degrees.
14:58:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.29852058066093 and -65.28954026521964 degrees.
14:58:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:59 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:58:59 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:58:59 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:58:59 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:58:59 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0837202 (min) -0.0799887 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.370503 (min) 0.381982 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.83163 (min) 8.84332 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.44764 (min) 8.46443 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.86396e-07 (min) 2.00502e-06 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 328.573 (min) 329.45 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:58:59 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:58:59 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.677563, mean: 3.679713, max: 3.682682
14:58:59 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:58:59 DEBUG   opendrift.models.physics_methods:1061:    min: 10.447435, mean: 10.450487, max: 10.454702
14:58:59 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.447435, mean: 10.450487, max: 10.454702
14:58:59 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:58:59 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:59 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:58:59 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:58:59 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244536 m/s - 0.244706 m/s)
14:58:59 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:58:59 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:58:59 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:58:59 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:58:59 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:58:59 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:58:59 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:58:59 INFO    opendrift.models.basemodel:2042: 2024-06-29 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
14:58:59 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:58:59 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:58:59 DEBUG   opendrift.models.basemodel:2061:               60.342122335566856 <- latitude  -> 60.347719338318086
14:58:59 DEBUG   opendrift.models.basemodel:2066:               4.707573027169652 <- longitude -> 4.716774536724771
14:58:59 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:58:59 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:58:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:58:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:58:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:58:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:58:59 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:58:59 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:58:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:58:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:58:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:58:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:58:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:58:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:58:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:58:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:58:59 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 03:00:00 (before)
                2024-06-29 04:00:00 (after)
14:59:00 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:00 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 03:00:00)
14:59:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 03:00:00) in space  (linearNDFast)
14:59:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:00 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2924377662557 and -65.28323625550861 degrees.
14:59:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2924377662557 and -65.28323625550861 degrees.
14:59:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:00 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:00 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:00 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:00 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:00 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0251342 (min) -0.0170365 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.340988 (min) 0.346139 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.39018 (min) 8.42223 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.11423 (min) 8.12925 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.1855e-06 (min) 2.21315e-06 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 322.918 (min) 326.11 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:00 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:00 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.356164, mean: 3.360741, max: 3.365306
14:59:00 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:00 DEBUG   opendrift.models.physics_methods:1061:    min: 9.980474, mean: 9.987278, max: 9.994059
14:59:00 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.980474, mean: 9.987278, max: 9.994059
14:59:00 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:00 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:00 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:00 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:00 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.233606 m/s - 0.233924 m/s)
14:59:00 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:00 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:00 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:00 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:00 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:00 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:00 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:00 INFO    opendrift.models.basemodel:2042: 2024-06-29 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
14:59:00 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:00 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:00 DEBUG   opendrift.models.basemodel:2061:               60.358385077133875 <- latitude  -> 60.36415233012997
14:59:00 DEBUG   opendrift.models.basemodel:2066:               4.716987132155139 <- longitude -> 4.726512620974446
14:59:00 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:00 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:00 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:00 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:00 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:00 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:00 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 04:00:00 (before)
                2024-06-29 05:00:00 (after)
14:59:01 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:01 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-29 04:00:00)
14:59:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 04:00:00) in space  (linearNDFast)
14:59:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:01 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.28302364777446 and -65.27349816180393 degrees.
14:59:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.28302364777446 and -65.27349816180393 degrees.
14:59:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:01 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:01 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:01 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:01 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:01 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00982426 (min) 0.0290712 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.302351 (min) 0.316305 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.4169 (min) 8.43793 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.1179 (min) 8.13812 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.2942e-05 (min) -3.2853e-05 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.7 (min) 318.94 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:01 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:01 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.364394, mean: 3.372646, max: 3.380673
14:59:01 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:01 DEBUG   opendrift.models.physics_methods:1061:    min: 9.992703, mean: 10.004949, max: 10.016850
14:59:01 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.992703, mean: 10.004949, max: 10.016850
14:59:01 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:01 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:01 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:01 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:01 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.233892 m/s - 0.234457 m/s)
14:59:01 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:01 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:01 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:01 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:01 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:01 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:01 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:01 INFO    opendrift.models.basemodel:2042: 2024-06-29 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
14:59:01 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:01 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:01 DEBUG   opendrift.models.basemodel:2061:               60.37356016732943 <- latitude  -> 60.37938936072706
14:59:01 DEBUG   opendrift.models.basemodel:2066:               4.729536259690233 <- longitude -> 4.738604289210522
14:59:01 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:01 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:01 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:01 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 05:00:00 (before)
                2024-06-29 06:00:00 (after)
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:02 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 05:00:00)
14:59:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 05:00:00) in space  (linearNDFast)
14:59:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.27047452154771 and -65.26140648760838 degrees.
14:59:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.27047452154771 and -65.26140648760838 degrees.
14:59:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:02 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:02 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0328208 (min) 0.0486679 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.266644 (min) 0.283883 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.15197 (min) 8.1811 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.58201 (min) 7.61926 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.71357e-05 (min) -5.69235e-05 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.328 (min) 308.571 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.052132, mean: 3.061852, max: 3.069643
14:59:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:02 DEBUG   opendrift.models.physics_methods:1061:    min: 9.517683, mean: 9.532824, max: 9.544948
14:59:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.517683, mean: 9.532824, max: 9.544948
14:59:02 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:02 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:02 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.222774 m/s - 0.223412 m/s)
14:59:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:02 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:02 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:02 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:02 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:02 INFO    opendrift.models.basemodel:2042: 2024-06-29 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
14:59:02 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:02 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:02 DEBUG   opendrift.models.basemodel:2061:               60.38733456352222 <- latitude  -> 60.393245642541345
14:59:02 DEBUG   opendrift.models.basemodel:2066:               4.7429976438388985 <- longitude -> 4.751529901577096
14:59:02 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:02 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 06:00:00 (before)
                2024-06-29 07:00:00 (after)
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:02 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 06:00:00)
14:59:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 06:00:00) in space  (linearNDFast)
14:59:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.25701312816983 and -65.24848086818817 degrees.
14:59:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.25701312816983 and -65.24848086818817 degrees.
14:59:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:02 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:02 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00842197 (min) 0.0211316 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.201061 (min) 0.223163 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.46157 (min) 7.48399 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.17484 (min) 7.21891 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.25519e-05 (min) -6.20904e-05 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 283.222 (min) 294.121 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.638745, mean: 2.648314, max: 2.657149
14:59:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:02 DEBUG   opendrift.models.physics_methods:1061:    min: 8.849695, mean: 8.865724, max: 8.880503
14:59:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.849695, mean: 8.865724, max: 8.880503
14:59:02 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:02 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:02 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.207139 m/s - 0.207860 m/s)
14:59:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:02 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:02 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:02 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:02 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:02 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:02 INFO    opendrift.models.basemodel:2042: 2024-06-29 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
14:59:02 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:02 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:02 DEBUG   opendrift.models.basemodel:2061:               60.39853817666008 <- latitude  -> 60.4051207081513
14:59:02 DEBUG   opendrift.models.basemodel:2066:               4.754140716875725 <- longitude -> 4.76183001505615
14:59:02 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:02 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 07:00:00 (before)
                2024-06-29 08:00:00 (after)
14:59:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:03 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 07:00:00)
14:59:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 07:00:00) in space  (linearNDFast)
14:59:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.24587004675182 and -65.23818074967093 degrees.
14:59:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.24587004675182 and -65.23818074967093 degrees.
14:59:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:03 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:03 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0222718 (min) -0.0163823 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.240789 (min) 0.282327 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.35057 (min) 6.37974 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.30097 (min) 7.35352 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.93829e-05 (min) -6.8977e-05 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 268.861 (min) 279.774 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:03 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.305519, mean: 2.317223, max: 2.327793
14:59:03 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:03 DEBUG   opendrift.models.physics_methods:1061:    min: 8.272064, mean: 8.293032, max: 8.311927
14:59:03 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.272064, mean: 8.293032, max: 8.311927
14:59:03 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:03 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:03 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:03 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:03 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.193618 m/s - 0.194552 m/s)
14:59:03 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:03 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:03 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:03 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:03 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:03 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:03 INFO    opendrift.models.basemodel:2042: 2024-06-29 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
14:59:03 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:03 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:03 DEBUG   opendrift.models.basemodel:2061:               60.4111572871291 <- latitude  -> 60.418930058419974
14:59:03 DEBUG   opendrift.models.basemodel:2066:               4.7612784839438955 <- longitude -> 4.768804499483293
14:59:03 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:03 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 08:00:00 (before)
                2024-06-29 09:00:00 (after)
14:59:04 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:04 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:04 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 08:00:00)
14:59:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 08:00:00) in space  (linearNDFast)
14:59:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:04 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23873227726506 and -65.23120625047116 degrees.
14:59:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23873227726506 and -65.23120625047116 degrees.
14:59:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:04 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:04 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:04 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:04 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:04 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0427911 (min) -0.0308069 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.332648 (min) 0.386757 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.52726 (min) 5.57553 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.22714 (min) 7.24313 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.79868e-05 (min) -4.77566e-05 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 256.635 (min) 268.768 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:04 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:04 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.036590, mean: 2.045463, max: 2.054924
14:59:04 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:04 DEBUG   opendrift.models.physics_methods:1061:    min: 7.774660, mean: 7.791575, max: 7.809575
14:59:04 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.774660, mean: 7.791575, max: 7.809575
14:59:04 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:04 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:04 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:04 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:04 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.181976 m/s - 0.182793 m/s)
14:59:04 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:04 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:04 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:04 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:04 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:04 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:04 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:04 INFO    opendrift.models.basemodel:2042: 2024-06-29 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
14:59:04 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:04 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:04 DEBUG   opendrift.models.basemodel:2061:               60.42658452157686 <- latitude  -> 60.43596945846328
14:59:04 DEBUG   opendrift.models.basemodel:2066:               4.766032198440247 <- longitude -> 4.773786390737874
14:59:04 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:04 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:04 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:04 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 09:00:00 (before)
                2024-06-29 10:00:00 (after)
14:59:05 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:05 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:05 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 09:00:00)
14:59:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 09:00:00) in space  (linearNDFast)
14:59:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:05 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23397855502424 and -65.2262243656445 degrees.
14:59:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23397855502424 and -65.2262243656445 degrees.
14:59:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:05 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:05 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:05 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:05 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:05 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0485372 (min) -0.0188277 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.442484 (min) 0.468888 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.80141 (min) 4.83526 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.20448 (min) 7.24892 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.69001e-06 (min) -4.35461e-06 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 241.668 (min) 257.023 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:05 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:05 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.843970, mean: 1.855807, max: 1.867792
14:59:05 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:05 DEBUG   opendrift.models.physics_methods:1061:    min: 7.397866, mean: 7.421569, max: 7.445501
14:59:05 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.397866, mean: 7.421569, max: 7.445501
14:59:05 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:05 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:05 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:05 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:05 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.173157 m/s - 0.174272 m/s)
14:59:05 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:05 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:05 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:05 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:05 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:05 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:05 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:05 INFO    opendrift.models.basemodel:2042: 2024-06-29 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
14:59:05 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:05 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:05 DEBUG   opendrift.models.basemodel:2061:               60.44559211458116 <- latitude  -> 60.45570085089561
14:59:05 DEBUG   opendrift.models.basemodel:2066:               4.7692472324870945 <- longitude -> 4.778877397088915
14:59:05 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:05 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:05 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:05 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 10:00:00 (before)
                2024-06-29 11:00:00 (after)
14:59:06 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:06 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:06 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-06-29 10:00:00)
14:59:06 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 10:00:00) in space  (linearNDFast)
14:59:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:06 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23076352215607 and -65.22113335072112 degrees.
14:59:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23076352215607 and -65.22113335072112 degrees.
14:59:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:06 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:06 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:06 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:06 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:06 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00702541 (min) 0.0664837 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.518541 (min) 0.544365 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.08614 (min) 3.10466 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.94534 (min) 7.97314 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.19623e-05 (min) 2.30432e-05 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 219.586 (min) 241.303 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:06 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:06 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.788999, mean: 1.794680, max: 1.799400
14:59:06 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:06 DEBUG   opendrift.models.physics_methods:1061:    min: 7.286763, mean: 7.298323, max: 7.307914
14:59:06 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.286763, mean: 7.298323, max: 7.307914
14:59:06 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:06 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:06 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:06 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:06 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.170556 m/s - 0.171051 m/s)
14:59:06 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:06 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:06 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:06 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:06 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:06 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:06 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:06 INFO    opendrift.models.basemodel:2042: 2024-06-29 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
14:59:06 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:06 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:06 DEBUG   opendrift.models.basemodel:2061:               60.468131085101604 <- latitude  -> 60.477606355634904
14:59:06 DEBUG   opendrift.models.basemodel:2066:               4.772952888513977 <- longitude -> 4.787075223916337
14:59:06 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:06 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:06 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:06 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:06 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:06 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 11:00:00 (before)
                2024-06-29 12:00:00 (after)
14:59:07 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:07 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:07 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-06-29 11:00:00)
14:59:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 11:00:00) in space  (linearNDFast)
14:59:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:07 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22705785009221 and -65.2129355230197 degrees.
14:59:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22705785009221 and -65.2129355230197 degrees.
14:59:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:07 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:07 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:07 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:07 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:07 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0573896 (min) 0.0837017 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.393798 (min) 0.509275 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.86632 (min) 2.94066 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.37492 (min) 8.40343 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.17849e-05 (min) 4.25018e-05 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 181.671 (min) 214.504 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:07 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:07 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.927533, mean: 1.939927, max: 1.947793
14:59:07 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:07 DEBUG   opendrift.models.physics_methods:1061:    min: 7.563633, mean: 7.587909, max: 7.603281
14:59:07 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.563633, mean: 7.587909, max: 7.603281
14:59:07 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:07 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:07 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:07 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:07 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.177037 m/s - 0.177965 m/s)
14:59:07 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:07 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:07 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:07 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:07 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:07 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:07 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:07 INFO    opendrift.models.basemodel:2042: 2024-06-29 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
14:59:07 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:07 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:07 DEBUG   opendrift.models.basemodel:2061:               60.4899517593542 <- latitude  -> 60.49579555951053
14:59:07 DEBUG   opendrift.models.basemodel:2066:               4.78056201729642 <- longitude -> 4.796133704143731
14:59:07 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:07 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:07 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:07 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:07 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:07 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 12:00:00 (before)
                2024-06-29 13:00:00 (after)
14:59:08 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:08 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:08 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 12:00:00)
14:59:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 12:00:00) in space  (linearNDFast)
14:59:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:08 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.21944871791138 and -65.20387703168694 degrees.
14:59:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.21944871791138 and -65.20387703168694 degrees.
14:59:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:08 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:08 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:08 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:08 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:08 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0748514 (min) -0.0243725 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.267184 (min) 0.359093 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.84215 (min) 2.89264 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.07137 (min) 8.10835 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.64232e-05 (min) 5.66726e-05 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 143.406 (min) 176.313 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:08 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:08 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.802451, mean: 1.807902, max: 1.823171
14:59:08 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:08 DEBUG   opendrift.models.physics_methods:1061:    min: 7.314107, mean: 7.325157, max: 7.356027
14:59:08 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.314107, mean: 7.325157, max: 7.356027
14:59:08 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:08 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:08 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:08 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:08 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.171196 m/s - 0.172177 m/s)
14:59:08 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:08 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:08 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:08 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:08 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:08 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:08 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:08 INFO    opendrift.models.basemodel:2042: 2024-06-29 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
14:59:08 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:08 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:08 DEBUG   opendrift.models.basemodel:2061:               60.50679358938132 <- latitude  -> 60.50964736446494
14:59:08 DEBUG   opendrift.models.basemodel:2066:               4.7826035404115474 <- longitude -> 4.795333707514193
14:59:08 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:08 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:08 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:08 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 13:00:00 (before)
                2024-06-29 14:00:00 (after)
14:59:09 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:09 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:09 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 13:00:00)
14:59:09 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 13:00:00) in space  (linearNDFast)
14:59:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:09 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.21740719381762 and -65.20467701042989 degrees.
14:59:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.21740719381762 and -65.20467701042989 degrees.
14:59:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:09 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:09 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:09 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:09 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:09 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.1721 (min) -0.141051 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.299895 (min) 0.325409 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.85526 (min) 2.89863 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.91049 (min) 7.91982 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.15287e-05 (min) 5.17495e-05 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 130.942 (min) 155.367 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:09 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:09 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.742289, mean: 1.744754, max: 1.749196
14:59:09 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:09 DEBUG   opendrift.models.physics_methods:1061:    min: 7.191007, mean: 7.196091, max: 7.205246
14:59:09 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.191007, mean: 7.196091, max: 7.205246
14:59:09 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:09 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:09 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:09 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:09 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.168315 m/s - 0.168648 m/s)
14:59:09 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:09 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:09 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:09 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:09 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:09 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:09 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:09 INFO    opendrift.models.basemodel:2042: 2024-06-29 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
14:59:09 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:09 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:09 DEBUG   opendrift.models.basemodel:2061:               60.522412638954265 <- latitude  -> 60.52452316173482
14:59:09 DEBUG   opendrift.models.basemodel:2066:               4.777020508333696 <- longitude -> 4.788355430650657
14:59:09 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:09 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:09 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:09 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:09 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:09 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:09 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 14:00:00 (before)
                2024-06-29 15:00:00 (after)
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:10 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:10 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 14:00:00)
14:59:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 14:00:00) in space  (linearNDFast)
14:59:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:10 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22299021118448 and -65.21165528835678 degrees.
14:59:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22299021118448 and -65.21165528835678 degrees.
14:59:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:10 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:10 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:10 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:10 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.202855 (min) -0.186514 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.379455 (min) 0.400426 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.41003 (min) 3.4511 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.69156 (min) 7.72591 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.61099e-05 (min) 3.62624e-05 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 129.312 (min) 149.96 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:10 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.741395, mean: 1.754175, max: 1.760705
14:59:10 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:10 DEBUG   opendrift.models.physics_methods:1061:    min: 7.189162, mean: 7.215491, max: 7.228911
14:59:10 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.189162, mean: 7.215491, max: 7.228911
14:59:10 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:10 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:10 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:10 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:10 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.168272 m/s - 0.169202 m/s)
14:59:10 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:10 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:10 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:10 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:10 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:10 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:10 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:10 INFO    opendrift.models.basemodel:2042: 2024-06-29 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
14:59:10 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:10 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:10 DEBUG   opendrift.models.basemodel:2061:               60.540109919271174 <- latitude  -> 60.54202313204717
14:59:10 DEBUG   opendrift.models.basemodel:2066:               4.769235435042616 <- longitude -> 4.779815274686398
14:59:10 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:10 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:10 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 15:00:00 (before)
                2024-06-29 16:00:00 (after)
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:10 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:10 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 15:00:00)
14:59:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 15:00:00) in space  (linearNDFast)
14:59:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:59:10 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 1 elements, expanding data 1
14:59:10 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23077528806206 and -65.22019543540772 degrees.
14:59:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23077528806206 and -65.22019543540772 degrees.
14:59:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:10 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:10 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:10 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:10 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.224589 (min) -0.179351 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.512489 (min) 0.536122 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.46573 (min) 3.49746 (max)
14:59:10 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.56638 (min) 7.62445 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.68886e-05 (min) 1.75038e-05 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 126.269 (min) 141.878 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:11 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.703831, mean: 1.724796, max: 1.730746
14:59:11 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:11 DEBUG   opendrift.models.physics_methods:1061:    min: 7.111199, mean: 7.154810, max: 7.167146
14:59:11 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.111199, mean: 7.154810, max: 7.167146
14:59:11 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:11 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:11 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:11 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:11 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.166447 m/s - 0.167756 m/s)
14:59:11 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:11 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:11 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:11 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:11 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:11 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:11 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:11 INFO    opendrift.models.basemodel:2042: 2024-06-29 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
14:59:11 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:11 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:11 DEBUG   opendrift.models.basemodel:2061:               60.56164384333057 <- latitude  -> 60.564261239447205
14:59:11 DEBUG   opendrift.models.basemodel:2066:               4.7620568587388545 <- longitude -> 4.7696260883919095
14:59:11 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:11 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:11 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:11 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:11 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 16:00:00 (before)
                2024-06-29 17:00:00 (after)
14:59:11 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:11 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:11 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x22x2) for time before (2024-06-29 16:00:00)
14:59:11 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 16:00:00) in space  (linearNDFast)
14:59:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:11 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23795385973636 and -65.23038461695148 degrees.
14:59:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.23795385973636 and -65.23038461695148 degrees.
14:59:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:11 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:11 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:11 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:11 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.10582 (min) -0.0797435 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.459352 (min) 0.526992 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.48238 (min) 3.54211 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.77071 (min) 7.89734 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.00339e-05 (min) -9.73401e-06 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 108.233 (min) 119.817 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:59:11 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:11 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.783767, mean: 1.818636, max: 1.842896
14:59:11 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:11 DEBUG   opendrift.models.physics_methods:1061:    min: 7.276100, mean: 7.346855, max: 7.395712
14:59:11 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.276100, mean: 7.346855, max: 7.395712
14:59:11 DEBUG   opendrift.models.basemodel:663: No elements hit coastline.
14:59:11 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:11 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:11 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:11 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.170307 m/s - 0.173106 m/s)
14:59:11 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:11 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:11 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:11 DEBUG   opendrift.models.basemodel:2128: 1000 active elements (0 deactivated)
14:59:11 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:11 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:11 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:11 INFO    opendrift.models.basemodel:2042: 2024-06-29 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
14:59:11 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:11 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:11 DEBUG   opendrift.models.basemodel:2061:               60.58287897121434 <- latitude  -> 60.58507069177585
14:59:11 DEBUG   opendrift.models.basemodel:2066:               4.759875427596913 <- longitude -> 4.7688504966531085
14:59:11 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:11 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:59:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:11 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:11 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:59:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:59:11 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 17:00:00 (before)
                2024-06-29 18:00:00 (after)
14:59:12 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:12 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:12 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-29 17:00:00)
14:59:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 17:00:00) in space  (linearNDFast)
14:59:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 1
14:59:12 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 9 elements, expanding data 1
14:59:12 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2401352842751 and -65.2311602048778 degrees.
14:59:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2401352842751 and -65.2311602048778 degrees.
14:59:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:12 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:12 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:12 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:12 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:12 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00820965 (min) 0.0377826 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.289456 (min) 0.382146 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.42845 (min) 3.51822 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.69017 (min) 7.92439 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.30032e-05 (min) -3.26537e-05 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 81.9011 (min) 93.4202 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 1 (max)
14:59:12 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:12 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.743968, mean: 1.810810, max: 1.849213
14:59:12 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:12 DEBUG   opendrift.models.physics_methods:1061:    min: 7.194472, mean: 7.330986, max: 7.408376
14:59:12 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.194472, mean: 7.330986, max: 7.408376
14:59:12 DEBUG   opendrift.models.basemodel:666: 665 elements hit land, moving them to the coastline.
14:59:12 DEBUG   opendrift.models.basemodel:1687: Added status stranded
14:59:12 DEBUG   opendrift.models.basemodel:1698: 665 elements scheduled for deactivation (stranded)
14:59:12 DEBUG   opendrift.models.basemodel:1700:       (z: 0.000000 to 0.000000)
14:59:12 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:12 DEBUG   opendrift.models.basemodel:1718: Removed 665 elements.
14:59:12 DEBUG   opendrift.models.basemodel:1721: Removed 665 values from environment.
14:59:12 DEBUG   opendrift.models.basemodel:1726: remove items from profile for z
14:59:12 DEBUG   opendrift.models.basemodel:1726: remove items from profile for ocean_vertical_diffusivity
14:59:12 DEBUG   opendrift.models.basemodel:1730: Removed 665 values from environment_profiles.
14:59:12 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:12 DEBUG   opendrift.models.physics_methods:915: Advecting 335 of 335 elements above 0.100m with wind-sheared ocean current (0.168396 m/s - 0.173403 m/s)
14:59:12 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:12 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:12 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:12 DEBUG   opendrift.models.basemodel:2128: 335 active elements (665 deactivated)
14:59:12 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:12 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:12 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:12 INFO    opendrift.models.basemodel:2042: 2024-06-29 18:00:00 - step 43 of 71 - 335 active elements (665 deactivated)
14:59:12 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:12 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:12 DEBUG   opendrift.models.basemodel:2061:               60.597374691531115 <- latitude  -> 60.6019846501639
14:59:12 DEBUG   opendrift.models.basemodel:2066:               4.766613687221742 <- longitude -> 4.7738951015842295
14:59:12 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:12 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 335 elements
14:59:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 335 elements
14:59:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:12 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:12 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 335 elements
14:59:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 335 elements
14:59:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 18:00:00 (before)
                2024-06-29 19:00:00 (after)
14:59:13 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:13 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:13 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-29 18:00:00)
14:59:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 18:00:00) in space  (linearNDFast)
14:59:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:59:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:59:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:59:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:59:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:59:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:59:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:59:13 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 335 elements, expanding data 1
14:59:13 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2333970098037 and -65.22611559516774 degrees.
14:59:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.2333970098037 and -65.22611559516774 degrees.
14:59:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:13 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:13 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:13 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:13 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:13 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0525918 (min) 0.127882 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.347823 (min) 0.415864 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.15631 (min) 3.30142 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.82742 (min) 7.17172 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.67985e-05 (min) -4.58403e-05 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 25.1769 (min) 65.6149 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 1 (max)
14:59:13 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:13 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.391928, mean: 1.453292, max: 1.533066
14:59:13 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:13 DEBUG   opendrift.models.physics_methods:1061:    min: 6.427439, mean: 6.567157, max: 6.745435
14:59:13 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.427439, mean: 6.567157, max: 6.745435
14:59:13 DEBUG   opendrift.models.basemodel:666: 6 elements hit land, moving them to the coastline.
14:59:13 DEBUG   opendrift.models.basemodel:1698: 6 elements scheduled for deactivation (stranded)
14:59:13 DEBUG   opendrift.models.basemodel:1700:       (z: 0.000000 to 0.000000)
14:59:13 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:13 DEBUG   opendrift.models.basemodel:1718: Removed 6 elements.
14:59:13 DEBUG   opendrift.models.basemodel:1721: Removed 6 values from environment.
14:59:13 DEBUG   opendrift.models.basemodel:1726: remove items from profile for z
14:59:13 DEBUG   opendrift.models.basemodel:1726: remove items from profile for ocean_vertical_diffusivity
14:59:13 DEBUG   opendrift.models.basemodel:1730: Removed 6 values from environment_profiles.
14:59:13 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:13 DEBUG   opendrift.models.physics_methods:915: Advecting 329 of 329 elements above 0.100m with wind-sheared ocean current (0.150443 m/s - 0.157886 m/s)
14:59:13 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:13 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:13 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:13 DEBUG   opendrift.models.basemodel:2128: 329 active elements (671 deactivated)
14:59:13 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:13 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:13 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:13 INFO    opendrift.models.basemodel:2042: 2024-06-29 19:00:00 - step 44 of 71 - 329 active elements (671 deactivated)
14:59:13 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:13 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:13 DEBUG   opendrift.models.basemodel:2061:               60.61543480088906 <- latitude  -> 60.6182172195519
14:59:13 DEBUG   opendrift.models.basemodel:2066:               4.779675896168689 <- longitude -> 4.78298420603022
14:59:13 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:13 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 329 elements
14:59:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 329 elements
14:59:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:13 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:13 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 329 elements
14:59:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 329 elements
14:59:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 19:00:00 (before)
                2024-06-29 20:00:00 (after)
14:59:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:14 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-29 19:00:00)
14:59:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 19:00:00) in space  (linearNDFast)
14:59:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:59:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:59:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:59:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:59:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:59:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:59:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:59:14 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 325 elements, expanding data 1
14:59:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22033479934345 and -65.21702648691026 degrees.
14:59:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.22033479934345 and -65.21702648691026 degrees.
14:59:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:14 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:14 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.198446 (min) 0.203729 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.151624 (min) 0.190908 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.91015 (min) 2.9454 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.43281 (min) 5.48131 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.62705e-05 (min) -5.6091e-05 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 42.338 (min) 48.5441 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 1 (max)
14:59:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:14 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.935504, mean: 0.943091, max: 0.952514
14:59:14 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:14 DEBUG   opendrift.models.physics_methods:1061:    min: 5.269294, mean: 5.290615, max: 5.316983
14:59:14 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.269294, mean: 5.290615, max: 5.316983
14:59:14 DEBUG   opendrift.models.basemodel:666: 10 elements hit land, moving them to the coastline.
14:59:14 DEBUG   opendrift.models.basemodel:1698: 10 elements scheduled for deactivation (stranded)
14:59:14 DEBUG   opendrift.models.basemodel:1700:       (z: 0.000000 to 0.000000)
14:59:14 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:14 DEBUG   opendrift.models.basemodel:1718: Removed 10 elements.
14:59:14 DEBUG   opendrift.models.basemodel:1721: Removed 10 values from environment.
14:59:14 DEBUG   opendrift.models.basemodel:1726: remove items from profile for z
14:59:14 DEBUG   opendrift.models.basemodel:1726: remove items from profile for ocean_vertical_diffusivity
14:59:14 DEBUG   opendrift.models.basemodel:1730: Removed 10 values from environment_profiles.
14:59:14 DEBUG   opendrift.models.basemodel:2113: Calling OceanDrift.update()
14:59:14 DEBUG   opendrift.models.physics_methods:915: Advecting 319 of 319 elements above 0.100m with wind-sheared ocean current (0.123335 m/s - 0.124451 m/s)
14:59:14 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
14:59:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:59:14 DEBUG   opendrift.models.basemodel:1665: Horizontal diffusivity is 0, no random walk.
14:59:14 DEBUG   opendrift.models.basemodel:2128: 319 active elements (681 deactivated)
14:59:14 DEBUG   opendrift.models.basemodel:895: to be seeded: 0, already seeded 1000
14:59:14 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:14 DEBUG   opendrift.models.basemodel:2041: ======================================================================
14:59:14 INFO    opendrift.models.basemodel:2042: 2024-06-29 20:00:00 - step 45 of 71 - 319 active elements (681 deactivated)
14:59:14 DEBUG   opendrift.models.basemodel:2048: 0 elements scheduled.
14:59:14 DEBUG   opendrift.models.basemodel:2050: ======================================================================
14:59:14 DEBUG   opendrift.models.basemodel:2061:               60.625522288611805 <- latitude  -> 60.626626010385124
14:59:14 DEBUG   opendrift.models.basemodel:2066:               4.796658433191437 <- longitude -> 4.799411885413778
14:59:14 DEBUG   opendrift.models.basemodel:2069:               z = 0.0
14:59:14 DEBUG   opendrift.models.basemodel:2072: ---------------------------------
14:59:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:59:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:59:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 319 elements
14:59:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 319 elements
14:59:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:59:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:59:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:59:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:59:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
14:59:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:59:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:59:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:59:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 319 elements
14:59:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 319 elements
14:59:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-29 20:00:00 (before)
                2024-06-29 21:00:00 (after)
14:59:15 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:59:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:59:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:59:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:59:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:59:15 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['y_sea_water_velocity', 'x_sea_water_velocity', 'upward_sea_water_velocity']
14:59:15 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x22x2) for time before (2024-06-29 20:00:00)
14:59:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-29 20:00:00) in space  (linearNDFast)
14:59:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 2
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 2
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:59:15 DEBUG   opendrift:135: Linear2DInterpolator informational: NaN values for 319 elements, expanding data 1
14:59:15 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:59:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.20335225520904 and -65.20059880697494 degrees.
14:59:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.20335225520904 and -65.20059880697494 degrees.
14:59:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:59:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:59:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:59:15 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:59:15 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:59:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.140728 (min) 0.145482 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.164653 (min) 0.175692 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.31478 (min) 1.33316 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.24303 (min) 5.28392 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.43118e-05 (min) -4.42402e-05 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 12.9701 (min) 19.3315 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 1 (min) 1 (max)
14:59:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:59:15 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.718762, mean: 0.727123, max: 0.730548
14:59:15 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
14:59:15 DEBUG   opendrift.models.physics_methods:1061:    min: 4.618727, mean: 4.645508, max: 4.656439
14:59:15 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.618727, mean: 4.645508, max: 4.656439
14:59:15 DEBUG   opendrift.models.basemodel:666: 319 elements hit land, moving them to the coastline.
14:59:15 DEBUG   opendrift.models.basemodel:1698: 319 elements scheduled for deactivation (stranded)
14:59:15 DEBUG   opendrift.models.basemodel:1700:       (z: 0.000000 to 0.000000)
14:59:15 DEBUG   opendrift.models.basemodel:754: No elements hit seafloor.
14:59:15 DEBUG   opendrift.models.basemodel:1718: Removed 319 elements.
14:59:15 DEBUG   opendrift.models.basemodel:1721: Removed 319 values from environment.
14:59:15 DEBUG   opendrift.models.basemodel:1726: remove items from profile for z
14:59:15 DEBUG   opendrift.models.basemodel:1726: remove items from profile for ocean_vertical_diffusivity
14:59:15 DEBUG   opendrift.models.basemodel:1730: Removed 319 values from environment_profiles.
14:59:15 WARNING opendrift.models.basemodel:2138: The simulation stopped before requested end time was reached.
14:59:15 INFO    opendrift.models.basemodel:2140: ========================
14:59:15 INFO    opendrift.models.basemodel:2141: End of simulation:
14:59:15 INFO    opendrift.models.basemodel:2142: No more active or scheduled elements, quitting.
14:59:15 INFO    opendrift.models.basemodel:2143: Traceback (most recent call last):
  File "/root/project/opendrift/models/basemodel/__init__.py", line 2105, in run
    raise ValueError(
ValueError: No more active or scheduled elements, quitting.

14:59:15 INFO    opendrift.models.basemodel:2144: 'The simulation stopped before requested end time was reached.'

14:59:15 INFO    opendrift.models.basemodel:2147: ========================
14:59:15 DEBUG   opendrift.models.basemodel:2157: Cleaning up
14:59:15 DEBUG   opendrift.models.basemodel:1714: No elements to deactivate
14:59:15 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Run to Mode.Result
14:59:15 DEBUG   opendrift.models.basemodel:2369: Setting up map: corners=None, fast=False, lscale=None
14:59:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
/opt/conda/envs/opendrift/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1683: UserWarning: No data for colormapping provided via 'c'. Parameters 'cmap' will be ignored
  result = super().scatter(*args, **kwargs)
14:59:37 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:39 DEBUG   opendrift.models.basemodel:3048: Saving animation..
14:59:39 INFO    opendrift.models.basemodel:4612: Saving animation to /root/project/docs/source/gallery/animations/example_manual_aggregate_0.gif...
14:59:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:50 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:53 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:56 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
14:59:59 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:02 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:06 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:08 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:09 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:11 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:17 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:18 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:22 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:23 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:29 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:31 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:33 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:35 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:37 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:40 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:46 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:49 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:53 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:55 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:56 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:00:59 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:02 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:06 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:08 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:09 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:11 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:18 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:22 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:23 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:29 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:31 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:35 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:37 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:40 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:44 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:50 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.094540691375732, 5.199411773681641, 59.797310638427724, 60.826625061035166)..
15:01:55 DEBUG   opendrift.models.basemodel:4650: MPLBACKEND = agg
15:01:55 DEBUG   opendrift.models.basemodel:4651: DISPLAY = None
15:01:55 DEBUG   opendrift.models.basemodel:4652: Time to save animation: 0:02:15.791568
15:01:55 INFO    opendrift.models.basemodel:3041: Time to make animation: 0:02:39.832597
../_images/example_manual_aggregate_0.gif

Total running time of the script: (6 minutes 39.092 seconds)

Gallery generated by Sphinx-Gallery