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-17 00:00:00   end: 2024-06-19 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:41:09 DEBUG   opendrift.config:168: Adding 17 config items from __init__
14:41:09 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
14:41:09 DEBUG   opendrift.config:168: Adding 5 config items from __init__
14:41:09 INFO    opendrift.models.basemodel:507: OpenDriftSimulation initialised (version 1.11.5 / v1.11.5-4-g5577ceb)
14:41:09 DEBUG   opendrift.config:168: Adding 15 config items from oceandrift
14:41:09 DEBUG   opendrift.config:178:   Overwriting config item seed:z
14:41:09 DEBUG   opendrift.models.basemodel.environment:328: Added reader NorKyst manual aggregate
14:41:09 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:41:09 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:41:15 DEBUG   opendrift.models.basemodel.environment:328: Added reader global_landmask
14:41:15 INFO    opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_height: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    ocean_vertical_diffusivity: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_significant_height: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_to_direction: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_significant_height: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_to_direction: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_mean_period: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_significant_height: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    surface_downward_x_stress: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    surface_downward_y_stress: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    turbulent_kinetic_energy: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    turbulent_generic_length_scale: 0.000000
14:41:15 INFO    opendrift.models.basemodel.environment:248:    ocean_mixed_layer_thickness: 50.000000
14:41:15 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Config to Mode.Ready
14:41:15 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Ready to Mode.Run
14:41:15 DEBUG   opendrift.models.basemodel:1725:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.5
  Platform: Linux, 5.15.0-1057-aws
  68.56774520874023 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
  Python version 3.11.6 | packaged by conda-forge | (main, Oct  3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------

14:41:15 DEBUG   opendrift.models.basemodel:1739: No output file is specified, neglecting export_buffer_length
14:41:15 DEBUG   opendrift.models.basemodel:1857: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2024-06-17 00:00:00 to 2024-06-19 23:00:00)
14:41:15 DEBUG   opendrift.models.basemodel.environment:180:    Preparing NorKyst manual aggregate for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
14:41:15 DEBUG   opendrift.readers.basereader.structured:153: Clearing cache for reader NorKyst manual aggregate before starting new simulation
14:41:15 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:41:15 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for NorKyst manual aggregate
14:41:15 DEBUG   opendrift.models.basemodel.environment:180:    Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
14:41:15 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
14:41:15 INFO    opendrift.models.basemodel:885: Using existing reader for land_binary_mask
14:41:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:15 INFO    opendrift.models.basemodel:896: All points are in ocean
14:41:15 DEBUG   opendrift.models.basemodel:840: to be seeded: 1000, already seeded 0
14:41:15 DEBUG   opendrift.models.basemodel:858: Released 1000 new elements.
14:41:15 WARNING opendrift.models.basemodel:679: 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:41:15 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:15 INFO    opendrift.models.basemodel:1985: 2024-06-17 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
14:41:15 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:15 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:15 DEBUG   opendrift.models.basemodel:2004:               59.99731 <- latitude  -> 60.002846
14:41:15 DEBUG   opendrift.models.basemodel:2009:               4.4945407 <- longitude -> 4.504945
14:41:15 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:15 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:15 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:41:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 00:00:00 (before)
                2024-06-17 01:00:00 (after)
14:41:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:20 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:20 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-17 00:00:00)
14:41:20 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 00:00:00) in space  (linearNDFast)
14:41:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:20 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
14:41:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
14:41:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:20 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:20 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:20 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:20 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:20 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:20 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:20 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:20 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.159841 (min) -0.157893 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0463461 (min) -0.0427234 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.76937 (min) -3.71256 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -1.50223 (min) -1.39523 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.40987e-08 (min) 4.68939e-08 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:20 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:20 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.393628, mean: 0.395894, max: 0.398156
14:41:20 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:20 DEBUG   opendrift.models.physics_methods:1058:    min: 3.418005, mean: 3.427828, max: 3.437608
14:41:20 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.418005, mean: 3.427828, max: 3.437608
14:41:20 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:20 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:20 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:20 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.080003 m/s - 0.080462 m/s)
14:41:20 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:20 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:20 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:20 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:20 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:20 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:20 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:20 INFO    opendrift.models.basemodel:1985: 2024-06-17 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
14:41:20 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:20 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:20 DEBUG   opendrift.models.basemodel:2004:               59.994890813880914 <- latitude  -> 60.00050231741898
14:41:20 DEBUG   opendrift.models.basemodel:2009:               4.479384344870017 <- longitude -> 4.48995016105112
14:41:20 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:20 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41: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:41:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:20 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 01:00:00 (before)
                2024-06-17 02:00:00 (after)
14:41:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:23 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:23 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-17 01:00:00)
14:41:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 01:00:00) in space  (linearNDFast)
14:41:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:23 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5206265855467 and -65.5100607619699 degrees.
14:41:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5206265855467 and -65.5100607619699 degrees.
14:41:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:23 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:23 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:23 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:23 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:23 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:23 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:23 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.176318 (min) -0.172394 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0525477 (min) 0.0567314 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.41327 (min) -5.3556 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -1.31236 (min) -1.24244 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.0232e-05 (min) 2.04417e-05 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.026 (min) 298.295 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:23 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:23 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.746607, mean: 0.753798, max: 0.760684
14:41:23 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:23 DEBUG   opendrift.models.physics_methods:1058:    min: 4.707340, mean: 4.729950, max: 4.751509
14:41:23 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.707340, mean: 4.729950, max: 4.751509
14:41:23 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:23 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:23 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:23 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110181 m/s - 0.111215 m/s)
14:41:23 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:23 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:23 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:23 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:23 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:23 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:23 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:23 INFO    opendrift.models.basemodel:1985: 2024-06-17 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
14:41:23 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:23 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:23 DEBUG   opendrift.models.basemodel:2004:               59.99581372945408 <- latitude  -> 60.001455024853726
14:41:23 DEBUG   opendrift.models.basemodel:2009:               4.461063190151989 <- longitude -> 4.471870278256098
14:41:23 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:23 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41: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:41:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 02:00:00 (before)
                2024-06-17 03:00:00 (after)
14:41:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:29 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:29 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 02:00:00)
14:41:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 02:00:00) in space  (linearNDFast)
14:41:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:29 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5389477337296 and -65.52814064074563 degrees.
14:41:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5389477337296 and -65.52814064074563 degrees.
14:41:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:29 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:29 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:29 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:29 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:29 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:29 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:29 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:29 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.165921 (min) -0.161117 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.149996 (min) 0.157499 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.66158 (min) -4.63355 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -1.00522 (min) -0.996894 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.41737e-05 (min) 1.48982e-05 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.848 (min) 298.068 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:29 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:29 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.552605, mean: 0.555618, max: 0.559425
14:41:29 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:29 DEBUG   opendrift.models.physics_methods:1058:    min: 4.049830, mean: 4.060857, max: 4.074744
14:41:29 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.049830, mean: 4.060857, max: 4.074744
14:41:29 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:29 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:29 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:29 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.094792 m/s - 0.095375 m/s)
14:41:29 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:29 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:29 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:29 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:29 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:29 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:29 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:29 INFO    opendrift.models.basemodel:1985: 2024-06-17 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
14:41:29 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:29 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:29 DEBUG   opendrift.models.basemodel:2004:               60.00010944432448 <- latitude  -> 60.005725879604086
14:41:29 DEBUG   opendrift.models.basemodel:2009:               4.444416845246142 <- longitude -> 4.455401102445528
14:41:29 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:29 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:29 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:41:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:29 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 03:00:00 (before)
                2024-06-17 04:00:00 (after)
14:41:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:32 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:32 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-17 03:00:00)
14:41:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 03:00:00) in space  (linearNDFast)
14:41:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:32 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5555940766975 and -65.54460982494209 degrees.
14:41:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5555940766975 and -65.54460982494209 degrees.
14:41:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:33 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:33 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:33 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:33 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:33 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.133435 (min) -0.125701 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.23 (min) 0.24215 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.18274 (min) -5.1173 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 0.701659 (min) 0.725031 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.89865e-05 (min) 1.92809e-05 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.901 (min) 298.061 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:33 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:33 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.656380, mean: 0.664701, max: 0.673680
14:41:33 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:33 DEBUG   opendrift.models.physics_methods:1058:    min: 4.413745, mean: 4.441622, max: 4.471534
14:41:33 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.413745, mean: 4.441622, max: 4.471534
14:41:33 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:33 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:33 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:33 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103309 m/s - 0.104662 m/s)
14:41:33 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:33 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:33 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:33 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:33 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:33 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:33 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:33 INFO    opendrift.models.basemodel:1985: 2024-06-17 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
14:41:33 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:33 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:33 DEBUG   opendrift.models.basemodel:2004:               60.00823065773456 <- latitude  -> 60.01371622319992
14:41:33 DEBUG   opendrift.models.basemodel:2009:               4.429154930724026 <- longitude -> 4.440607407406245
14:41:33 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:33 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:33 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:41:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 04:00:00 (before)
                2024-06-17 05:00:00 (after)
14:41:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-17 04:00:00)
14:41:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 04:00:00) in space  (linearNDFast)
14:41:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57085599236443 and -65.55940350335824 degrees.
14:41:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57085599236443 and -65.55940350335824 degrees.
14:41:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:36 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:36 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0938635 (min) -0.084706 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.269454 (min) 0.286548 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.90204 (min) -4.86904 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.51862 (min) 1.56146 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.65829e-05 (min) 1.67835e-05 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.111 (min) 298.227 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:36 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.640033, mean: 0.645334, max: 0.650165
14:41:36 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:36 DEBUG   opendrift.models.physics_methods:1058:    min: 4.358437, mean: 4.376446, max: 4.392800
14:41:36 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.358437, mean: 4.376446, max: 4.392800
14:41:36 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:36 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:36 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:36 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.102015 m/s - 0.102819 m/s)
14:41:36 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:36 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:36 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:36 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:36 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:36 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:36 INFO    opendrift.models.basemodel:1985: 2024-06-17 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
14:41:36 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:36 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:36 DEBUG   opendrift.models.basemodel:2004:               60.01816326753257 <- latitude  -> 60.02360674041583
14:41:36 DEBUG   opendrift.models.basemodel:2009:               4.4167697338771905 <- longitude -> 4.428821595464989
14:41:36 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:36 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:36 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:41:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 05:00:00 (before)
                2024-06-17 06:00:00 (after)
14:41:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 05:00:00)
14:41:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 05:00:00) in space  (linearNDFast)
14:41:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58324118111427 and -65.5711893363376 degrees.
14:41:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58324118111427 and -65.5711893363376 degrees.
14:41:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:40 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:40 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0394843 (min) -0.0325483 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.292998 (min) 0.311296 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.02741 (min) -3.99179 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.1507 (min) 3.17085 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.61415e-05 (min) 1.64155e-05 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.279 (min) 298.366 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:40 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.636538, mean: 0.641246, max: 0.645732
14:41:40 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:40 DEBUG   opendrift.models.physics_methods:1058:    min: 4.346521, mean: 4.362562, max: 4.377798
14:41:40 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.346521, mean: 4.362562, max: 4.377798
14:41:40 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:40 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:40 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:40 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101736 m/s - 0.102468 m/s)
14:41:40 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:40 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:40 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:40 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:40 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:40 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:40 INFO    opendrift.models.basemodel:1985: 2024-06-17 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
14:41:40 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:40 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:40 DEBUG   opendrift.models.basemodel:2004:               60.029887897777115 <- latitude  -> 60.03530850803959
14:41:40 DEBUG   opendrift.models.basemodel:2009:               4.409074223128471 <- longitude -> 4.4214790025139665
14:41:40 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:40 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41: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:41:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 06:00:00 (before)
                2024-06-17 07:00:00 (after)
14:41:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 06:00:00)
14:41:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 06:00:00) in space  (linearNDFast)
14:41:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59093670638701 and -65.57853191012421 degrees.
14:41:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59093670638701 and -65.57853191012421 degrees.
14:41:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0461706 (min) 0.0516826 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.272162 (min) 0.291128 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.3652 (min) -3.32847 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.70657 (min) 3.77032 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.41873e-06 (min) 8.53592e-06 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.096 (min) 298.255 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:43 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.611234, mean: 0.619691, max: 0.627345
14:41:43 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:43 DEBUG   opendrift.models.physics_methods:1058:    min: 4.259251, mean: 4.288606, max: 4.315020
14:41:43 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.259251, mean: 4.288606, max: 4.315020
14:41:43 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:43 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:43 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:43 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.099693 m/s - 0.100999 m/s)
14:41:43 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:43 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:43 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:43 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:43 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:43 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:43 INFO    opendrift.models.basemodel:1985: 2024-06-17 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
14:41:43 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:43 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:43 DEBUG   opendrift.models.basemodel:2004:               60.04135183232762 <- latitude  -> 60.046862826709614
14:41:43 DEBUG   opendrift.models.basemodel:2009:               4.407929932172579 <- longitude -> 4.420387003622495
14:41:43 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:43 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41: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:41:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 07:00:00 (before)
                2024-06-17 08:00:00 (after)
14:41:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:47 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-17 07:00:00)
14:41:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 07:00:00) in space  (linearNDFast)
14:41:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:47 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59208097762406 and -65.57962391251405 degrees.
14:41:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59208097762406 and -65.57962391251405 degrees.
14:41:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:47 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:47 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:47 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:47 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:47 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:47 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.117697 (min) 0.127349 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.212662 (min) 0.23374 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.98475 (min) -1.95711 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.94189 (min) 5.95104 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.89515e-06 (min) -5.77152e-06 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.557 (min) 297.854 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:47 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:47 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.964143, mean: 0.965498, max: 0.966919
14:41:47 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:47 DEBUG   opendrift.models.physics_methods:1058:    min: 5.349342, mean: 5.353098, max: 5.357037
14:41:47 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.349342, mean: 5.353098, max: 5.357037
14:41:47 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:47 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:47 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:47 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.125208 m/s - 0.125388 m/s)
14:41:47 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:47 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:47 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:47 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:47 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:47 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:47 INFO    opendrift.models.basemodel:1985: 2024-06-17 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
14:41:47 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:47 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:47 DEBUG   opendrift.models.basemodel:2004:               60.052191643903754 <- latitude  -> 60.05798814435113
14:41:47 DEBUG   opendrift.models.basemodel:2009:               4.413001964601836 <- longitude -> 4.4260276619226735
14:41:47 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:47 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41: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:41:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 08:00:00 (before)
                2024-06-17 09:00:00 (after)
14:41:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 08:00:00)
14:41:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 08:00:00) in space  (linearNDFast)
14:41:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5870089485577 and -65.57398325143753 degrees.
14:41:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5870089485577 and -65.57398325143753 degrees.
14:41:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.162162 (min) 0.177166 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.109803 (min) 0.136702 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.67085 (min) -1.63725 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.6954 (min) 4.82114 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.78415e-05 (min) -2.77538e-05 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.853 (min) 297.355 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:50 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.611028, mean: 0.622335, max: 0.638239
14:41:50 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:50 DEBUG   opendrift.models.physics_methods:1058:    min: 4.258534, mean: 4.297729, max: 4.352325
14:41:50 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.258534, mean: 4.297729, max: 4.352325
14:41:50 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:50 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:50 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:50 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.099677 m/s - 0.101872 m/s)
14:41:50 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:50 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:50 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:50 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:50 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:50 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:50 INFO    opendrift.models.basemodel:1985: 2024-06-17 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
14:41:50 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:50 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:50 DEBUG   opendrift.models.basemodel:2004:               60.05892974326598 <- latitude  -> 60.0653190124313
14:41:50 DEBUG   opendrift.models.basemodel:2009:               4.421361410952916 <- longitude -> 4.435293400532499
14:41:50 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:50 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41: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:41:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 09:00:00 (before)
                2024-06-17 10:00:00 (after)
14:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 09:00:00)
14:41:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 09:00:00) in space  (linearNDFast)
14:41:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57864949811423 and -65.56471751449966 degrees.
14:41:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57864949811423 and -65.56471751449966 degrees.
14:41:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:53 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:53 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.160396 (min) 0.172442 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.00658458 (min) 0.0391162 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.39623 (min) -3.31721 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.95548 (min) 3.97173 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.29326e-05 (min) -4.2867e-05 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.508 (min) 297.146 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:53 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.658702, mean: 0.664447, max: 0.668675
14:41:53 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:53 DEBUG   opendrift.models.physics_methods:1058:    min: 4.421547, mean: 4.440784, max: 4.454893
14:41:53 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.421547, mean: 4.440784, max: 4.454893
14:41:53 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:53 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:53 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:53 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103492 m/s - 0.104273 m/s)
14:41:53 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:53 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:53 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:53 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:53 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:53 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:53 INFO    opendrift.models.basemodel:1985: 2024-06-17 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
14:41:53 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:53 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:53 DEBUG   opendrift.models.basemodel:2004:               60.061915108879475 <- latitude  -> 60.069001476858176
14:41:53 DEBUG   opendrift.models.basemodel:2009:               4.427439294965226 <- longitude -> 4.442061670743484
14:41:53 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:53 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41: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:41:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 10:00:00 (before)
                2024-06-17 11:00:00 (after)
14:41:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:41:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:41:57 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:41:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:41:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:41:57 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 10:00:00)
14:41:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 10:00:00) in space  (linearNDFast)
14:41:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:41:57 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:41:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57257161997866 and -65.55794923345701 degrees.
14:41:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57257161997866 and -65.55794923345701 degrees.
14:41:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:41:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:41:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:41:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:41:57 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:41:57 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:41:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:41:57 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:41:57 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:41:57 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:41:57 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:41:57 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.121134 (min) 0.129884 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0620024 (min) -0.0325317 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.99407 (min) -2.97994 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.47749 (min) 3.50599 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.12461e-05 (min) -4.1179e-05 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.418 (min) 297.16 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:41:57 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:41:57 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.516344, mean: 0.519609, max: 0.522558
14:41:57 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:41:57 DEBUG   opendrift.models.physics_methods:1058:    min: 3.914705, mean: 3.927062, max: 3.938192
14:41:57 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.914705, mean: 3.927062, max: 3.938192
14:41:57 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:57 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:41:57 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:41:57 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.091629 m/s - 0.092179 m/s)
14:41:57 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:41:57 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:41:57 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:41:57 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:41:57 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:41:57 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:41:57 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:41:57 INFO    opendrift.models.basemodel:1985: 2024-06-17 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
14:41:57 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:41:57 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:41:57 DEBUG   opendrift.models.basemodel:2004:               60.06237638640653 <- latitude  -> 60.07006470923915
14:41:57 DEBUG   opendrift.models.basemodel:2009:               4.431398906410833 <- longitude -> 4.446603759731049
14:41:57 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:41:57 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:41:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:41:57 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:41:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:41:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:41:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:41:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:41:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:41:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 11:00:00 (before)
                2024-06-17 12:00:00 (after)
14:42:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:00 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:00 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 11:00:00)
14:42:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 11:00:00) in space  (linearNDFast)
14:42:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:00 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56861200351193 and -65.5534071470342 degrees.
14:42:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56861200351193 and -65.5534071470342 degrees.
14:42:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:00 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:00 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:00 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:00 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:00 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:00 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:00 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:00 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.071967 (min) 0.0776137 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0774204 (min) -0.0505267 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.839687 (min) -0.781628 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.96308 (min) 6.07993 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.48803e-05 (min) -2.46417e-05 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.476 (min) 297.247 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:00 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:00 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.890605, mean: 0.908258, max: 0.925528
14:42:00 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:00 DEBUG   opendrift.models.physics_methods:1058:    min: 5.141290, mean: 5.191968, max: 5.241122
14:42:00 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.141290, mean: 5.191968, max: 5.241122
14:42:00 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:00 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:00 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:00 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120339 m/s - 0.122675 m/s)
14:42:00 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:00 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:00 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:00 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:00 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:00 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:00 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:00 INFO    opendrift.models.basemodel:1985: 2024-06-17 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
14:42:00 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:00 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:00 DEBUG   opendrift.models.basemodel:2004:               60.06397734408469 <- latitude  -> 60.07218601350294
14:42:00 DEBUG   opendrift.models.basemodel:2009:               4.434965687228261 <- longitude -> 4.450593320427058
14:42:00 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:00 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:00 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:42:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:00 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 12:00:00 (before)
                2024-06-17 13:00:00 (after)
14:42:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x24x2) for time before (2024-06-17 12:00:00)
14:42:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 12:00:00) in space  (linearNDFast)
14:42:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56504521267779 and -65.5494175931034 degrees.
14:42:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56504521267779 and -65.5494175931034 degrees.
14:42:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:03 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:03 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.009277 (min) 0.0165975 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0508795 (min) -0.0268362 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.09228 (min) -1.04292 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.69518 (min) 6.84313 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.76677e-06 (min) -2.73426e-06 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.466 (min) 297.285 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:04 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.130359, mean: 1.155393, max: 1.180989
14:42:04 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:04 DEBUG   opendrift.models.physics_methods:1058:    min: 5.792122, mean: 5.855874, max: 5.920419
14:42:04 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.792122, mean: 5.855874, max: 5.920419
14:42:04 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:04 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:04 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:04 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.135572 m/s - 0.138575 m/s)
14:42:04 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:04 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:04 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:04 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:04 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:04 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:04 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:04 INFO    opendrift.models.basemodel:1985: 2024-06-17 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
14:42:04 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:04 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:04 DEBUG   opendrift.models.basemodel:2004:               60.06680650442772 <- latitude  -> 60.07563513791156
14:42:04 DEBUG   opendrift.models.basemodel:2009:               4.434161061967339 <- longitude -> 4.450284310342314
14:42:04 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:04 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:04 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:42:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 13:00:00 (before)
                2024-06-17 14:00:00 (after)
14:42:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:07 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:07 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 13:00:00)
14:42:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 13:00:00) in space  (linearNDFast)
14:42:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:07 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56584984680366 and -65.54972659534681 degrees.
14:42:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56584984680366 and -65.54972659534681 degrees.
14:42:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:07 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:07 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:07 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:07 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:07 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:07 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:07 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:07 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0474719 (min) -0.0379214 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.00819517 (min) 0.0128354 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.44335 (min) -1.41985 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.6957 (min) 4.80281 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.67288e-05 (min) 1.67774e-05 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.229 (min) 297.171 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:07 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:07 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.592992, mean: 0.604917, max: 0.618284
14:42:07 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:07 DEBUG   opendrift.models.physics_methods:1058:    min: 4.195211, mean: 4.237162, max: 4.283745
14:42:07 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.195211, mean: 4.237162, max: 4.283745
14:42:07 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:07 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:07 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:07 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.098194 m/s - 0.100267 m/s)
14:42:07 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:07 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:07 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:07 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:07 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:07 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:07 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:07 INFO    opendrift.models.basemodel:1985: 2024-06-17 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
14:42:07 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:07 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:07 DEBUG   opendrift.models.basemodel:2004:               60.06974833492974 <- latitude  -> 60.07909471219554
14:42:07 DEBUG   opendrift.models.basemodel:2009:               4.429254856341992 <- longitude -> 4.445959061458426
14:42:07 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:07 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42: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:42:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 14:00:00 (before)
                2024-06-17 15:00:00 (after)
14:42:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:10 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:10 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 14:00:00)
14:42:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 14:00:00) in space  (linearNDFast)
14:42:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:10 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57075603877956 and -65.55405185294708 degrees.
14:42:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57075603877956 and -65.55405185294708 degrees.
14:42:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:10 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:10 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:10 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:10 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:10 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:10 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:10 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0822873 (min) -0.0730539 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0578771 (min) 0.0789056 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.06981 (min) -1.98384 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.46912 (min) 6.50059 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.28771e-05 (min) 2.29534e-05 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.838 (min) 296.911 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:10 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.128889, mean: 1.135701, max: 1.144926
14:42:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:10 DEBUG   opendrift.models.physics_methods:1058:    min: 5.788355, mean: 5.805791, max: 5.829325
14:42:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.788355, mean: 5.805791, max: 5.829325
14:42:10 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:10 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:10 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:10 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.135484 m/s - 0.136443 m/s)
14:42:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:10 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:10 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:10 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:10 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:10 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:10 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:10 INFO    opendrift.models.basemodel:1985: 2024-06-17 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
14:42:10 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:10 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:10 DEBUG   opendrift.models.basemodel:2004:               60.07587186263173 <- latitude  -> 60.0858319773799
14:42:10 DEBUG   opendrift.models.basemodel:2009:               4.421366433220449 <- longitude -> 4.438564491484334
14:42:10 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:10 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42: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:42:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 15:00:00 (before)
                2024-06-17 16:00:00 (after)
14:42:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:13 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:13 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 15:00:00)
14:42:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 15:00:00) in space  (linearNDFast)
14:42:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:13 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57864446782534 and -65.56144640987202 degrees.
14:42:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57864446782534 and -65.56144640987202 degrees.
14:42:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:13 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:13 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:13 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:13 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:13 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:13 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:13 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.102058 (min) -0.094504 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.135951 (min) 0.150769 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.97201 (min) -3.76113 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.91908 (min) 7.97847 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.59196e-05 (min) 2.60396e-05 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.023 (min) 296.366 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:13 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:13 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.913929, mean: 1.925272, max: 1.932183
14:42:13 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:13 DEBUG   opendrift.models.physics_methods:1058:    min: 7.536895, mean: 7.559194, max: 7.572752
14:42:13 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.536895, mean: 7.559194, max: 7.572752
14:42:13 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:13 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:13 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:13 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.176411 m/s - 0.177250 m/s)
14:42:13 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:13 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:13 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:13 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:13 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:13 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:13 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:13 INFO    opendrift.models.basemodel:1985: 2024-06-17 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
14:42:13 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:13 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:13 DEBUG   opendrift.models.basemodel:2004:               60.085451548457236 <- latitude  -> 60.09582098198508
14:42:13 DEBUG   opendrift.models.basemodel:2009:               4.409634837724515 <- longitude -> 4.427569911833884
14:42:13 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:13 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42: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:42:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 16:00:00 (before)
                2024-06-17 17:00:00 (after)
14:42:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:17 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:17 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 16:00:00)
14:42:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 16:00:00) in space  (linearNDFast)
14:42:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:17 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59037606544999 and -65.57244098317798 degrees.
14:42:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59037606544999 and -65.57244098317798 degrees.
14:42:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:17 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:17 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:17 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:17 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:17 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:17 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:17 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:17 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.097145 (min) -0.0856141 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.173809 (min) 0.194394 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.30599 (min) -3.28033 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.87338 (min) 4.13716 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.65249e-05 (min) 2.6559e-05 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 293.628 (min) 295.329 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:17 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:17 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.635199, mean: 0.661499, max: 0.689333
14:42:17 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:17 DEBUG   opendrift.models.physics_methods:1058:    min: 4.341945, mean: 4.430814, max: 4.523181
14:42:17 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.341945, mean: 4.430814, max: 4.523181
14:42:17 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:17 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:17 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:17 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101629 m/s - 0.105871 m/s)
14:42:17 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:17 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:17 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:17 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:17 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:17 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:17 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:17 INFO    opendrift.models.basemodel:1985: 2024-06-17 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
14:42:17 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:17 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:17 DEBUG   opendrift.models.basemodel:2004:               60.093602891313246 <- latitude  -> 60.104775586213165
14:42:17 DEBUG   opendrift.models.basemodel:2009:               4.3990733980344165 <- longitude -> 4.417756665357338
14:42:17 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:17 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42: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:42:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:17 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 17:00:00 (before)
                2024-06-17 18:00:00 (after)
14:42:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:22 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:22 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 17:00:00)
14:42:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 17:00:00) in space  (linearNDFast)
14:42:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:22 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.60093750291756 and -65.58225423946175 degrees.
14:42:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.60093750291756 and -65.58225423946175 degrees.
14:42:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:22 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:22 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:22 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:22 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:22 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:22 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:22 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:22 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.072055 (min) -0.0604852 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.198453 (min) 0.222109 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.69928 (min) -2.60658 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.13574 (min) 4.2895 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.57268e-05 (min) 2.60526e-05 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.206 (min) 294.242 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:22 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:22 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.599828, mean: 0.609418, max: 0.619775
14:42:22 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:22 DEBUG   opendrift.models.physics_methods:1058:    min: 4.219324, mean: 4.252909, max: 4.288906
14:42:22 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.219324, mean: 4.252909, max: 4.288906
14:42:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:22 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:22 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:22 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.098759 m/s - 0.100387 m/s)
14:42:22 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:22 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:22 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:22 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:22 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:22 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:22 INFO    opendrift.models.basemodel:1985: 2024-06-17 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
14:42:22 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:22 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:22 DEBUG   opendrift.models.basemodel:2004:               60.10284528158087 <- latitude  -> 60.11462488370701
14:42:22 DEBUG   opendrift.models.basemodel:2009:               4.390913875950235 <- longitude -> 4.4104153474948795
14:42:22 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:22 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:22 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:42:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 18:00:00 (before)
                2024-06-17 19:00:00 (after)
14:42:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:26 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:26 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 18:00:00)
14:42:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 18:00:00) in space  (linearNDFast)
14:42:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:26 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.60909702677654 and -65.58959555854098 degrees.
14:42:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.60909702677654 and -65.58959555854098 degrees.
14:42:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:26 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:26 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0323446 (min) -0.0236961 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.191353 (min) 0.211437 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.50891 (min) -3.43077 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.38311 (min) 3.50972 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.28536e-05 (min) 2.31786e-05 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.843 (min) 293.12 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:26 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.578276, mean: 0.589486, max: 0.599089
14:42:26 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:26 DEBUG   opendrift.models.physics_methods:1058:    min: 4.142832, mean: 4.182770, max: 4.216726
14:42:26 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.142832, mean: 4.182770, max: 4.216726
14:42:26 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:26 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:26 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:26 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.096968 m/s - 0.098698 m/s)
14:42:26 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:26 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:26 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:26 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:26 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:26 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:26 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:26 INFO    opendrift.models.basemodel:1985: 2024-06-17 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
14:42:26 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:26 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:26 DEBUG   opendrift.models.basemodel:2004:               60.111313186032824 <- latitude  -> 60.1237143365903
14:42:26 DEBUG   opendrift.models.basemodel:2009:               4.384339822640227 <- longitude -> 4.404311983467696
14:42:26 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:26 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:26 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:42:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 19:00:00 (before)
                2024-06-17 20:00:00 (after)
14:42:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:31 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:31 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 19:00:00)
14:42:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 19:00:00) in space  (linearNDFast)
14:42:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:31 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61567107085588 and -65.59569890694937 degrees.
14:42:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61567107085588 and -65.59569890694937 degrees.
14:42:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:31 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:31 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:31 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:31 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:31 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:31 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:31 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:31 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.014552 (min) 0.0201822 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.159574 (min) 0.172591 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.62225 (min) -4.42792 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.2874 (min) 4.1862 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.05359e-05 (min) 1.06432e-05 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 289.815 (min) 292.115 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:31 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:31 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.748171, mean: 0.860487, max: 0.952502
14:42:31 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:31 DEBUG   opendrift.models.physics_methods:1058:    min: 4.712268, mean: 5.052593, max: 5.316950
14:42:31 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.712268, mean: 5.052593, max: 5.316950
14:42:31 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:31 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:31 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:31 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110297 m/s - 0.124450 m/s)
14:42:31 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:31 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:31 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:31 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:31 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:31 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:31 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:31 INFO    opendrift.models.basemodel:1985: 2024-06-17 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
14:42:31 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:31 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:31 DEBUG   opendrift.models.basemodel:2004:               60.11931859354549 <- latitude  -> 60.131367404424154
14:42:31 DEBUG   opendrift.models.basemodel:2009:               4.379635834306859 <- longitude -> 4.399533489999917
14:42:31 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:31 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42: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:42:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:31 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 20:00:00 (before)
                2024-06-17 21:00:00 (after)
14:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 20:00:00)
14:42:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 20:00:00) in space  (linearNDFast)
14:42:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.62037505735096 and -65.60047740370689 degrees.
14:42:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.62037505735096 and -65.60047740370689 degrees.
14:42:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:36 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:36 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.066127 (min) 0.0749254 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0989034 (min) 0.11052 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.25493 (min) -1.13911 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.33189 (min) 4.39155 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.21598e-05 (min) -1.19098e-05 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 289.254 (min) 291.3 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:36 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.496282, mean: 0.504171, max: 0.511056
14:42:36 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:36 DEBUG   opendrift.models.physics_methods:1058:    min: 3.837903, mean: 3.868273, max: 3.894608
14:42:36 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.837903, mean: 3.868273, max: 3.894608
14:42:36 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:36 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:36 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:36 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.089831 m/s - 0.091158 m/s)
14:42:36 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:36 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:36 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:36 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:36 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:36 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:36 INFO    opendrift.models.basemodel:1985: 2024-06-17 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
14:42:36 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:36 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:36 DEBUG   opendrift.models.basemodel:2004:               60.12565331225714 <- latitude  -> 60.137594780040175
14:42:36 DEBUG   opendrift.models.basemodel:2009:               4.382316828811392 <- longitude -> 4.4028014565773645
14:42:36 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:36 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:36 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:42:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 21:00:00 (before)
                2024-06-17 22:00:00 (after)
14:42:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:41 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:41 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 21:00:00)
14:42:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 21:00:00) in space  (linearNDFast)
14:42:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:41 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.617694054347 and -65.59720943215892 degrees.
14:42:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.617694054347 and -65.59720943215892 degrees.
14:42:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:41 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:41 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:41 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:41 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:41 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0734439 (min) 0.0911759 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0313575 (min) 0.0455628 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.64375 (min) -2.59944 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.32916 (min) 6.56551 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.55848e-05 (min) -3.53634e-05 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 289.557 (min) 291.4 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:41 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:41 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.153022, mean: 1.195974, max: 1.230923
14:42:41 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:41 DEBUG   opendrift.models.physics_methods:1058:    min: 5.849899, mean: 5.957767, max: 6.044287
14:42:41 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.849899, mean: 5.957767, max: 6.044287
14:42:41 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:41 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:41 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:41 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.136925 m/s - 0.141474 m/s)
14:42:41 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:41 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:41 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:41 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:41 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:41 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:41 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:41 INFO    opendrift.models.basemodel:1985: 2024-06-17 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
14:42:41 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:41 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:41 DEBUG   opendrift.models.basemodel:2004:               60.13117569132847 <- latitude  -> 60.14303047932351
14:42:41 DEBUG   opendrift.models.basemodel:2009:               4.383692668776682 <- longitude -> 4.405295759121211
14:42:41 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:41 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:41 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:42:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 22:00:00 (before)
                2024-06-17 23:00:00 (after)
14:42:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 22:00:00)
14:42:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 22:00:00) in space  (linearNDFast)
14:42:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61631822264451 and -65.59471513224094 degrees.
14:42:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61631822264451 and -65.59471513224094 degrees.
14:42:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:45 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:45 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0473798 (min) 0.07184 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0101777 (min) 0.0100359 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.7881 (min) -1.75992 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.73737 (min) 5.81764 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.27889e-05 (min) -4.25848e-05 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 289.89 (min) 291.579 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:45 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.888421, mean: 0.898504, max: 0.908779
14:42:45 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:45 DEBUG   opendrift.models.physics_methods:1058:    min: 5.134983, mean: 5.164030, max: 5.193483
14:42:45 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.134983, mean: 5.164030, max: 5.193483
14:42:45 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:45 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:45 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:45 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120191 m/s - 0.121560 m/s)
14:42:45 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:45 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:45 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:45 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:45 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:45 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:45 INFO    opendrift.models.basemodel:1985: 2024-06-17 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
14:42:45 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:45 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:45 DEBUG   opendrift.models.basemodel:2004:               60.13467426392168 <- latitude  -> 60.147062381017705
14:42:45 DEBUG   opendrift.models.basemodel:2009:               4.384445199647713 <- longitude -> 4.407646701403137
14:42:45 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:45 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42: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:42:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 23:00:00 (before)
                2024-06-18 00:00:00 (after)
14:42:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 23:00:00)
14:42:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 23:00:00) in space  (linearNDFast)
14:42:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61556569281643 and -65.5923641910052 degrees.
14:42:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61556569281643 and -65.5923641910052 degrees.
14:42:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0169604 (min) 0.0416332 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0227451 (min) 0.00385593 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.87298 (min) -1.66417 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.97797 (min) 4.19085 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.41553e-05 (min) -3.41152e-05 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.197 (min) 291.82 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:50 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.475574, mean: 0.483276, max: 0.500185
14:42:50 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:50 DEBUG   opendrift.models.physics_methods:1058:    min: 3.756976, mean: 3.787241, max: 3.852963
14:42:50 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.756976, mean: 3.787241, max: 3.852963
14:42:50 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:50 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:50 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:50 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.087937 m/s - 0.090184 m/s)
14:42:50 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:50 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:50 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:50 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:50 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:50 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:50 INFO    opendrift.models.basemodel:1985: 2024-06-18 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
14:42:50 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:50 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:50 DEBUG   opendrift.models.basemodel:2004:               60.136523241552275 <- latitude  -> 60.14989522101065
14:42:50 DEBUG   opendrift.models.basemodel:2009:               4.383387222667604 <- longitude -> 4.407909841058483
14:42:50 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:50 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42: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:42:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 00:00:00 (before)
                2024-06-18 01:00:00 (after)
14:42:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:42:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:42:56 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:42:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:42:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:42:56 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-18 00:00:00)
14:42:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 00:00:00) in space  (linearNDFast)
14:42:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:42:56 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:42:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61662365869165 and -65.5921010532777 degrees.
14:42:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61662365869165 and -65.5921010532777 degrees.
14:42:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:42:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:42:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:42:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:42:56 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:42:56 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:42:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:42:56 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:42:56 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:42:56 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:42:56 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:42:56 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0241769 (min) -0.00140824 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.00740448 (min) 0.0151584 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.41232 (min) -2.27266 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.64943 (min) 5.68276 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.11833e-09 (min) 1.35596e-09 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.301 (min) 291.872 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:42:56 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:42:56 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.912192, mean: 0.924292, max: 0.937583
14:42:56 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:42:56 DEBUG   opendrift.models.physics_methods:1058:    min: 5.203226, mean: 5.237608, max: 5.275144
14:42:56 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.203226, mean: 5.237608, max: 5.275144
14:42:56 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:56 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:42:56 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:42:56 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.121788 m/s - 0.123472 m/s)
14:42:56 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:42:56 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:42:56 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:42:56 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:42:56 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:42:56 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:42:56 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:42:56 INFO    opendrift.models.basemodel:1985: 2024-06-18 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
14:42:56 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:42:56 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:42:56 DEBUG   opendrift.models.basemodel:2004:               60.13995635191145 <- latitude  -> 60.15403581741104
14:42:56 DEBUG   opendrift.models.basemodel:2009:               4.378874138750013 <- longitude -> 4.404676766042914
14:42:56 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:42:56 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:42:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:42: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:42:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:42:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:42:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:42:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:42:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:42:56 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 01:00:00 (before)
                2024-06-18 02:00:00 (after)
14:43:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:00 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:00 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-06-18 01:00:00)
14:43:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 01:00:00) in space  (linearNDFast)
14:43:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:00 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.62113673837811 and -65.59533412147336 degrees.
14:43:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.62113673837811 and -65.59533412147336 degrees.
14:43:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:00 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:00 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:00 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:00 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:00 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:00 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:00 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:00 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0610366 (min) -0.0431137 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.00920659 (min) 0.0284347 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.84351 (min) -0.756269 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.29702 (min) 5.3195 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.73476e-06 (min) 1.02123e-05 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.299 (min) 291.664 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:00 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:00 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.704306, mean: 0.709262, max: 0.712717
14:43:00 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:00 DEBUG   opendrift.models.physics_methods:1058:    min: 4.572043, mean: 4.588099, max: 4.599261
14:43:00 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.572043, mean: 4.588099, max: 4.599261
14:43:00 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:00 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:00 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:00 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107015 m/s - 0.107652 m/s)
14:43:00 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:00 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:00 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:00 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:00 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:00 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:00 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:00 INFO    opendrift.models.basemodel:1985: 2024-06-18 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
14:43:00 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:00 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:00 DEBUG   opendrift.models.basemodel:2004:               60.143683138605795 <- latitude  -> 60.158388826175596
14:43:00 DEBUG   opendrift.models.basemodel:2009:               4.373824143221643 <- longitude -> 4.400870634768315
14:43:00 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:00 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:00 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:43:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:00 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 02:00:00 (before)
                2024-06-18 03:00:00 (after)
14:43:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:05 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:05 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-18 02:00:00)
14:43:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 02:00:00) in space  (linearNDFast)
14:43:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:05 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.6261867504798 and -65.59914025196764 degrees.
14:43:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.6261867504798 and -65.59914025196764 degrees.
14:43:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:05 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:05 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:05 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:05 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:05 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:05 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:05 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.099964 (min) -0.0728087 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0391731 (min) 0.0782624 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.03867 (min) -0.8778 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.97524 (min) 5.01202 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.05961e-05 (min) 2.12088e-05 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.359 (min) 291.456 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:05 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:05 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.627879, mean: 0.639149, max: 0.644351
14:43:05 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:05 DEBUG   opendrift.models.physics_methods:1058:    min: 4.316857, mean: 4.355419, max: 4.373114
14:43:05 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.316857, mean: 4.355419, max: 4.373114
14:43:05 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:05 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:05 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:05 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101042 m/s - 0.102358 m/s)
14:43:05 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:05 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:05 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:05 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:05 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:05 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:05 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:05 INFO    opendrift.models.basemodel:1985: 2024-06-18 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
14:43:05 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:05 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:05 DEBUG   opendrift.models.basemodel:2004:               60.14817342325492 <- latitude  -> 60.16415598335632
14:43:05 DEBUG   opendrift.models.basemodel:2009:               4.365996453296394 <- longitude -> 4.394993251991454
14:43:05 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:05 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43: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:43:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 03:00:00 (before)
                2024-06-18 04:00:00 (after)
14:43:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:10 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:10 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-06-18 03:00:00)
14:43:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 03:00:00) in space  (linearNDFast)
14:43:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:10 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.63401443484383 and -65.60501763527978 degrees.
14:43:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.63401443484383 and -65.60501763527978 degrees.
14:43:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:10 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:10 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:10 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:10 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:10 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:10 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:10 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.108222 (min) -0.0972361 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.101364 (min) 0.147072 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.18315 (min) -1.03269 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.6784 (min) 3.89403 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.22877e-06 (min) 8.61436e-06 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.433 (min) 291.164 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:10 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.367189, mean: 0.380025, max: 0.399256
14:43:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:10 DEBUG   opendrift.models.physics_methods:1058:    min: 3.301221, mean: 3.358337, max: 3.442352
14:43:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.301221, mean: 3.358337, max: 3.442352
14:43:10 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:10 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:10 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:10 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.077269 m/s - 0.080573 m/s)
14:43:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:10 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:10 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:10 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:10 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:10 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:10 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:10 INFO    opendrift.models.basemodel:1985: 2024-06-18 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
14:43:10 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:10 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:10 DEBUG   opendrift.models.basemodel:2004:               60.15382935090892 <- latitude  -> 60.17142437820348
14:43:10 DEBUG   opendrift.models.basemodel:2009:               4.357648769310822 <- longitude -> 4.387134287592041
14:43:10 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:10 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43: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:43:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 04:00:00 (before)
                2024-06-18 05:00:00 (after)
14:43:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:15 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:15 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x2) for time before (2024-06-18 04:00:00)
14:43:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 04:00:00) in space  (linearNDFast)
14:43:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:15 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.64236210692255 and -65.61287659973084 degrees.
14:43:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.64236210692255 and -65.61287659973084 degrees.
14:43:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:15 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:15 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0878202 (min) -0.076993 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.152975 (min) 0.17418 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.12264 (min) -0.960404 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.49302 (min) 4.53093 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.91078e-05 (min) 2.11275e-05 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.64 (min) 291.043 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:15 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.525533, mean: 0.526032, max: 0.527711
14:43:15 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:15 DEBUG   opendrift.models.physics_methods:1058:    min: 3.949386, mean: 3.951261, max: 3.957563
14:43:15 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.949386, mean: 3.951261, max: 3.957563
14:43:15 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:15 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:15 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:15 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.092441 m/s - 0.092632 m/s)
14:43:15 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:15 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:15 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:15 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:15 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:15 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:15 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:15 INFO    opendrift.models.basemodel:1985: 2024-06-18 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
14:43:15 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:15 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:15 DEBUG   opendrift.models.basemodel:2004:               60.16167915493074 <- latitude  -> 60.179980340397464
14:43:15 DEBUG   opendrift.models.basemodel:2009:               4.351372163744948 <- longitude -> 4.379996768918468
14:43:15 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:15 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:15 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:43:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 05:00:00 (before)
                2024-06-18 06:00:00 (after)
14:43:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:18 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:18 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-06-18 05:00:00)
14:43:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 05:00:00) in space  (linearNDFast)
14:43:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:18 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.64863871636769 and -65.62001411616575 degrees.
14:43:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.64863871636769 and -65.62001411616575 degrees.
14:43:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:18 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:18 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:18 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:18 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:18 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:18 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:18 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:18 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0653272 (min) -0.0551452 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.144936 (min) 0.149801 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.482568 (min) 0.590469 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.02207 (min) 4.05788 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.346e-05 (min) 2.35316e-05 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.098 (min) 291.865 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:18 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:18 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.406514, mean: 0.410669, max: 0.411620
14:43:18 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:18 DEBUG   opendrift.models.physics_methods:1058:    min: 3.473500, mean: 3.491207, max: 3.495247
14:43:18 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.473500, mean: 3.491207, max: 3.495247
14:43:18 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:18 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:18 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:18 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081302 m/s - 0.081811 m/s)
14:43:18 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:18 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:18 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:18 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:18 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:18 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:18 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:18 INFO    opendrift.models.basemodel:1985: 2024-06-18 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
14:43:18 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:18 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:18 DEBUG   opendrift.models.basemodel:2004:               60.16896943092212 <- latitude  -> 60.18744151618394
14:43:18 DEBUG   opendrift.models.basemodel:2009:               4.347760055280331 <- longitude -> 4.376949747265486
14:43:18 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:18 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43: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:43:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 06:00:00 (before)
                2024-06-18 07:00:00 (after)
14:43:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:22 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:22 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-06-18 06:00:00)
14:43:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 06:00:00) in space  (linearNDFast)
14:43:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:22 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.65225082594097 and -65.62306113420752 degrees.
14:43:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.65225082594097 and -65.62306113420752 degrees.
14:43:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:22 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:22 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:22 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:22 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:22 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:22 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:22 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:22 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.102958 (min) -0.0632153 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0860481 (min) 0.100021 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.608602 (min) 0.759469 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.37016 (min) 3.51159 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.23654e-05 (min) 2.26687e-05 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.739 (min) 292.615 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:22 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:22 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.293595, mean: 0.302936, max: 0.312461
14:43:22 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:22 DEBUG   opendrift.models.physics_methods:1058:    min: 2.951918, mean: 2.998462, max: 3.045282
14:43:22 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.951918, mean: 2.998462, max: 3.045282
14:43:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:22 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:22 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:22 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.069093 m/s - 0.071279 m/s)
14:43:22 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:22 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:22 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:22 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:22 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:22 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:22 INFO    opendrift.models.basemodel:1985: 2024-06-18 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
14:43:22 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:22 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:22 DEBUG   opendrift.models.basemodel:2004:               60.17392819819223 <- latitude  -> 60.192942454344646
14:43:22 DEBUG   opendrift.models.basemodel:2009:               4.341869006132895 <- longitude -> 4.373766798486741
14:43:22 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:22 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:22 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:43:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 07:00:00 (before)
                2024-06-18 08:00:00 (after)
14:43:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:25 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:25 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x2) for time before (2024-06-18 07:00:00)
14:43:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 07:00:00) in space  (linearNDFast)
14:43:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:25 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.6581418759461 and -65.6262440787884 degrees.
14:43:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.6581418759461 and -65.6262440787884 degrees.
14:43:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:25 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:25 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:25 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:25 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:25 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:25 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:25 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:25 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.163656 (min) -0.113248 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0254853 (min) 0.0539553 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.392548 (min) 0.411188 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.7495 (min) 2.92009 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.1375e-05 (min) 1.20888e-05 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.139 (min) 293.033 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:25 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:25 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.189761, mean: 0.201520, max: 0.213922
14:43:25 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:25 DEBUG   opendrift.models.physics_methods:1058:    min: 2.373194, mean: 2.445484, max: 2.519751
14:43:25 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.373194, mean: 2.445484, max: 2.519751
14:43:25 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:25 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:25 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:25 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.055548 m/s - 0.058978 m/s)
14:43:25 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:25 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:25 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:25 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:25 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:25 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:25 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:25 INFO    opendrift.models.basemodel:1985: 2024-06-18 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
14:43:25 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:25 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:25 DEBUG   opendrift.models.basemodel:2004:               60.17652827505856 <- latitude  -> 60.19657245282718
14:43:25 DEBUG   opendrift.models.basemodel:2009:               4.331781808157334 <- longitude -> 4.366884890609495
14:43:25 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:25 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:25 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:43:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:25 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 08:00:00 (before)
                2024-06-18 09:00:00 (after)
14:43:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x2) for time before (2024-06-18 08:00:00)
14:43:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 08:00:00) in space  (linearNDFast)
14:43:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.66822907597404 and -65.63312598199582 degrees.
14:43:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.66822907597404 and -65.63312598199582 degrees.
14:43:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:28 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:28 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.208961 (min) -0.168776 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.00344768 (min) 0.0474233 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.79662 (min) 2.08056 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.94541 (min) 3.05065 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.34591e-05 (min) -1.31693e-05 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.096 (min) 293.143 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:28 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.292820, mean: 0.314084, max: 0.335426
14:43:28 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:28 DEBUG   opendrift.models.physics_methods:1058:    min: 2.948019, mean: 3.052935, max: 3.155208
14:43:28 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.948019, mean: 3.052935, max: 3.155208
14:43:28 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:28 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:28 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:28 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.069002 m/s - 0.073852 m/s)
14:43:28 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:28 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:28 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:28 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:28 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:28 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:28 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:28 INFO    opendrift.models.basemodel:1985: 2024-06-18 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
14:43:28 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:28 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:28 DEBUG   opendrift.models.basemodel:2004:               60.17854261265247 <- latitude  -> 60.200075466676864
14:43:28 DEBUG   opendrift.models.basemodel:2009:               4.320920213086592 <- longitude -> 4.358234880337241
14:43:28 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:28 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43: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:43:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 09:00:00 (before)
                2024-06-18 10:00:00 (after)
14:43:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:32 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:32 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 09:00:00)
14:43:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 09:00:00) in space  (linearNDFast)
14:43:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:32 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.67909066386474 and -65.64177599822172 degrees.
14:43:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.67909066386474 and -65.64177599822172 degrees.
14:43:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:32 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:32 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:32 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:32 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:32 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:32 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:32 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:32 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.222851 (min) -0.202703 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.02198 (min) 0.0717017 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.829 (min) 2.88278 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.89122 (min) 2.00966 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.92491e-05 (min) -3.83904e-05 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.926 (min) 293.263 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:32 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:32 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.286916, mean: 0.293619, max: 0.302334
14:43:32 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:32 DEBUG   opendrift.models.physics_methods:1058:    min: 2.918143, mean: 2.951999, max: 2.995526
14:43:32 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.918143, mean: 2.951999, max: 2.995526
14:43:32 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:32 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:32 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:32 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.068303 m/s - 0.070114 m/s)
14:43:32 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:32 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:32 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:32 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:32 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:32 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:32 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:32 INFO    opendrift.models.basemodel:1985: 2024-06-18 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
14:43:32 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:32 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:32 DEBUG   opendrift.models.basemodel:2004:               60.18055081302478 <- latitude  -> 60.20362772238387
14:43:32 DEBUG   opendrift.models.basemodel:2009:               4.3101685451334175 <- longitude -> 4.348730818940025
14:43:32 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:32 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43: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:43:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:32 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 10:00:00 (before)
                2024-06-18 11:00:00 (after)
14:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 10:00:00)
14:43:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 10:00:00) in space  (linearNDFast)
14:43:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.68984232347059 and -65.65128005983598 degrees.
14:43:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.68984232347059 and -65.65128005983598 degrees.
14:43:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:35 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:35 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.221178 (min) -0.202536 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0625277 (min) 0.119115 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.38047 (min) 2.49306 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 0.636857 (min) 1.77249 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.12584e-05 (min) -5.02069e-05 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.818 (min) 293.429 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:35 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.150304, mean: 0.186658, max: 0.230184
14:43:35 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:35 DEBUG   opendrift.models.physics_methods:1058:    min: 2.112099, mean: 2.351549, max: 2.613768
14:43:35 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.112099, mean: 2.351549, max: 2.613768
14:43:35 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:36 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:36 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:36 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.049436 m/s - 0.061179 m/s)
14:43:36 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:36 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:36 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:36 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:36 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:36 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:36 INFO    opendrift.models.basemodel:1985: 2024-06-18 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
14:43:36 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:36 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:36 DEBUG   opendrift.models.basemodel:2004:               60.18371591159176 <- latitude  -> 60.20788723644163
14:43:36 DEBUG   opendrift.models.basemodel:2009:               4.298910217609703 <- longitude -> 4.338700870769716
14:43:36 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:36 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:36 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:43:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 11:00:00 (before)
                2024-06-18 12:00:00 (after)
14:43:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:39 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:39 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 11:00:00)
14:43:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 11:00:00) in space  (linearNDFast)
14:43:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:39 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.70110064983906 and -65.6613100066289 degrees.
14:43:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.70110064983906 and -65.6613100066289 degrees.
14:43:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:39 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:39 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:39 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:39 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:39 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:39 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:39 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.208839 (min) -0.190773 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.101983 (min) 0.161683 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.48 (min) 3.60239 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.77128 (min) -2.60341 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.78862e-05 (min) -4.75298e-05 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.906 (min) 293.672 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:39 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:39 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.485972, mean: 0.487838, max: 0.488897
14:43:39 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:39 DEBUG   opendrift.models.physics_methods:1058:    min: 3.797827, mean: 3.805111, max: 3.809240
14:43:39 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.797827, mean: 3.805111, max: 3.809240
14:43:39 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:39 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:39 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:39 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.088893 m/s - 0.089160 m/s)
14:43:39 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:39 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:39 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:39 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:39 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:39 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:39 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:39 INFO    opendrift.models.basemodel:1985: 2024-06-18 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
14:43:39 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:39 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:39 DEBUG   opendrift.models.basemodel:2004:               60.185219609249145 <- latitude  -> 60.211428273977184
14:43:39 DEBUG   opendrift.models.basemodel:2009:               4.290027570810803 <- longitude -> 4.330827497084212
14:43:39 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:39 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43: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:43:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 12:00:00 (before)
                2024-06-18 13:00:00 (after)
14:43:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:42 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:42 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 12:00:00)
14:43:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 12:00:00) in space  (linearNDFast)
14:43:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:42 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.70998330767247 and -65.66918338007059 degrees.
14:43:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.70998330767247 and -65.66918338007059 degrees.
14:43:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:42 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:42 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:42 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:42 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:42 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:42 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:42 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.173167 (min) -0.164501 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.12985 (min) 0.174649 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.47161 (min) 4.4899 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.75862 (min) -2.48903 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.59301e-05 (min) -2.53024e-05 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.897 (min) 293.881 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:42 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:42 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.645194, mean: 0.658794, max: 0.683122
14:43:42 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:42 DEBUG   opendrift.models.physics_methods:1058:    min: 4.375973, mean: 4.421796, max: 4.502760
14:43:42 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.375973, mean: 4.421796, max: 4.502760
14:43:42 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:42 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:42 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:42 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.102425 m/s - 0.105393 m/s)
14:43:42 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:42 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:42 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:42 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:42 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:42 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:42 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:42 INFO    opendrift.models.basemodel:1985: 2024-06-18 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
14:43:42 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:42 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:42 DEBUG   opendrift.models.basemodel:2004:               60.18780886021399 <- latitude  -> 60.21527870728116
14:43:42 DEBUG   opendrift.models.basemodel:2009:               4.28475438159577 <- longitude -> 4.325885406372476
14:43:42 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:42 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:42 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:43:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 13:00:00 (before)
                2024-06-18 14:00:00 (after)
14:43:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:47 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 13:00:00)
14:43:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 13:00:00) in space  (linearNDFast)
14:43:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:47 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71525648640963 and -65.67412547103541 degrees.
14:43:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71525648640963 and -65.67412547103541 degrees.
14:43:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:47 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:47 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:47 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:47 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:47 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:47 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.14224 (min) -0.135204 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.133723 (min) 0.172766 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.332 (min) 5.3487 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.96417 (min) -2.83333 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.19398e-06 (min) -6.45918e-07 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.113 (min) 294.098 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:47 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:47 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.901253, mean: 0.908703, max: 0.915560
14:43:47 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:47 DEBUG   opendrift.models.physics_methods:1058:    min: 5.171934, mean: 5.193261, max: 5.212822
14:43:47 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.171934, mean: 5.193261, max: 5.212822
14:43:47 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:47 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:47 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:47 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.121056 m/s - 0.122013 m/s)
14:43:47 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:47 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:47 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:47 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:47 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:47 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:47 INFO    opendrift.models.basemodel:1985: 2024-06-18 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
14:43:47 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:47 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:47 DEBUG   opendrift.models.basemodel:2004:               60.19021967094332 <- latitude  -> 60.219029531484935
14:43:47 DEBUG   opendrift.models.basemodel:2009:               4.2824634849725065 <- longitude -> 4.323964307255598
14:43:47 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:47 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43: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:43:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 14:00:00 (before)
                2024-06-18 15:00:00 (after)
14:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x27x2) for time before (2024-06-18 14:00:00)
14:43:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 14:00:00) in space  (linearNDFast)
14:43:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71754738113731 and -65.67604657506553 degrees.
14:43:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71754738113731 and -65.67604657506553 degrees.
14:43:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.14174 (min) -0.11899 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.125117 (min) 0.182298 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.40441 (min) 5.43204 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.50111 (min) -2.48019 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.18193e-05 (min) 2.24003e-05 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.34 (min) 294.27 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:50 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.870172, mean: 0.874278, max: 0.879759
14:43:50 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:50 DEBUG   opendrift.models.physics_methods:1058:    min: 5.081970, mean: 5.093942, max: 5.109889
14:43:50 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.081970, mean: 5.093942, max: 5.109889
14:43:50 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:50 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:50 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:50 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.118950 m/s - 0.119604 m/s)
14:43:50 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:50 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:50 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:50 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:50 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:50 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:50 INFO    opendrift.models.basemodel:1985: 2024-06-18 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
14:43:50 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:50 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:50 DEBUG   opendrift.models.basemodel:2004:               60.19265605809548 <- latitude  -> 60.223303033026085
14:43:50 DEBUG   opendrift.models.basemodel:2009:               4.280313111496283 <- longitude -> 4.323242966398479
14:43:50 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:50 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43: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:43:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 15:00:00 (before)
                2024-06-18 16:00:00 (after)
14:43:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x26x2) for time before (2024-06-18 15:00:00)
14:43:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 15:00:00) in space  (linearNDFast)
14:43:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71969775620964 and -65.67676791018864 degrees.
14:43:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71969775620964 and -65.67676791018864 degrees.
14:43:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:53 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:53 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.153084 (min) -0.134372 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.123598 (min) 0.168407 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.21524 (min) 5.29572 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.43766 (min) -3.36332 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.89764e-05 (min) 2.93261e-05 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.577 (min) 294.445 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:53 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.959258, mean: 0.964060, max: 0.968396
14:43:53 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:53 DEBUG   opendrift.models.physics_methods:1058:    min: 5.335773, mean: 5.349111, max: 5.361126
14:43:53 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.335773, mean: 5.349111, max: 5.361126
14:43:53 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:53 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:53 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:53 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.124891 m/s - 0.125484 m/s)
14:43:53 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:53 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:53 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:53 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:53 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:53 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:53 INFO    opendrift.models.basemodel:1985: 2024-06-18 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
14:43:53 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:53 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:53 DEBUG   opendrift.models.basemodel:2004:               60.194475757477235 <- latitude  -> 60.22652243352062
14:43:53 DEBUG   opendrift.models.basemodel:2009:               4.277143726897304 <- longitude -> 4.321388640534573
14:43:53 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:53 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43: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:43:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 16:00:00 (before)
                2024-06-18 17:00:00 (after)
14:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:43:57 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x26x2) for time before (2024-06-18 16:00:00)
14:43:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 16:00:00) in space  (linearNDFast)
14:43:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:43:57 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:43:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72286713256625 and -65.67862223043885 degrees.
14:43:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72286713256625 and -65.67862223043885 degrees.
14:43:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:43:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:43:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:43:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:43:57 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:43:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:43:57 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:43:57 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:43:57 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:43:57 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:43:57 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.194446 (min) -0.158965 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.116216 (min) 0.153316 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.29553 (min) 4.61979 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -4.91165 (min) -4.87914 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.40711e-05 (min) 3.44558e-05 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.743 (min) 294.553 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:43:57 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:43:57 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.039536, mean: 1.082227, max: 1.117641
14:43:57 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:43:57 DEBUG   opendrift.models.physics_methods:1058:    min: 5.554557, mean: 5.667340, max: 5.759445
14:43:57 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.554557, mean: 5.667340, max: 5.759445
14:43:57 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:57 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:43:57 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:43:57 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.130012 m/s - 0.134807 m/s)
14:43:57 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:43:57 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:43:57 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:43:57 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:43:57 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:43:57 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:43:57 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:43:57 INFO    opendrift.models.basemodel:1985: 2024-06-18 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
14:43:57 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:43:57 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:43:57 DEBUG   opendrift.models.basemodel:2004:               60.19505852483761 <- latitude  -> 60.228322519385216
14:43:57 DEBUG   opendrift.models.basemodel:2009:               4.270091559817361 <- longitude -> 4.317067386801587
14:43:57 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:43:57 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:43:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:43:57 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:43:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:43:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:43:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:43:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:43:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:43:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 17:00:00 (before)
                2024-06-18 18:00:00 (after)
14:44:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:00 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:00 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x27x2) for time before (2024-06-18 17:00:00)
14:44:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 17:00:00) in space  (linearNDFast)
14:44:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:01 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72991930201255 and -65.6829434800913 degrees.
14:44:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72991930201255 and -65.6829434800913 degrees.
14:44:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:01 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:01 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:01 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:01 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:01 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:01 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:01 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.23483 (min) -0.187287 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0897226 (min) 0.149719 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.09632 (min) 4.22151 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -4.4379 (min) -4.34428 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.35512e-05 (min) 3.4348e-05 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.749 (min) 294.655 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:01 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:01 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.877054, mean: 0.899162, max: 0.922896
14:44:01 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:01 DEBUG   opendrift.models.physics_methods:1058:    min: 5.102028, mean: 5.165888, max: 5.233666
14:44:01 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.102028, mean: 5.165888, max: 5.233666
14:44:01 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:01 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:01 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:01 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.119420 m/s - 0.122501 m/s)
14:44:01 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:01 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:01 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:01 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:01 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:01 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:01 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:01 INFO    opendrift.models.basemodel:1985: 2024-06-18 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated)
14:44:01 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:01 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:01 DEBUG   opendrift.models.basemodel:2004:               60.19514952832891 <- latitude  -> 60.23029124440174
14:44:01 DEBUG   opendrift.models.basemodel:2009:               4.260319039229691 <- longitude -> 4.310228614879477
14:44:01 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:01 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:01 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:44:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 18:00:00 (before)
                2024-06-18 19:00:00 (after)
14:44:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:04 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:04 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x28x2) for time before (2024-06-18 18:00:00)
14:44:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 18:00:00) in space  (linearNDFast)
14:44:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:04 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73969182954391 and -65.68978226358693 degrees.
14:44:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73969182954391 and -65.68978226358693 degrees.
14:44:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:04 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:04 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:04 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:04 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:04 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:04 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:04 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.245722 (min) -0.211835 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0523424 (min) 0.133356 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.3501 (min) 6.41827 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -4.97894 (min) -4.7526 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.20464e-05 (min) 3.28362e-05 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.69 (min) 294.815 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:04 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:04 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.567123, mean: 1.588696, max: 1.601794
14:44:04 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:04 DEBUG   opendrift.models.physics_methods:1058:    min: 6.819950, mean: 6.866720, max: 6.894979
14:44:04 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.819950, mean: 6.866720, max: 6.894979
14:44:04 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:04 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:04 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:04 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.159630 m/s - 0.161386 m/s)
14:44:04 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:04 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:04 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:04 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:04 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:04 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:04 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:04 INFO    opendrift.models.basemodel:1985: 2024-06-18 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated)
14:44:04 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:04 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:04 DEBUG   opendrift.models.basemodel:2004:               60.19376854788983 <- latitude  -> 60.23138141984813
14:44:04 DEBUG   opendrift.models.basemodel:2009:               4.25260419930734 <- longitude -> 4.304802676108625
14:44:04 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:04 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:04 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:44:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 19:00:00 (before)
                2024-06-18 20:00:00 (after)
14:44:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:07 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:07 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x27x2) for time before (2024-06-18 19:00:00)
14:44:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 19:00:00) in space  (linearNDFast)
14:44:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:07 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74740666557777 and -65.69520820479866 degrees.
14:44:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74740666557777 and -65.69520820479866 degrees.
14:44:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:07 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:07 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:07 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:07 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:07 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:07 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:07 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:07 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.248184 (min) -0.235872 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0147635 (min) 0.0998794 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.05531 (min) 5.392 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -5.74197 (min) -5.68111 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.21512e-05 (min) 2.26933e-05 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.549 (min) 294.981 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:07 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:07 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.422647, mean: 1.472556, max: 1.526279
14:44:07 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:07 DEBUG   opendrift.models.physics_methods:1058:    min: 6.497976, mean: 6.610813, max: 6.730488
14:44:07 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.497976, mean: 6.610813, max: 6.730488
14:44:07 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:07 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:07 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:07 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.152094 m/s - 0.157536 m/s)
14:44:07 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:07 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:07 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:07 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:07 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:07 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:07 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:07 INFO    opendrift.models.basemodel:1985: 2024-06-18 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated)
14:44:07 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:07 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:07 DEBUG   opendrift.models.basemodel:2004:               60.19053387900613 <- latitude  -> 60.23093623197468
14:44:07 DEBUG   opendrift.models.basemodel:2009:               4.243046827582045 <- longitude -> 4.296481328419415
14:44:07 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:07 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44: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:44:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 20:00:00 (before)
                2024-06-18 21:00:00 (after)
14:44:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:12 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:12 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 26x28x2) for time before (2024-06-18 20:00:00)
14:44:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 20:00:00) in space  (linearNDFast)
14:44:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:12 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75696404731156 and -65.7035295484037 degrees.
14:44:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75696404731156 and -65.7035295484037 degrees.
14:44:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:12 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:12 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:12 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:12 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:12 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:12 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:12 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.259667 (min) -0.254596 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0161819 (min) 0.0687802 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.3459 (min) 4.46257 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -7.7398 (min) -7.40563 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.41642e-07 (min) 1.26697e-06 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.276 (min) 295.201 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:12 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:12 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.813761, mean: 1.879074, max: 1.963546
14:44:12 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:12 DEBUG   opendrift.models.physics_methods:1058:    min: 7.337020, mean: 7.467757, max: 7.633965
14:44:12 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.337020, mean: 7.467757, max: 7.633965
14:44:12 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:12 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:12 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:12 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.171733 m/s - 0.178683 m/s)
14:44:12 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:12 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:12 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:12 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:12 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:12 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:12 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:12 INFO    opendrift.models.basemodel:1985: 2024-06-18 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated)
14:44:12 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:12 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:12 DEBUG   opendrift.models.basemodel:2004:               60.18522412558566 <- latitude  -> 60.228155780482055
14:44:12 DEBUG   opendrift.models.basemodel:2009:               4.232174723113325 <- longitude -> 4.285551966715495
14:44:12 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:12 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:12 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:44:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 21:00:00 (before)
                2024-06-18 22:00:00 (after)
14:44:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:17 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:17 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 26x28x2) for time before (2024-06-18 21:00:00)
14:44:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 21:00:00) in space  (linearNDFast)
14:44:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:17 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.76783614802063 and -65.71445891781441 degrees.
14:44:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.76783614802063 and -65.71445891781441 degrees.
14:44:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:17 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:17 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:17 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:17 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:17 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:17 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:17 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:17 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.272752 (min) -0.267946 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0282863 (min) 0.0508875 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.99986 (min) 4.0427 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.35244 (min) -8.86309 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.93837e-05 (min) -2.8355e-05 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.9 (min) 295.481 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:17 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:17 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.334484, mean: 2.428998, max: 2.545741
14:44:17 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:17 DEBUG   opendrift.models.physics_methods:1058:    min: 8.323865, mean: 8.490419, max: 8.692340
14:44:17 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.323865, mean: 8.490419, max: 8.692340
14:44:17 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:17 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:17 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:17 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.194831 m/s - 0.203456 m/s)
14:44:17 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:17 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:17 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:17 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:17 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:17 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:17 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:17 INFO    opendrift.models.basemodel:1985: 2024-06-18 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated)
14:44:17 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:17 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:17 DEBUG   opendrift.models.basemodel:2004:               60.178581312503084 <- latitude  -> 60.22375495012143
14:44:17 DEBUG   opendrift.models.basemodel:2009:               4.219654008412103 <- longitude -> 4.273413017992677
14:44:17 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:17 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44: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:44:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:17 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 22:00:00 (before)
                2024-06-18 23:00:00 (after)
14:44:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:22 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:22 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 26x28x2) for time before (2024-06-18 22:00:00)
14:44:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 22:00:00) in space  (linearNDFast)
14:44:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:22 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78035686238233 and -65.72659786354514 degrees.
14:44:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78035686238233 and -65.72659786354514 degrees.
14:44:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:22 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:22 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:22 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:22 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:22 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:22 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:22 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:22 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.299479 (min) -0.288274 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0286595 (min) 0.0542959 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.17869 (min) 3.20424 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.1355 (min) -9.94791 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.9843e-05 (min) -4.87845e-05 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.562 (min) 295.853 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:22 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:22 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.683087, mean: 2.730861, max: 2.778805
14:44:22 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:22 DEBUG   opendrift.models.physics_methods:1058:    min: 8.923742, mean: 9.002787, max: 9.081522
14:44:22 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.923742, mean: 9.002787, max: 9.081522
14:44:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:22 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:22 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:22 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.208872 m/s - 0.212565 m/s)
14:44:22 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:22 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:22 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:22 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:22 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:22 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:22 INFO    opendrift.models.basemodel:1985: 2024-06-18 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
14:44:22 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:22 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:22 DEBUG   opendrift.models.basemodel:2004:               60.17122524926054 <- latitude  -> 60.21895800394811
14:44:22 DEBUG   opendrift.models.basemodel:2009:               4.204440663728233 <- longitude -> 4.258837932261394
14:44:22 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:22 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:22 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:44:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 23:00:00 (before)
                2024-06-19 00:00:00 (after)
14:44:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:26 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:26 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 26x29x2) for time before (2024-06-18 23:00:00)
14:44:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 23:00:00) in space  (linearNDFast)
14:44:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:26 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.79557021224261 and -65.74117295848879 degrees.
14:44:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.79557021224261 and -65.74117295848879 degrees.
14:44:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:26 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:26 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.316842 (min) -0.303726 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0126529 (min) 0.0787274 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.5163 (min) 3.58384 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.3928 (min) -10.3183 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.29919e-05 (min) -5.22869e-05 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.414 (min) 296.379 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:26 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.934995, mean: 2.958268, max: 2.962227
14:44:26 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:26 DEBUG   opendrift.models.physics_methods:1058:    min: 9.333258, mean: 9.370186, max: 9.376457
14:44:26 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.333258, mean: 9.370186, max: 9.376457
14:44:26 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:26 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:26 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:26 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.218457 m/s - 0.219468 m/s)
14:44:26 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:26 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:26 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:26 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:26 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:26 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:26 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:26 INFO    opendrift.models.basemodel:1985: 2024-06-19 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
14:44:26 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:26 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:26 DEBUG   opendrift.models.basemodel:2004:               60.16414683892282 <- latitude  -> 60.21478409681795
14:44:26 DEBUG   opendrift.models.basemodel:2009:               4.188856633041631 <- longitude -> 4.243787863856777
14:44:26 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:26 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:26 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:44:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 00:00:00 (before)
                2024-06-19 01:00:00 (after)
14:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:34 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 27x28x2) for time before (2024-06-19 00:00:00)
14:44:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 00:00:00) in space  (linearNDFast)
14:44:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:34 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8111542365912 and -65.75622303006307 degrees.
14:44:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8111542365912 and -65.75622303006307 degrees.
14:44:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:34 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:34 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:34 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:34 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:34 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:34 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.299494 (min) -0.283986 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0316169 (min) 0.110104 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.5599 (min) 3.63371 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.7717 (min) -11.6569 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.33346e-07 (min) -5.74247e-07 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.537 (min) 296.992 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:34 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:34 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.654461, mean: 3.690555, max: 3.733679
14:44:34 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:34 DEBUG   opendrift.models.physics_methods:1058:    min: 10.414568, mean: 10.465842, max: 10.526841
14:44:34 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.414568, mean: 10.465842, max: 10.526841
14:44:34 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:34 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:34 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:34 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.243767 m/s - 0.246394 m/s)
14:44:34 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:34 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:34 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:34 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:34 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:34 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:34 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:34 INFO    opendrift.models.basemodel:1985: 2024-06-19 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
14:44:34 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:34 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:34 DEBUG   opendrift.models.basemodel:2004:               60.15755984618666 <- latitude  -> 60.210807296866236
14:44:34 DEBUG   opendrift.models.basemodel:2009:               4.174479302416945 <- longitude -> 4.230085397806463
14:44:34 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:34 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:34 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:44:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 01:00:00 (before)
                2024-06-19 02:00:00 (after)
14:44:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 27x29x2) for time before (2024-06-19 01:00:00)
14:44:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 01:00:00) in space  (linearNDFast)
14:44:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.82553157226234 and -65.76992548954162 degrees.
14:44:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.82553157226234 and -65.76992548954162 degrees.
14:44:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:38 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:38 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.266394 (min) -0.252127 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0671418 (min) 0.119835 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.01669 (min) 4.102 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.538 (min) -11.4565 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.07569e-06 (min) -8.69408e-06 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.811 (min) 297.587 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:38 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.625670, mean: 3.648823, max: 3.688818
14:44:38 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:38 DEBUG   opendrift.models.physics_methods:1058:    min: 10.373461, mean: 10.406519, max: 10.463409
14:44:38 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.373461, mean: 10.406519, max: 10.463409
14:44:38 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:38 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:38 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:38 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.242804 m/s - 0.244910 m/s)
14:44:38 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:38 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:38 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:38 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:38 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:38 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:38 INFO    opendrift.models.basemodel:1985: 2024-06-19 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
14:44:38 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:38 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:38 DEBUG   opendrift.models.basemodel:2004:               60.152324637770676 <- latitude  -> 60.2072219360297
14:44:38 DEBUG   opendrift.models.basemodel:2009:               4.162560200144041 <- longitude -> 4.218947082952312
14:44:38 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:38 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:38 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:44:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 02:00:00 (before)
                2024-06-19 03:00:00 (after)
14:44:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 28x28x2) for time before (2024-06-19 02:00:00)
14:44:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 02:00:00) in space  (linearNDFast)
14:44:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8374506854796 and -65.78106381790674 degrees.
14:44:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8374506854796 and -65.78106381790674 degrees.
14:44:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.252187 (min) -0.235398 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.10348 (min) 0.151303 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.48881 (min) 3.54268 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.9641 (min) -11.8806 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.71758e-05 (min) 1.90013e-05 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.112 (min) 298.092 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:43 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.771696, mean: 3.802379, max: 3.829960
14:44:43 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:43 DEBUG   opendrift.models.physics_methods:1058:    min: 10.580299, mean: 10.623238, max: 10.661706
14:44:43 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.580299, mean: 10.623238, max: 10.661706
14:44:43 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:43 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:43 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:43 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.247646 m/s - 0.249551 m/s)
14:44:43 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:43 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:43 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:43 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:43 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:43 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:43 INFO    opendrift.models.basemodel:1985: 2024-06-19 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
14:44:43 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:43 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:43 DEBUG   opendrift.models.basemodel:2004:               60.14793572202545 <- latitude  -> 60.204432064687694
14:44:43 DEBUG   opendrift.models.basemodel:2009:               4.150714770441718 <- longitude -> 4.2082800664420015
14:44:43 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:43 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44: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:44:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 03:00:00 (before)
                2024-06-19 04:00:00 (after)
14:44:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:48 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:48 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 28x29x2) for time before (2024-06-19 03:00:00)
14:44:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 03:00:00) in space  (linearNDFast)
14:44:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:48 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.84929611329008 and -65.7917308272917 degrees.
14:44:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.84929611329008 and -65.7917308272917 degrees.
14:44:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:48 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:48 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:48 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:48 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:48 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:48 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:48 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.248805 (min) -0.232914 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.118606 (min) 0.186417 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.61929 (min) 3.68287 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.8447 (min) -11.6747 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.42781e-05 (min) 2.59802e-05 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.461 (min) 298.56 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:48 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:48 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.675214, mean: 3.737835, max: 3.784812
14:44:48 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:48 DEBUG   opendrift.models.physics_methods:1058:    min: 10.444098, mean: 10.532666, max: 10.598679
14:44:48 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.444098, mean: 10.532666, max: 10.598679
14:44:48 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:48 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:48 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:48 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244458 m/s - 0.248076 m/s)
14:44:48 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:48 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:48 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:48 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:48 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:48 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:48 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:48 INFO    opendrift.models.basemodel:1985: 2024-06-19 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
14:44:48 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:48 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:48 DEBUG   opendrift.models.basemodel:2004:               60.14411265521963 <- latitude  -> 60.20290983639127
14:44:48 DEBUG   opendrift.models.basemodel:2009:               4.13925897198894 <- longitude -> 4.197802719074253
14:44:48 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:48 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44: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:44:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 04:00:00 (before)
                2024-06-19 05:00:00 (after)
14:44:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 27x29x2) for time before (2024-06-19 04:00:00)
14:44:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 04:00:00) in space  (linearNDFast)
14:44:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.86075191551642 and -65.80220819176408 degrees.
14:44:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.86075191551642 and -65.80220819176408 degrees.
14:44:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:53 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:53 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.253029 (min) -0.247144 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.122494 (min) 0.205695 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.49573 (min) 3.57671 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.4855 (min) -11.4345 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.71416e-05 (min) 3.21658e-05 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.822 (min) 299.005 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:53 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.517018, mean: 3.554239, max: 3.559673
14:44:53 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:53 DEBUG   opendrift.models.physics_methods:1058:    min: 10.216846, mean: 10.270764, max: 10.278616
14:44:53 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.216846, mean: 10.270764, max: 10.278616
14:44:53 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:53 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:53 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:53 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.239139 m/s - 0.240584 m/s)
14:44:53 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:53 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:53 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:53 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:53 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:53 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:53 INFO    opendrift.models.basemodel:1985: 2024-06-19 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
14:44:53 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:53 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:53 DEBUG   opendrift.models.basemodel:2004:               60.140662636079966 <- latitude  -> 60.20216571630295
14:44:53 DEBUG   opendrift.models.basemodel:2009:               4.127368854654572 <- longitude -> 4.186203366999965
14:44:53 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:53 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44: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:44:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 05:00:00 (before)
                2024-06-19 06:00:00 (after)
14:44:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:44:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:44:57 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:44:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:44:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:44:57 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 28x29x2) for time before (2024-06-19 05:00:00)
14:44:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 05:00:00) in space  (linearNDFast)
14:44:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:44:57 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:44:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8726420377628 and -65.81380753883164 degrees.
14:44:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8726420377628 and -65.81380753883164 degrees.
14:44:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:44:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:44:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:44:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:44:57 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:44:57 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:44:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:44:57 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:44:57 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:44:57 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:44:57 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:44:57 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.266502 (min) -0.257862 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.127756 (min) 0.210512 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.82047 (min) 2.86255 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.0576 (min) -10.897 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.87534e-05 (min) 3.04626e-05 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 293.23 (min) 299.397 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:44:57 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:44:57 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.122699, mean: 3.162419, max: 3.204258
14:44:57 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:44:57 DEBUG   opendrift.models.physics_methods:1058:    min: 9.627081, mean: 9.688094, max: 9.751991
14:44:57 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.627081, mean: 9.688094, max: 9.751991
14:44:57 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:57 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:44:57 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:44:57 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.225334 m/s - 0.228258 m/s)
14:44:57 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:44:57 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:44:57 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:44:57 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:44:57 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:44:57 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:44:57 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:44:57 INFO    opendrift.models.basemodel:1985: 2024-06-19 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
14:44:57 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:44:57 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:44:57 DEBUG   opendrift.models.basemodel:2004:               60.13764368405986 <- latitude  -> 60.201924581764025
14:44:57 DEBUG   opendrift.models.basemodel:2009:               4.114161782706653 <- longitude -> 4.172620654337943
14:44:57 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:44:57 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:44:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:44:57 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:44:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:44:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:44:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:44:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:44:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:44:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 06:00:00 (before)
                2024-06-19 07:00:00 (after)
14:45:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:04 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:04 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 29x29x2) for time before (2024-06-19 06:00:00)
14:45:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 06:00:00) in space  (linearNDFast)
14:45:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:04 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.88584911396788 and -65.82739025455756 degrees.
14:45:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.88584911396788 and -65.82739025455756 degrees.
14:45:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:04 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:04 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:04 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:04 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:04 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:04 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:04 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.265464 (min) -0.257879 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.13923 (min) 0.210078 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.60752 (min) 2.67109 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.4354 (min) -10.3502 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.01933e-05 (min) 3.22628e-05 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 293.693 (min) 299.72 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:04 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:04 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.802586, mean: 2.831030, max: 2.854382
14:45:04 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:04 DEBUG   opendrift.models.physics_methods:1058:    min: 9.120299, mean: 9.166450, max: 9.204191
14:45:04 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.120299, mean: 9.166450, max: 9.204191
14:45:04 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:04 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:04 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:04 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.213472 m/s - 0.215436 m/s)
14:45:04 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:04 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:04 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:04 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:04 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:04 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:04 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:04 INFO    opendrift.models.basemodel:1985: 2024-06-19 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
14:45:04 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:04 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:04 DEBUG   opendrift.models.basemodel:2004:               60.13539757226644 <- latitude  -> 60.202022775999055
14:45:04 DEBUG   opendrift.models.basemodel:2009:               4.100617345508659 <- longitude -> 4.158880843669113
14:45:04 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:04 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:04 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:45:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 07:00:00 (before)
                2024-06-19 08:00:00 (after)
14:45:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:08 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:08 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 29x29x2) for time before (2024-06-19 07:00:00)
14:45:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 07:00:00) in space  (linearNDFast)
14:45:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:08 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.89939354793033 and -65.84113007501387 degrees.
14:45:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.89939354793033 and -65.84113007501387 degrees.
14:45:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:08 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:08 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:08 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:08 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:08 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:08 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:08 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.246824 (min) -0.240679 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.139494 (min) 0.198876 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.98858 (min) 3.08053 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.90483 (min) -9.76338 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.52269e-05 (min) 2.76863e-05 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.127 (min) 299.893 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:08 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:08 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.564677, mean: 2.613325, max: 2.646846
14:45:08 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:08 DEBUG   opendrift.models.physics_methods:1058:    min: 8.724607, mean: 8.806930, max: 8.863269
14:45:08 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.724607, mean: 8.806930, max: 8.863269
14:45:08 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:08 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:08 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:08 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.204211 m/s - 0.207456 m/s)
14:45:08 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:08 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:08 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:08 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:08 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:08 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:08 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:08 INFO    opendrift.models.basemodel:1985: 2024-06-19 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
14:45:08 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:08 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:08 DEBUG   opendrift.models.basemodel:2004:               60.13350302164706 <- latitude  -> 60.20213835289127
14:45:08 DEBUG   opendrift.models.basemodel:2009:               4.088472207751823 <- longitude -> 4.147118579951334
14:45:08 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:08 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:08 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:45:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 08:00:00 (before)
                2024-06-19 09:00:00 (after)
14:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 29x30x2) for time before (2024-06-19 08:00:00)
14:45:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 08:00:00) in space  (linearNDFast)
14:45:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.91153868148666 and -65.85289232532367 degrees.
14:45:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.91153868148666 and -65.85289232532367 degrees.
14:45:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:14 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:14 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.231496 (min) -0.217131 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.124999 (min) 0.182465 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.13547 (min) 3.23279 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.06592 (min) -8.67529 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.03401e-05 (min) 1.07712e-05 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.434 (min) 299.934 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:14 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.108507, mean: 2.174615, max: 2.264029
14:45:14 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:14 DEBUG   opendrift.models.physics_methods:1058:    min: 7.910740, mean: 8.033594, max: 8.197296
14:45:14 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.910740, mean: 8.033594, max: 8.197296
14:45:14 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:14 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:14 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:14 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.185161 m/s - 0.191868 m/s)
14:45:14 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:14 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:14 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:14 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:14 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:14 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:14 INFO    opendrift.models.basemodel:1985: 2024-06-19 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
14:45:14 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:14 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:14 DEBUG   opendrift.models.basemodel:2004:               60.13168243483828 <- latitude  -> 60.202426914837645
14:45:14 DEBUG   opendrift.models.basemodel:2009:               4.077639545651944 <- longitude -> 4.137108382294909
14:45:14 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:14 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45: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:45:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 09:00:00 (before)
                2024-06-19 10:00:00 (after)
14:45:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:18 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:18 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 30x30x2) for time before (2024-06-19 09:00:00)
14:45:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 09:00:00) in space  (linearNDFast)
14:45:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:18 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.92237134340463 and -65.86290252076641 degrees.
14:45:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.92237134340463 and -65.86290252076641 degrees.
14:45:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:18 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:18 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:18 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:18 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:18 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:18 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:18 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:18 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.215642 (min) -0.18756 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.104515 (min) 0.170251 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.89385 (min) 4.03417 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -8.26763 (min) -7.89559 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.07534e-05 (min) -1.98967e-05 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.635 (min) 299.893 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:18 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:18 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.933924, mean: 1.994847, max: 2.054486
14:45:18 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:18 DEBUG   opendrift.models.physics_methods:1058:    min: 7.576163, mean: 7.694448, max: 7.808744
14:45:18 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.576163, mean: 7.694448, max: 7.808744
14:45:18 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:18 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:18 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:18 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.177330 m/s - 0.182774 m/s)
14:45:18 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:18 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:18 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:18 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:18 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:18 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:18 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:18 INFO    opendrift.models.basemodel:1985: 2024-06-19 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
14:45:18 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:18 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:18 DEBUG   opendrift.models.basemodel:2004:               60.12971601872911 <- latitude  -> 60.20282478457285
14:45:18 DEBUG   opendrift.models.basemodel:2009:               4.068876698649028 <- longitude -> 4.130002227030134
14:45:18 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:18 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45: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:45:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 10:00:00 (before)
                2024-06-19 11:00:00 (after)
14:45:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:23 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:23 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 29x30x2) for time before (2024-06-19 10:00:00)
14:45:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 10:00:00) in space  (linearNDFast)
14:45:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:23 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93113419940934 and -65.8700086882635 degrees.
14:45:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93113419940934 and -65.8700086882635 degrees.
14:45:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:23 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:23 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:23 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:23 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:23 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:23 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:23 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.196517 (min) -0.150698 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0936207 (min) 0.177306 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.27275 (min) 4.37807 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -7.10997 (min) -6.80009 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.11174e-05 (min) -5.06154e-05 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.711 (min) 299.771 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:23 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:23 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.609055, mean: 1.657435, max: 1.692677
14:45:23 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:23 DEBUG   opendrift.models.physics_methods:1058:    min: 6.910590, mean: 7.013651, max: 7.087883
14:45:23 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.910590, mean: 7.013651, max: 7.087883
14:45:23 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:23 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:23 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:23 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.161751 m/s - 0.165901 m/s)
14:45:23 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:23 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:23 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:23 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:23 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:23 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:23 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:23 INFO    opendrift.models.basemodel:1985: 2024-06-19 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
14:45:23 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:23 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:23 DEBUG   opendrift.models.basemodel:2004:               60.128145880453346 <- latitude  -> 60.20415864260082
14:45:23 DEBUG   opendrift.models.basemodel:2009:               4.061801952935204 <- longitude -> 4.12577529288954
14:45:23 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:23 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45: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:45:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 11:00:00 (before)
                2024-06-19 12:00:00 (after)
14:45:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 30x31x2) for time before (2024-06-19 11:00:00)
14:45:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 11:00:00) in space  (linearNDFast)
14:45:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93820893870638 and -65.87423562571865 degrees.
14:45:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93820893870638 and -65.87423562571865 degrees.
14:45:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:28 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:28 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.167694 (min) -0.10936 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0943061 (min) 0.208381 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.50634 (min) 4.51827 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -5.96139 (min) -5.48336 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.15957e-05 (min) -6.02988e-05 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.722 (min) 299.671 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:28 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.240866, mean: 1.310978, max: 1.374977
14:45:28 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:28 DEBUG   opendrift.models.physics_methods:1058:    min: 6.068650, mean: 6.237479, max: 6.388182
14:45:28 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.068650, mean: 6.237479, max: 6.388182
14:45:28 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:28 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:28 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:28 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142045 m/s - 0.149524 m/s)
14:45:28 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:28 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:28 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:28 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:28 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:28 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:28 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:28 INFO    opendrift.models.basemodel:1985: 2024-06-19 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
14:45:28 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:28 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:28 DEBUG   opendrift.models.basemodel:2004:               60.127340296306855 <- latitude  -> 60.20734763928573
14:45:28 DEBUG   opendrift.models.basemodel:2009:               4.056774592173609 <- longitude -> 4.124535718742458
14:45:28 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:28 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45: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:45:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 12:00:00 (before)
                2024-06-19 13:00:00 (after)
14:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:33 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 31x31x2) for time before (2024-06-19 12:00:00)
14:45:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 12:00:00) in space  (linearNDFast)
14:45:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:33 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.94323629681543 and -65.87547519770638 degrees.
14:45:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.94323629681543 and -65.87547519770638 degrees.
14:45:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:33 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:33 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:33 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:33 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:33 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.12521 (min) -0.0708357 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.103331 (min) 0.244403 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.94226 (min) 4.9862 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -4.74485 (min) -4.27926 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.74787e-05 (min) -4.67896e-05 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.705 (min) 299.629 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:33 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:33 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.062087, mean: 1.114024, max: 1.154712
14:45:33 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:33 DEBUG   opendrift.models.physics_methods:1058:    min: 5.614481, mean: 5.749963, max: 5.854186
14:45:33 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.614481, mean: 5.749963, max: 5.854186
14:45:33 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:33 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:33 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:33 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.131414 m/s - 0.137025 m/s)
14:45:33 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:33 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:33 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:33 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:33 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:33 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:33 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:33 INFO    opendrift.models.basemodel:1985: 2024-06-19 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
14:45:33 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:33 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:33 DEBUG   opendrift.models.basemodel:2004:               60.127612590780714 <- latitude  -> 60.21247885715796
14:45:33 DEBUG   opendrift.models.basemodel:2009:               4.05511904570878 <- longitude -> 4.126349345726042
14:45:33 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:33 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:33 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:45:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 13:00:00 (before)
                2024-06-19 14:00:00 (after)
14:45:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 31x32x2) for time before (2024-06-19 13:00:00)
14:45:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 13:00:00) in space  (linearNDFast)
14:45:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.944891841605 and -65.87366156174946 degrees.
14:45:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.944891841605 and -65.87366156174946 degrees.
14:45:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:38 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:38 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0857213 (min) -0.0419641 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.124012 (min) 0.27628 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.09825 (min) 5.17308 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.44858 (min) -2.72592 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.12476e-05 (min) -1.99418e-05 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.676 (min) 299.674 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:38 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.839951, mean: 0.895885, max: 0.931967
14:45:38 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:38 DEBUG   opendrift.models.physics_methods:1058:    min: 4.992942, mean: 5.156283, max: 5.259321
14:45:38 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.992942, mean: 5.156283, max: 5.259321
14:45:38 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:38 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:38 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:38 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.116866 m/s - 0.123101 m/s)
14:45:38 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:38 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:38 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:38 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:38 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:38 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:38 INFO    opendrift.models.basemodel:1985: 2024-06-19 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
14:45:38 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:38 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:38 DEBUG   opendrift.models.basemodel:2004:               60.12939084533397 <- latitude  -> 60.21964398795562
14:45:38 DEBUG   opendrift.models.basemodel:2009:               4.056265015796481 <- longitude -> 4.130235369490547
14:45:38 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:38 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:38 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:45:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 14:00:00 (before)
                2024-06-19 15:00:00 (after)
14:45:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 31x32x2) for time before (2024-06-19 14:00:00)
14:45:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 14:00:00) in space  (linearNDFast)
14:45:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9437458739329 and -65.86977555013081 degrees.
14:45:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9437458739329 and -65.86977555013081 degrees.
14:45:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0628774 (min) -0.0235868 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.150264 (min) 0.318496 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.3139 (min) 5.34364 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -1.45736 (min) -0.683495 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.28793e-06 (min) 7.57059e-06 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.685 (min) 299.785 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:44 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.713932, mean: 0.728576, max: 0.746890
14:45:44 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:44 DEBUG   opendrift.models.physics_methods:1058:    min: 4.603180, mean: 4.650099, max: 4.708234
14:45:44 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.603180, mean: 4.650099, max: 4.708234
14:45:44 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:44 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:44 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:44 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107743 m/s - 0.110202 m/s)
14:45:44 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:44 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:44 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:44 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:44 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:44 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:44 INFO    opendrift.models.basemodel:1985: 2024-06-19 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
14:45:44 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:44 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:44 DEBUG   opendrift.models.basemodel:2004:               60.13330414670705 <- latitude  -> 60.22949308129607
14:45:44 DEBUG   opendrift.models.basemodel:2009:               4.0591231891324355 <- longitude -> 4.1355918000352165
14:45:44 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:44 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45: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:45:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 15:00:00 (before)
                2024-06-19 16:00:00 (after)
14:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 32x32x2) for time before (2024-06-19 15:00:00)
14:45:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 15:00:00) in space  (linearNDFast)
14:45:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.94088769891542 and -65.86441910687395 degrees.
14:45:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.94088769891542 and -65.86441910687395 degrees.
14:45:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:49 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:49 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.054148 (min) -0.0156247 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.172266 (min) 0.350853 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.68102 (min) 5.71284 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 0.0889425 (min) 1.0472 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.61839e-05 (min) 2.66589e-05 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.78 (min) 299.915 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:49 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.801240, mean: 0.804522, max: 0.823489
14:45:49 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:49 DEBUG   opendrift.models.physics_methods:1058:    min: 4.876531, mean: 4.886498, max: 4.943773
14:45:49 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.876531, mean: 4.886498, max: 4.943773
14:45:49 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:49 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:49 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:49 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.114142 m/s - 0.115715 m/s)
14:45:49 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:49 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:49 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:49 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:49 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:49 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:49 INFO    opendrift.models.basemodel:1985: 2024-06-19 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
14:45:49 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:49 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:49 DEBUG   opendrift.models.basemodel:2004:               60.13892763807888 <- latitude  -> 60.2415060460071
14:45:49 DEBUG   opendrift.models.basemodel:2009:               4.063000348876874 <- longitude -> 4.141973608787871
14:45:49 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:49 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45: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:45:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 16:00:00 (before)
                2024-06-19 17:00:00 (after)
14:45:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:54 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:54 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 33x33x2) for time before (2024-06-19 16:00:00)
14:45:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 16:00:00) in space  (linearNDFast)
14:45:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:54 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9370105217128 and -65.85803731437207 degrees.
14:45:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9370105217128 and -65.85803731437207 degrees.
14:45:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:54 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:54 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:54 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:54 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:54 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:54 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:54 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:54 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0677887 (min) -0.0269125 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.181641 (min) 0.34556 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.69046 (min) 5.82076 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.96929 (min) 2.74151 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.27646e-05 (min) 3.50592e-05 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.954 (min) 299.991 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:54 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:54 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.891983, mean: 0.944168, max: 1.018368
14:45:54 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:54 DEBUG   opendrift.models.physics_methods:1058:    min: 5.145266, mean: 5.293252, max: 5.497711
14:45:54 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.145266, mean: 5.293252, max: 5.497711
14:45:54 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:54 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:54 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:54 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120432 m/s - 0.128681 m/s)
14:45:54 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:54 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:54 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:54 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:54 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:54 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:54 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:54 INFO    opendrift.models.basemodel:1985: 2024-06-19 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
14:45:54 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:54 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:54 DEBUG   opendrift.models.basemodel:2004:               60.146069186940565 <- latitude  -> 60.254442840617195
14:45:54 DEBUG   opendrift.models.basemodel:2009:               4.066162082703959 <- longitude -> 4.1476047624825485
14:45:54 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:54 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45: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:45:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:54 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 17:00:00 (before)
                2024-06-19 18:00:00 (after)
14:45:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:45:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:45:59 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:45:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:45:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:45:59 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 34x33x2) for time before (2024-06-19 17:00:00)
14:45:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 17:00:00) in space  (linearNDFast)
14:45:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:45:59 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:45:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93384879422732 and -65.85240614562522 degrees.
14:45:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93384879422732 and -65.85240614562522 degrees.
14:45:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:45:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:45:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:45:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:45:59 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:45:59 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:45:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:45:59 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:45:59 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:45:59 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:45:59 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:45:59 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0888876 (min) -0.0596333 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.183656 (min) 0.327129 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.6571 (min) 5.79512 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.41519 (min) 4.28935 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.69776e-05 (min) 3.98075e-05 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.257 (min) 299.97 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:45:59 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:45:59 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.113074, mean: 1.171718, max: 1.239872
14:45:59 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:45:59 DEBUG   opendrift.models.physics_methods:1058:    min: 5.747666, mean: 5.896861, max: 6.066217
14:45:59 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.747666, mean: 5.896861, max: 6.066217
14:45:59 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:59 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:45:59 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:45:59 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.134532 m/s - 0.141988 m/s)
14:45:59 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:45:59 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:45:59 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:45:59 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:45:59 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:45:59 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:45:59 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:45:59 INFO    opendrift.models.basemodel:1985: 2024-06-19 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
14:45:59 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:45:59 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:45:59 DEBUG   opendrift.models.basemodel:2004:               60.154210148343296 <- latitude  -> 60.267784279231435
14:45:59 DEBUG   opendrift.models.basemodel:2009:               4.06774013455322 <- longitude -> 4.151252270830983
14:45:59 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:45:59 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:45:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:45: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:45:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:45:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:45:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:45:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:45:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:45:59 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 18:00:00 (before)
                2024-06-19 19:00:00 (after)
14:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 34x34x2) for time before (2024-06-19 18:00:00)
14:46:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 18:00:00) in space  (linearNDFast)
14:46:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93227073703754 and -65.84875863705469 degrees.
14:46:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93227073703754 and -65.84875863705469 degrees.
14:46:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:03 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:03 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.116131 (min) -0.0919344 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.19446 (min) 0.296818 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.16948 (min) 5.28241 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.87974 (min) 5.53865 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.14349e-05 (min) 4.39032e-05 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.72 (min) 299.906 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:03 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.243169, mean: 1.341208, max: 1.440585
14:46:03 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:03 DEBUG   opendrift.models.physics_methods:1058:    min: 6.074278, mean: 6.308665, max: 6.538815
14:46:03 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.074278, mean: 6.308665, max: 6.538815
14:46:03 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:04 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:04 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:04 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142176 m/s - 0.153050 m/s)
14:46:04 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:04 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:04 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:04 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:04 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:04 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:04 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:04 INFO    opendrift.models.basemodel:1985: 2024-06-19 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
14:46:04 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:04 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:04 DEBUG   opendrift.models.basemodel:2004:               60.16364660591744 <- latitude  -> 60.28095357393545
14:46:04 DEBUG   opendrift.models.basemodel:2009:               4.067056351131725 <- longitude -> 4.151897558622366
14:46:04 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:04 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:04 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:46:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:46:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:46:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 19:00:00 (before)
                2024-06-19 20:00:00 (after)
14:46:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:08 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:08 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 34x34x2) for time before (2024-06-19 19:00:00)
14:46:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 19:00:00) in space  (linearNDFast)
14:46:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:08 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93295450870818 and -65.84811334377427 degrees.
14:46:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93295450870818 and -65.84811334377427 degrees.
14:46:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:08 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:08 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:08 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:08 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:08 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:08 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:08 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.143843 (min) -0.105577 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.193994 (min) 0.288387 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.01909 (min) 5.25348 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.8883 (min) 6.33628 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.77934e-05 (min) 3.86812e-05 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.413 (min) 300.146 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:08 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:08 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.472639, mean: 1.563277, max: 1.666588
14:46:08 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:08 DEBUG   opendrift.models.physics_methods:1058:    min: 6.611162, mean: 6.811122, max: 7.033050
14:46:08 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.611162, mean: 6.811122, max: 7.033050
14:46:08 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:08 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:08 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:08 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.154743 m/s - 0.164618 m/s)
14:46:08 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:08 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:08 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:08 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:08 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:08 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:08 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:08 INFO    opendrift.models.basemodel:1985: 2024-06-19 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
14:46:08 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:08 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:08 DEBUG   opendrift.models.basemodel:2004:               60.173719708239496 <- latitude  -> 60.29436577814097
14:46:08 DEBUG   opendrift.models.basemodel:2009:               4.06453358006553 <- longitude -> 4.151350098350986
14:46:08 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:08 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:08 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:46:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:46:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:46:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 20:00:00 (before)
                2024-06-19 21:00:00 (after)
14:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 35x35x2) for time before (2024-06-19 20:00:00)
14:46:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 20:00:00) in space  (linearNDFast)
14:46:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93547728268898 and -65.8486607958512 degrees.
14:46:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93547728268898 and -65.8486607958512 degrees.
14:46:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:14 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:14 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.14762 (min) -0.106198 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.176116 (min) 0.2914 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.44322 (min) 5.62742 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.70293 (min) 7.16513 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.06266e-05 (min) 2.10484e-05 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.173 (min) 300.413 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:14 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.834126, mean: 1.936015, max: 2.038441
14:46:14 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:14 DEBUG   opendrift.models.physics_methods:1058:    min: 7.378095, mean: 7.579876, max: 7.778192
14:46:14 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.378095, mean: 7.579876, max: 7.778192
14:46:14 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:14 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:14 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:14 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.172694 m/s - 0.182059 m/s)
14:46:14 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:14 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:14 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:14 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:14 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:14 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:14 INFO    opendrift.models.basemodel:1985: 2024-06-19 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
14:46:14 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:14 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:14 DEBUG   opendrift.models.basemodel:2004:               60.18374156536052 <- latitude  -> 60.30841087774192
14:46:14 DEBUG   opendrift.models.basemodel:2009:               4.0622343317533565 <- longitude -> 4.151475939218366
14:46:14 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:14 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:46:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:46:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 21:00:00 (before)
                2024-06-19 22:00:00 (after)
14:46:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:18 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:18 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 36x35x2) for time before (2024-06-19 21:00:00)
14:46:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 21:00:00) in space  (linearNDFast)
14:46:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:18 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9377765382815 and -65.84853495164798 degrees.
14:46:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9377765382815 and -65.84853495164798 degrees.
14:46:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:18 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:18 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:18 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:18 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:18 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:18 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:18 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:18 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.139254 (min) -0.100686 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.166217 (min) 0.301373 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.52687 (min) 5.60419 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.69515 (min) 8.17099 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.02142e-05 (min) -9.55468e-06 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.792 (min) 300.647 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:18 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:18 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.208134, mean: 2.301770, max: 2.408610
14:46:18 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:18 DEBUG   opendrift.models.physics_methods:1058:    min: 8.095475, mean: 8.265056, max: 8.454984
14:46:18 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.095475, mean: 8.265056, max: 8.454984
14:46:18 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:18 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:18 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:18 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.189485 m/s - 0.197900 m/s)
14:46:18 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:18 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:18 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:18 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:18 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:18 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:18 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:18 INFO    opendrift.models.basemodel:1985: 2024-06-19 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
14:46:18 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:18 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:18 DEBUG   opendrift.models.basemodel:2004:               60.19409752932023 <- latitude  -> 60.3234282594462
14:46:18 DEBUG   opendrift.models.basemodel:2009:               4.060696000972672 <- longitude -> 4.152116272424659
14:46:18 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:18 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
14:46:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
14:46:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 22:00:00 (before)
                2024-06-19 23:00:00 (after)
14:46:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:24 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:24 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 35x36x2) for time before (2024-06-19 22:00:00)
14:46:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 22:00:00) in space  (linearNDFast)
14:46:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:24 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93931485513963 and -65.84789461477476 degrees.
14:46:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93931485513963 and -65.84789461477476 degrees.
14:46:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:24 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:24 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:24 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:24 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:24 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:24 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.13052 (min) -0.0946464 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.167651 (min) 0.326375 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.539 (min) 5.58594 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.27417 (min) 8.83892 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.38738e-05 (min) -4.2366e-05 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.243 (min) 300.78 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:24 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.440408, mean: 2.524000, max: 2.676651
14:46:24 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:24 DEBUG   opendrift.models.physics_methods:1058:    min: 8.510613, mean: 8.654788, max: 8.913032
14:46:24 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.510613, mean: 8.654788, max: 8.913032
14:46:24 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:24 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:24 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:24 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.199202 m/s - 0.208621 m/s)
14:46:24 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:24 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:24 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:24 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:24 DEBUG   opendrift.models.basemodel:2100: Cleaning up
14:46:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:24 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:24 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:24 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:24 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:24 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:24 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Run to Mode.Result
14:46:24 DEBUG   opendrift.models.oceandrift:115: No machine learning correction available.
14:46:24 DEBUG   opendrift.config:168: Adding 50 config items from environment
14:46:24 DEBUG   opendrift.config:168: Adding 5 config items from environment
14:46:24 DEBUG   opendrift.config:168: Adding 17 config items from __init__
14:46:24 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
14:46:24 DEBUG   opendrift.config:168: Adding 5 config items from __init__
14:46:24 INFO    opendrift.models.basemodel:507: OpenDriftSimulation initialised (version 1.11.5 / v1.11.5-4-g5577ceb)
14:46:24 DEBUG   opendrift.config:168: Adding 15 config items from oceandrift
14:46:24 DEBUG   opendrift.config:178:   Overwriting config item seed:z
14:46:24 DEBUG   opendrift.readers.reader_lazy:38: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:24 DEBUG   opendrift.models.basemodel.environment:328: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:24 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:46:24 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:46:24 DEBUG   opendrift.models.basemodel.environment:328: Added reader global_landmask
14:46:24 INFO    opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
14:46:24 INFO    opendrift.models.basemodel.environment:248:    x_sea_water_velocity: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    y_sea_water_velocity: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_height: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    x_wind: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    y_wind: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    upward_sea_water_velocity: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    ocean_vertical_diffusivity: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_significant_height: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_to_direction: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_significant_height: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_to_direction: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_mean_period: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_significant_height: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    surface_downward_x_stress: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    surface_downward_y_stress: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    turbulent_kinetic_energy: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    turbulent_generic_length_scale: 0.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    ocean_mixed_layer_thickness: 50.000000
14:46:24 INFO    opendrift.models.basemodel.environment:248:    sea_floor_depth_below_sea_level: 10000.000000
14:46:24 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Config to Mode.Ready
14:46:24 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Ready to Mode.Run
14:46:24 DEBUG   opendrift.models.basemodel:1725:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.5
  Platform: Linux, 5.15.0-1057-aws
  68.56774520874023 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
  Python version 3.11.6 | packaged by conda-forge | (main, Oct  3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------

14:46:24 DEBUG   opendrift.models.basemodel:1739: No output file is specified, neglecting export_buffer_length
14:46:24 DEBUG   opendrift.models.basemodel:1857: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2024-06-17 00:00:00 to 2024-06-19 23:00:00)
14:46:24 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:46:24 DEBUG   opendrift.models.basemodel.environment:180:    Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
14:46:24 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
14:46:24 INFO    opendrift.models.basemodel:885: Using existing reader for land_binary_mask
14:46:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:24 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:24 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:24 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:24 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:24 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:24 INFO    opendrift.models.basemodel:896: All points are in ocean
14:46:24 DEBUG   opendrift.models.basemodel:840: to be seeded: 1000, already seeded 0
14:46:24 DEBUG   opendrift.models.basemodel:858: Released 1000 new elements.
14:46:24 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:24 INFO    opendrift.models.basemodel:1985: 2024-06-17 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
14:46:24 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:24 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:24 DEBUG   opendrift.models.basemodel:2004:               59.99731 <- latitude  -> 60.002846
14:46:24 DEBUG   opendrift.models.basemodel:2009:               4.4945407 <- longitude -> 4.504945
14:46:24 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:24 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:24 DEBUG   opendrift.models.basemodel.environment:581: Variables not covered by any reader: ['surface_downward_x_stress', 'x_wind', 'sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'sea_surface_wave_stokes_drift_y_velocity', 'turbulent_generic_length_scale', 'y_sea_water_velocity', 'turbulent_kinetic_energy', 'ocean_mixed_layer_thickness', 'sea_surface_wave_stokes_drift_x_velocity', 'x_sea_water_velocity', 'sea_floor_depth_below_sea_level', 'y_wind', 'surface_downward_y_stress', 'sea_surface_height', 'sea_surface_wave_period_at_variance_spectral_density_maximum', 'ocean_vertical_diffusivity', 'sea_surface_wave_significant_height', 'upward_sea_water_velocity']
14:46:24 DEBUG   opendrift.readers.reader_lazy:57: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:24 INFO    opendrift.readers.reader_netCDF_CF_generic:102: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:26 DEBUG   opendrift.readers.reader_netCDF_CF_generic:119: Finding coordinate variables.
14:46:26 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:46:26 INFO    opendrift.readers.reader_netCDF_CF_generic:314: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
14:46:26 DEBUG   opendrift.readers.reader_netCDF_CF_generic:340: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
14:46:26 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:46:26 DEBUG   opendrift.readers.basereader:176: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
14:46:26 DEBUG   opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
14:46:26 DEBUG   opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
14:46:26 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:46:26 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:46:26 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:26 DEBUG   opendrift.readers.reader_lazy:72: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:26 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:46:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:26 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:46:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:46:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 00:00:00 (before)
                2024-06-17 01:00:00 (after)
14:46:27 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:27 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-17 00:00:00)
14:46:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 00:00:00) in space  (linearNDFast)
14:46:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:27 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
14:46:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
14:46:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:27 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:27 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:27 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:27 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:27 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.159841 (min) -0.157893 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0463461 (min) -0.0427234 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.76937 (min) -3.71256 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -1.50223 (min) -1.39523 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.40987e-08 (min) 4.68939e-08 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:27 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:27 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.393628, mean: 0.395894, max: 0.398156
14:46:27 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:27 DEBUG   opendrift.models.physics_methods:1058:    min: 3.418005, mean: 3.427828, max: 3.437608
14:46:27 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.418005, mean: 3.427828, max: 3.437608
14:46:27 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:27 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:27 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:27 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.080003 m/s - 0.080462 m/s)
14:46:27 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:27 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:27 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:27 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:27 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:27 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:27 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:27 INFO    opendrift.models.basemodel:1985: 2024-06-17 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
14:46:27 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:27 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:27 DEBUG   opendrift.models.basemodel:2004:               59.994890813880914 <- latitude  -> 60.00050231741898
14:46:27 DEBUG   opendrift.models.basemodel:2009:               4.479384344870017 <- longitude -> 4.48995016105112
14:46:27 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:27 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:27 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:27 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:27 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:46:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:46:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 01:00:00 (before)
                2024-06-17 02:00:00 (after)
14:46:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-17 01:00:00)
14:46:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 01:00:00) in space  (linearNDFast)
14:46:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5206265855467 and -65.5100607619699 degrees.
14:46:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5206265855467 and -65.5100607619699 degrees.
14:46:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:28 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:28 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.176318 (min) -0.172394 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0525477 (min) 0.0567314 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.41327 (min) -5.3556 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -1.31236 (min) -1.24244 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.0232e-05 (min) 2.04417e-05 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.026 (min) 298.295 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:28 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.746607, mean: 0.753798, max: 0.760684
14:46:28 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:28 DEBUG   opendrift.models.physics_methods:1058:    min: 4.707340, mean: 4.729950, max: 4.751509
14:46:28 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.707340, mean: 4.729950, max: 4.751509
14:46:28 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:28 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:28 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:28 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110181 m/s - 0.111215 m/s)
14:46:28 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:28 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:28 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:28 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:28 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:28 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:28 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:28 INFO    opendrift.models.basemodel:1985: 2024-06-17 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
14:46:28 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:28 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:28 DEBUG   opendrift.models.basemodel:2004:               59.99581372945408 <- latitude  -> 60.001455024853726
14:46:28 DEBUG   opendrift.models.basemodel:2009:               4.461063190151989 <- longitude -> 4.471870278256098
14:46:28 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:28 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:28 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:46:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:46:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 02:00:00 (before)
                2024-06-17 03:00:00 (after)
14:46:31 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:31 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 02:00:00)
14:46:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 02:00:00) in space  (linearNDFast)
14:46:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:31 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5389477337296 and -65.52814064074563 degrees.
14:46:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5389477337296 and -65.52814064074563 degrees.
14:46:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:31 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:31 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:31 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:31 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:31 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.165921 (min) -0.161117 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.149996 (min) 0.157499 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.66158 (min) -4.63355 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -1.00522 (min) -0.996894 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.41737e-05 (min) 1.48982e-05 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.848 (min) 298.068 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:31 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:31 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.552605, mean: 0.555618, max: 0.559425
14:46:31 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:31 DEBUG   opendrift.models.physics_methods:1058:    min: 4.049830, mean: 4.060857, max: 4.074744
14:46:31 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.049830, mean: 4.060857, max: 4.074744
14:46:31 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:31 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:31 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:31 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.094792 m/s - 0.095375 m/s)
14:46:31 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:31 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:31 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:31 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:31 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:31 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:31 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:31 INFO    opendrift.models.basemodel:1985: 2024-06-17 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
14:46:31 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:31 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:31 DEBUG   opendrift.models.basemodel:2004:               60.00010944432448 <- latitude  -> 60.005725879604086
14:46:31 DEBUG   opendrift.models.basemodel:2009:               4.444416845246142 <- longitude -> 4.455401102445528
14:46:31 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:31 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:31 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:31 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:31 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:31 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:46:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:46:31 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 03:00:00 (before)
                2024-06-17 04:00:00 (after)
14:46:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-17 03:00:00)
14:46:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 03:00:00) in space  (linearNDFast)
14:46:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5555940766975 and -65.54460982494209 degrees.
14:46:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5555940766975 and -65.54460982494209 degrees.
14:46:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:35 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:35 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.133435 (min) -0.125701 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.23 (min) 0.24215 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.18274 (min) -5.1173 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 0.701659 (min) 0.725031 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.89865e-05 (min) 1.92809e-05 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.901 (min) 298.061 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:35 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.656380, mean: 0.664701, max: 0.673680
14:46:35 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:35 DEBUG   opendrift.models.physics_methods:1058:    min: 4.413745, mean: 4.441622, max: 4.471534
14:46:35 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.413745, mean: 4.441622, max: 4.471534
14:46:35 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:35 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:35 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:35 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103309 m/s - 0.104662 m/s)
14:46:35 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:35 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:35 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:35 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:35 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:35 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:35 INFO    opendrift.models.basemodel:1985: 2024-06-17 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
14:46:35 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:35 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:35 DEBUG   opendrift.models.basemodel:2004:               60.00823065773456 <- latitude  -> 60.01371622319992
14:46:35 DEBUG   opendrift.models.basemodel:2009:               4.429154930724026 <- longitude -> 4.440607407406245
14:46:35 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:35 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 04:00:00 (before)
                2024-06-17 05:00:00 (after)
14:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-06-17 04:00:00)
14:46:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 04:00:00) in space  (linearNDFast)
14:46:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57085599236443 and -65.55940350335824 degrees.
14:46:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57085599236443 and -65.55940350335824 degrees.
14:46:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:36 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:36 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0938635 (min) -0.084706 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.269454 (min) 0.286548 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.90204 (min) -4.86904 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.51862 (min) 1.56146 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.65829e-05 (min) 1.67835e-05 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.111 (min) 298.227 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:36 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.640033, mean: 0.645334, max: 0.650165
14:46:36 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:36 DEBUG   opendrift.models.physics_methods:1058:    min: 4.358437, mean: 4.376446, max: 4.392800
14:46:36 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.358437, mean: 4.376446, max: 4.392800
14:46:36 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:36 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:36 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:36 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.102015 m/s - 0.102819 m/s)
14:46:36 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:36 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:36 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:36 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:36 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:36 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:36 INFO    opendrift.models.basemodel:1985: 2024-06-17 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
14:46:36 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:36 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:36 DEBUG   opendrift.models.basemodel:2004:               60.01816326753257 <- latitude  -> 60.02360674041583
14:46:36 DEBUG   opendrift.models.basemodel:2009:               4.4167697338771905 <- longitude -> 4.428821595464989
14:46:36 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:36 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 05:00:00 (before)
                2024-06-17 06:00:00 (after)
14:46:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 05:00:00)
14:46:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 05:00:00) in space  (linearNDFast)
14:46:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58324118111427 and -65.5711893363376 degrees.
14:46:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58324118111427 and -65.5711893363376 degrees.
14:46:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:38 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:38 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0394843 (min) -0.0325483 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.292998 (min) 0.311296 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.02741 (min) -3.99179 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.1507 (min) 3.17085 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.61415e-05 (min) 1.64155e-05 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.279 (min) 298.366 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:38 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.636538, mean: 0.641246, max: 0.645732
14:46:38 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:38 DEBUG   opendrift.models.physics_methods:1058:    min: 4.346521, mean: 4.362562, max: 4.377798
14:46:38 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.346521, mean: 4.362562, max: 4.377798
14:46:38 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:38 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:38 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:38 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101736 m/s - 0.102468 m/s)
14:46:38 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:38 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:38 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:38 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:38 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:38 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:38 INFO    opendrift.models.basemodel:1985: 2024-06-17 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
14:46:38 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:38 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:38 DEBUG   opendrift.models.basemodel:2004:               60.029887897777115 <- latitude  -> 60.03530850803959
14:46:38 DEBUG   opendrift.models.basemodel:2009:               4.409074223128471 <- longitude -> 4.4214790025139665
14:46:38 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:38 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 06:00:00 (before)
                2024-06-17 07:00:00 (after)
14:46:39 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:39 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 06:00:00)
14:46:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 06:00:00) in space  (linearNDFast)
14:46:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:39 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59093670638701 and -65.57853191012421 degrees.
14:46:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59093670638701 and -65.57853191012421 degrees.
14:46:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:39 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:39 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:39 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:39 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:39 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0461706 (min) 0.0516826 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.272162 (min) 0.291128 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.3652 (min) -3.32847 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.70657 (min) 3.77032 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.41873e-06 (min) 8.53592e-06 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.096 (min) 298.255 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:39 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:39 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.611234, mean: 0.619691, max: 0.627345
14:46:39 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:39 DEBUG   opendrift.models.physics_methods:1058:    min: 4.259251, mean: 4.288606, max: 4.315020
14:46:39 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.259251, mean: 4.288606, max: 4.315020
14:46:39 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:39 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:39 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:39 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.099693 m/s - 0.100999 m/s)
14:46:39 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:39 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:39 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:39 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:39 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:39 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:39 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:39 INFO    opendrift.models.basemodel:1985: 2024-06-17 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
14:46:39 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:39 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:39 DEBUG   opendrift.models.basemodel:2004:               60.04135183232762 <- latitude  -> 60.046862826709614
14:46:39 DEBUG   opendrift.models.basemodel:2009:               4.407929932172579 <- longitude -> 4.420387003622495
14:46:39 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:39 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:39 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:39 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 07:00:00 (before)
                2024-06-17 08:00:00 (after)
14:46:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-06-17 07:00:00)
14:46:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 07:00:00) in space  (linearNDFast)
14:46:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59208097762406 and -65.57962391251405 degrees.
14:46:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59208097762406 and -65.57962391251405 degrees.
14:46:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:40 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:40 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.117697 (min) 0.127349 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.212662 (min) 0.23374 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.98475 (min) -1.95711 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.94189 (min) 5.95104 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.89515e-06 (min) -5.77152e-06 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.557 (min) 297.854 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:40 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.964143, mean: 0.965498, max: 0.966919
14:46:40 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:40 DEBUG   opendrift.models.physics_methods:1058:    min: 5.349342, mean: 5.353098, max: 5.357037
14:46:40 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.349342, mean: 5.353098, max: 5.357037
14:46:40 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:40 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:40 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:40 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.125208 m/s - 0.125388 m/s)
14:46:40 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:40 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:40 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:40 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:40 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:40 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:40 INFO    opendrift.models.basemodel:1985: 2024-06-17 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
14:46:40 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:40 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:40 DEBUG   opendrift.models.basemodel:2004:               60.052191643903754 <- latitude  -> 60.05798814435113
14:46:40 DEBUG   opendrift.models.basemodel:2009:               4.413001964601836 <- longitude -> 4.4260276619226735
14:46:40 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:40 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 08:00:00 (before)
                2024-06-17 09:00:00 (after)
14:46:42 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:42 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 08:00:00)
14:46:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 08:00:00) in space  (linearNDFast)
14:46:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:42 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5870089485577 and -65.57398325143753 degrees.
14:46:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5870089485577 and -65.57398325143753 degrees.
14:46:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:42 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:42 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:42 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:42 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:42 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.162162 (min) 0.177166 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.109803 (min) 0.136702 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.67085 (min) -1.63725 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.6954 (min) 4.82114 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.78415e-05 (min) -2.77538e-05 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.853 (min) 297.355 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:42 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:42 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.611028, mean: 0.622335, max: 0.638239
14:46:42 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:42 DEBUG   opendrift.models.physics_methods:1058:    min: 4.258534, mean: 4.297729, max: 4.352325
14:46:42 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.258534, mean: 4.297729, max: 4.352325
14:46:42 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:42 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:42 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:42 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.099677 m/s - 0.101872 m/s)
14:46:42 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:42 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:42 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:42 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:42 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:42 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:42 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:42 INFO    opendrift.models.basemodel:1985: 2024-06-17 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
14:46:42 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:42 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:42 DEBUG   opendrift.models.basemodel:2004:               60.05892974326598 <- latitude  -> 60.0653190124313
14:46:42 DEBUG   opendrift.models.basemodel:2009:               4.421361410952916 <- longitude -> 4.435293400532499
14:46:42 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:42 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:42 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:42 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:42 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:46:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:46:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 09:00:00 (before)
                2024-06-17 10:00:00 (after)
14:46:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 09:00:00)
14:46:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 09:00:00) in space  (linearNDFast)
14:46:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57864949811423 and -65.56471751449966 degrees.
14:46:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57864949811423 and -65.56471751449966 degrees.
14:46:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.160396 (min) 0.172442 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.00658458 (min) 0.0391162 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.39623 (min) -3.31721 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.95548 (min) 3.97173 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.29326e-05 (min) -4.2867e-05 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.508 (min) 297.146 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:43 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.658702, mean: 0.664447, max: 0.668675
14:46:43 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:43 DEBUG   opendrift.models.physics_methods:1058:    min: 4.421547, mean: 4.440784, max: 4.454893
14:46:43 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.421547, mean: 4.440784, max: 4.454893
14:46:43 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:43 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:43 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:43 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.103492 m/s - 0.104273 m/s)
14:46:43 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:43 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:43 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:43 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:43 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:43 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:43 INFO    opendrift.models.basemodel:1985: 2024-06-17 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
14:46:43 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:43 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:43 DEBUG   opendrift.models.basemodel:2004:               60.061915108879475 <- latitude  -> 60.069001476858176
14:46:43 DEBUG   opendrift.models.basemodel:2009:               4.427439294965226 <- longitude -> 4.442061670743484
14:46:43 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:43 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 10:00:00 (before)
                2024-06-17 11:00:00 (after)
14:46:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 10:00:00)
14:46:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 10:00:00) in space  (linearNDFast)
14:46:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57257161997866 and -65.55794923345701 degrees.
14:46:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57257161997866 and -65.55794923345701 degrees.
14:46:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.121134 (min) 0.129884 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0620024 (min) -0.0325317 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.99407 (min) -2.97994 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.47749 (min) 3.50599 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.12461e-05 (min) -4.1179e-05 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.418 (min) 297.16 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:44 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.516344, mean: 0.519609, max: 0.522558
14:46:44 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:44 DEBUG   opendrift.models.physics_methods:1058:    min: 3.914705, mean: 3.927062, max: 3.938192
14:46:44 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.914705, mean: 3.927062, max: 3.938192
14:46:44 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:44 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:44 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:44 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.091629 m/s - 0.092179 m/s)
14:46:44 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:44 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:44 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:44 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:44 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:44 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:44 INFO    opendrift.models.basemodel:1985: 2024-06-17 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
14:46:44 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:44 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:44 DEBUG   opendrift.models.basemodel:2004:               60.06237638640653 <- latitude  -> 60.07006470923915
14:46:44 DEBUG   opendrift.models.basemodel:2009:               4.431398906410833 <- longitude -> 4.446603759731049
14:46:44 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:44 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 11:00:00 (before)
                2024-06-17 12:00:00 (after)
14:46:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 11:00:00)
14:46:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 11:00:00) in space  (linearNDFast)
14:46:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56861200351193 and -65.5534071470342 degrees.
14:46:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56861200351193 and -65.5534071470342 degrees.
14:46:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:45 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:45 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.071967 (min) 0.0776137 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0774204 (min) -0.0505267 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.839687 (min) -0.781628 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.96308 (min) 6.07993 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.48803e-05 (min) -2.46417e-05 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.476 (min) 297.247 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:45 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.890605, mean: 0.908258, max: 0.925528
14:46:45 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:45 DEBUG   opendrift.models.physics_methods:1058:    min: 5.141290, mean: 5.191968, max: 5.241122
14:46:45 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.141290, mean: 5.191968, max: 5.241122
14:46:45 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:45 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:45 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:45 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120339 m/s - 0.122675 m/s)
14:46:45 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:45 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:45 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:45 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:45 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:45 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:45 INFO    opendrift.models.basemodel:1985: 2024-06-17 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
14:46:45 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:45 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:45 DEBUG   opendrift.models.basemodel:2004:               60.06397734408469 <- latitude  -> 60.07218601350294
14:46:45 DEBUG   opendrift.models.basemodel:2009:               4.434965687228261 <- longitude -> 4.450593320427058
14:46:45 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:45 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 12:00:00 (before)
                2024-06-17 13:00:00 (after)
14:46:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x24x2) for time before (2024-06-17 12:00:00)
14:46:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 12:00:00) in space  (linearNDFast)
14:46:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56504521267779 and -65.5494175931034 degrees.
14:46:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56504521267779 and -65.5494175931034 degrees.
14:46:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:46 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:46 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.009277 (min) 0.0165975 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0508795 (min) -0.0268362 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.09228 (min) -1.04292 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.69518 (min) 6.84313 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.76677e-06 (min) -2.73426e-06 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.466 (min) 297.285 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:46 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.130359, mean: 1.155393, max: 1.180989
14:46:46 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:46 DEBUG   opendrift.models.physics_methods:1058:    min: 5.792122, mean: 5.855874, max: 5.920419
14:46:46 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.792122, mean: 5.855874, max: 5.920419
14:46:46 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:46 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:46 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:46 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.135572 m/s - 0.138575 m/s)
14:46:46 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:46 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:46 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:46 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:46 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:46 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:46 INFO    opendrift.models.basemodel:1985: 2024-06-17 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
14:46:46 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:46 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:46 DEBUG   opendrift.models.basemodel:2004:               60.06680650442772 <- latitude  -> 60.07563513791156
14:46:46 DEBUG   opendrift.models.basemodel:2009:               4.434161061967339 <- longitude -> 4.450284310342314
14:46:46 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:46 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 13:00:00 (before)
                2024-06-17 14:00:00 (after)
14:46:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 13:00:00)
14:46:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 13:00:00) in space  (linearNDFast)
14:46:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56584984680366 and -65.54972659534681 degrees.
14:46:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56584984680366 and -65.54972659534681 degrees.
14:46:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0474719 (min) -0.0379214 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.00819517 (min) 0.0128354 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.44335 (min) -1.41985 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.6957 (min) 4.80281 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.67288e-05 (min) 1.67774e-05 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.229 (min) 297.171 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:50 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.592992, mean: 0.604917, max: 0.618284
14:46:50 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:50 DEBUG   opendrift.models.physics_methods:1058:    min: 4.195211, mean: 4.237162, max: 4.283745
14:46:50 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.195211, mean: 4.237162, max: 4.283745
14:46:50 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:50 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:50 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:50 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.098194 m/s - 0.100267 m/s)
14:46:50 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:50 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:50 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:50 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:50 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:50 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:50 INFO    opendrift.models.basemodel:1985: 2024-06-17 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
14:46:50 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:50 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:50 DEBUG   opendrift.models.basemodel:2004:               60.06974833492974 <- latitude  -> 60.07909471219554
14:46:50 DEBUG   opendrift.models.basemodel:2009:               4.429254856341992 <- longitude -> 4.445959061458426
14:46:50 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:50 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 14:00:00 (before)
                2024-06-17 15:00:00 (after)
14:46:51 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:51 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 14:00:00)
14:46:51 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 14:00:00) in space  (linearNDFast)
14:46:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:51 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57075603877956 and -65.55405185294708 degrees.
14:46:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57075603877956 and -65.55405185294708 degrees.
14:46:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:51 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:51 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:51 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:51 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:51 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0822873 (min) -0.0730539 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0578771 (min) 0.0789056 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.06981 (min) -1.98384 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.46912 (min) 6.50059 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.28771e-05 (min) 2.29534e-05 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.838 (min) 296.911 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:51 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:51 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.128889, mean: 1.135701, max: 1.144926
14:46:51 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:51 DEBUG   opendrift.models.physics_methods:1058:    min: 5.788355, mean: 5.805791, max: 5.829325
14:46:51 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.788355, mean: 5.805791, max: 5.829325
14:46:51 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:51 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:51 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:51 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.135484 m/s - 0.136443 m/s)
14:46:51 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:51 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:51 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:51 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:51 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:51 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:51 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:51 INFO    opendrift.models.basemodel:1985: 2024-06-17 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
14:46:51 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:51 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:51 DEBUG   opendrift.models.basemodel:2004:               60.07587186263173 <- latitude  -> 60.0858319773799
14:46:51 DEBUG   opendrift.models.basemodel:2009:               4.421366433220449 <- longitude -> 4.438564491484334
14:46:51 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:51 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:51 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:51 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:51 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:51 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:51 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 15:00:00 (before)
                2024-06-17 16:00:00 (after)
14:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 15:00:00)
14:46:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 15:00:00) in space  (linearNDFast)
14:46:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57864446782534 and -65.56144640987202 degrees.
14:46:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57864446782534 and -65.56144640987202 degrees.
14:46:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:52 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:52 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.102058 (min) -0.094504 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.135951 (min) 0.150769 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.97201 (min) -3.76113 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.91908 (min) 7.97847 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.59196e-05 (min) 2.60396e-05 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.023 (min) 296.366 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:52 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.913929, mean: 1.925272, max: 1.932183
14:46:52 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:52 DEBUG   opendrift.models.physics_methods:1058:    min: 7.536895, mean: 7.559194, max: 7.572752
14:46:52 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.536895, mean: 7.559194, max: 7.572752
14:46:52 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:52 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:52 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:52 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.176411 m/s - 0.177250 m/s)
14:46:52 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:52 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:52 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:52 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:52 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:52 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:52 INFO    opendrift.models.basemodel:1985: 2024-06-17 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
14:46:52 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:52 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:52 DEBUG   opendrift.models.basemodel:2004:               60.085451548457236 <- latitude  -> 60.09582098198508
14:46:52 DEBUG   opendrift.models.basemodel:2009:               4.409634837724515 <- longitude -> 4.427569911833884
14:46:52 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:52 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 16:00:00 (before)
                2024-06-17 17:00:00 (after)
14:46:54 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:54 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-06-17 16:00:00)
14:46:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 16:00:00) in space  (linearNDFast)
14:46:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:54 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59037606544999 and -65.57244098317798 degrees.
14:46:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59037606544999 and -65.57244098317798 degrees.
14:46:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:54 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:54 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:54 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:54 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:54 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.097145 (min) -0.0856141 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.173809 (min) 0.194394 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.30599 (min) -3.28033 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.87338 (min) 4.13716 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.65249e-05 (min) 2.6559e-05 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 293.628 (min) 295.329 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:54 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:54 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.635199, mean: 0.661499, max: 0.689333
14:46:54 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:54 DEBUG   opendrift.models.physics_methods:1058:    min: 4.341945, mean: 4.430814, max: 4.523181
14:46:54 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.341945, mean: 4.430814, max: 4.523181
14:46:54 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:54 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:54 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:54 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101629 m/s - 0.105871 m/s)
14:46:54 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:54 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:54 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:54 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:54 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:54 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:54 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:54 INFO    opendrift.models.basemodel:1985: 2024-06-17 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
14:46:54 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:54 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:54 DEBUG   opendrift.models.basemodel:2004:               60.093602891313246 <- latitude  -> 60.104775586213165
14:46:54 DEBUG   opendrift.models.basemodel:2009:               4.3990733980344165 <- longitude -> 4.417756665357338
14:46:54 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:54 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:54 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:54 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:54 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:54 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 17:00:00 (before)
                2024-06-17 18:00:00 (after)
14:46:55 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:55 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 17:00:00)
14:46:55 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 17:00:00) in space  (linearNDFast)
14:46:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:55 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.60093750291756 and -65.58225423946175 degrees.
14:46:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.60093750291756 and -65.58225423946175 degrees.
14:46:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:55 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:55 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:55 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:55 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:55 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.072055 (min) -0.0604852 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.198453 (min) 0.222109 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.69928 (min) -2.60658 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.13574 (min) 4.2895 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.57268e-05 (min) 2.60526e-05 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.206 (min) 294.242 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:55 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:55 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.599828, mean: 0.609418, max: 0.619775
14:46:55 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:55 DEBUG   opendrift.models.physics_methods:1058:    min: 4.219324, mean: 4.252909, max: 4.288906
14:46:55 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.219324, mean: 4.252909, max: 4.288906
14:46:55 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:55 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:55 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:55 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.098759 m/s - 0.100387 m/s)
14:46:55 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:55 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:55 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:55 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:55 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:55 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:55 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:55 INFO    opendrift.models.basemodel:1985: 2024-06-17 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
14:46:55 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:55 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:55 DEBUG   opendrift.models.basemodel:2004:               60.10284528158087 <- latitude  -> 60.11462488370701
14:46:55 DEBUG   opendrift.models.basemodel:2009:               4.390913875950235 <- longitude -> 4.4104153474948795
14:46:55 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:55 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:55 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:55 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:55 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 18:00:00 (before)
                2024-06-17 19:00:00 (after)
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 18:00:00)
14:46:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 18:00:00) in space  (linearNDFast)
14:46:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:56 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.60909702677654 and -65.58959555854098 degrees.
14:46:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.60909702677654 and -65.58959555854098 degrees.
14:46:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:56 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:56 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:56 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:56 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0323446 (min) -0.0236961 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.191353 (min) 0.211437 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.50891 (min) -3.43077 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.38311 (min) 3.50972 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.28536e-05 (min) 2.31786e-05 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.843 (min) 293.12 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:56 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.578276, mean: 0.589486, max: 0.599089
14:46:56 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:56 DEBUG   opendrift.models.physics_methods:1058:    min: 4.142832, mean: 4.182770, max: 4.216726
14:46:56 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.142832, mean: 4.182770, max: 4.216726
14:46:56 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:56 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:56 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:56 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.096968 m/s - 0.098698 m/s)
14:46:56 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:56 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:56 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:56 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:56 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:56 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:56 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:56 INFO    opendrift.models.basemodel:1985: 2024-06-17 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
14:46:56 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:56 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:56 DEBUG   opendrift.models.basemodel:2004:               60.111313186032824 <- latitude  -> 60.1237143365903
14:46:56 DEBUG   opendrift.models.basemodel:2009:               4.384339822640227 <- longitude -> 4.404311983467696
14:46:56 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:56 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:56 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 19:00:00 (before)
                2024-06-17 20:00:00 (after)
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 19:00:00)
14:46:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 19:00:00) in space  (linearNDFast)
14:46:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:56 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61567107085588 and -65.59569890694937 degrees.
14:46:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61567107085588 and -65.59569890694937 degrees.
14:46:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:56 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:56 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:56 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:56 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.014552 (min) 0.0201822 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.159574 (min) 0.172591 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.62225 (min) -4.42792 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.2874 (min) 4.1862 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.05359e-05 (min) 1.06432e-05 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 289.815 (min) 292.115 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:56 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:56 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.748171, mean: 0.860487, max: 0.952502
14:46:56 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:56 DEBUG   opendrift.models.physics_methods:1058:    min: 4.712268, mean: 5.052593, max: 5.316950
14:46:56 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.712268, mean: 5.052593, max: 5.316950
14:46:56 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:56 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:56 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:56 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.110297 m/s - 0.124450 m/s)
14:46:56 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:56 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:56 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:56 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:56 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:56 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:56 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:56 INFO    opendrift.models.basemodel:1985: 2024-06-17 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
14:46:56 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:56 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:56 DEBUG   opendrift.models.basemodel:2004:               60.11931859354549 <- latitude  -> 60.131367404424154
14:46:56 DEBUG   opendrift.models.basemodel:2009:               4.379635834306859 <- longitude -> 4.399533489999917
14:46:56 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:56 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:56 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:56 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:56 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 20:00:00 (before)
                2024-06-17 21:00:00 (after)
14:46:57 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:57 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 20:00:00)
14:46:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 20:00:00) in space  (linearNDFast)
14:46:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:57 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.62037505735096 and -65.60047740370689 degrees.
14:46:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.62037505735096 and -65.60047740370689 degrees.
14:46:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:57 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:57 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:57 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:57 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:57 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.066127 (min) 0.0749254 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0989034 (min) 0.11052 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.25493 (min) -1.13911 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.33189 (min) 4.39155 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.21598e-05 (min) -1.19098e-05 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 289.254 (min) 291.3 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:57 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:57 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.496282, mean: 0.504171, max: 0.511056
14:46:57 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:57 DEBUG   opendrift.models.physics_methods:1058:    min: 3.837903, mean: 3.868273, max: 3.894608
14:46:57 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.837903, mean: 3.868273, max: 3.894608
14:46:57 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:57 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:57 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:57 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.089831 m/s - 0.091158 m/s)
14:46:57 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:57 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:57 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:57 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:57 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:57 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:57 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:57 INFO    opendrift.models.basemodel:1985: 2024-06-17 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
14:46:57 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:57 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:57 DEBUG   opendrift.models.basemodel:2004:               60.12565331225714 <- latitude  -> 60.137594780040175
14:46:57 DEBUG   opendrift.models.basemodel:2009:               4.382316828811392 <- longitude -> 4.4028014565773645
14:46:57 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:57 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:57 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:57 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 21:00:00 (before)
                2024-06-17 22:00:00 (after)
14:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:58 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 21:00:00)
14:46:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 21:00:00) in space  (linearNDFast)
14:46:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:58 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.617694054347 and -65.59720943215892 degrees.
14:46:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.617694054347 and -65.59720943215892 degrees.
14:46:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:58 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:58 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:58 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:58 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:58 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0734439 (min) 0.0911759 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0313575 (min) 0.0455628 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.64375 (min) -2.59944 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.32916 (min) 6.56551 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.55848e-05 (min) -3.53634e-05 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 289.557 (min) 291.4 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:58 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:58 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.153022, mean: 1.195974, max: 1.230923
14:46:58 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:58 DEBUG   opendrift.models.physics_methods:1058:    min: 5.849899, mean: 5.957767, max: 6.044287
14:46:58 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.849899, mean: 5.957767, max: 6.044287
14:46:58 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:58 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:58 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:58 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.136925 m/s - 0.141474 m/s)
14:46:58 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:58 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:58 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:58 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:58 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:58 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:58 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:58 INFO    opendrift.models.basemodel:1985: 2024-06-17 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
14:46:58 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:58 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:58 DEBUG   opendrift.models.basemodel:2004:               60.13117569132847 <- latitude  -> 60.14303047932351
14:46:58 DEBUG   opendrift.models.basemodel:2009:               4.383692668776682 <- longitude -> 4.405295759121211
14:46:58 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:58 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:58 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:58 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:58 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 22:00:00 (before)
                2024-06-17 23:00:00 (after)
14:46:59 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:46:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:46:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:46:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:46:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:46:59 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 22:00:00)
14:46:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 22:00:00) in space  (linearNDFast)
14:46:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:46:59 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:46:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61631822264451 and -65.59471513224094 degrees.
14:46:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61631822264451 and -65.59471513224094 degrees.
14:46:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:59 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:46:59 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:46:59 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:46:59 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:46:59 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0473798 (min) 0.07184 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0101777 (min) 0.0100359 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.7881 (min) -1.75992 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.73737 (min) 5.81764 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.27889e-05 (min) -4.25848e-05 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 289.89 (min) 291.579 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:46:59 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:46:59 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.888421, mean: 0.898504, max: 0.908779
14:46:59 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:46:59 DEBUG   opendrift.models.physics_methods:1058:    min: 5.134983, mean: 5.164030, max: 5.193483
14:46:59 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.134983, mean: 5.164030, max: 5.193483
14:46:59 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:59 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:46:59 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:46:59 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120191 m/s - 0.121560 m/s)
14:46:59 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:46:59 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:46:59 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:46:59 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:46:59 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:46:59 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:46:59 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:46:59 INFO    opendrift.models.basemodel:1985: 2024-06-17 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
14:46:59 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:46:59 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:46:59 DEBUG   opendrift.models.basemodel:2004:               60.13467426392168 <- latitude  -> 60.147062381017705
14:46:59 DEBUG   opendrift.models.basemodel:2009:               4.384445199647713 <- longitude -> 4.407646701403137
14:46:59 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:46:59 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:46:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:46:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:46:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:46:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:46:59 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:46:59 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:46:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:46:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:46: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:46:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:46:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:46:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:46:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:46: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:46:59 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-17 23:00:00 (before)
                2024-06-18 00:00:00 (after)
14:47:00 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:00 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-17 23:00:00)
14:47:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-17 23:00:00) in space  (linearNDFast)
14:47:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:00 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61556569281643 and -65.5923641910052 degrees.
14:47:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61556569281643 and -65.5923641910052 degrees.
14:47:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:00 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:00 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:00 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:00 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:00 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0169604 (min) 0.0416332 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0227451 (min) 0.00385593 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.87298 (min) -1.66417 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.97797 (min) 4.19085 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.41553e-05 (min) -3.41152e-05 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.197 (min) 291.82 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:00 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:00 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.475574, mean: 0.483276, max: 0.500185
14:47:00 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:00 DEBUG   opendrift.models.physics_methods:1058:    min: 3.756976, mean: 3.787241, max: 3.852963
14:47:00 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.756976, mean: 3.787241, max: 3.852963
14:47:00 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:00 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:00 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:00 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.087937 m/s - 0.090184 m/s)
14:47:00 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:00 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:00 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:00 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:00 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:00 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:00 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:00 INFO    opendrift.models.basemodel:1985: 2024-06-18 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
14:47:00 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:00 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:00 DEBUG   opendrift.models.basemodel:2004:               60.136523241552275 <- latitude  -> 60.14989522101065
14:47:00 DEBUG   opendrift.models.basemodel:2009:               4.383387222667604 <- longitude -> 4.407909841058483
14:47:00 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:00 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:00 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:00 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:00 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:00 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 00:00:00 (before)
                2024-06-18 01:00:00 (after)
14:47:01 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:01 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-18 00:00:00)
14:47:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 00:00:00) in space  (linearNDFast)
14:47:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:01 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61662365869165 and -65.5921010532777 degrees.
14:47:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61662365869165 and -65.5921010532777 degrees.
14:47:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:01 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:01 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:01 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:01 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:01 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0241769 (min) -0.00140824 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.00740448 (min) 0.0151584 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.41232 (min) -2.27266 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.64943 (min) 5.68276 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.11833e-09 (min) 1.35596e-09 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.301 (min) 291.872 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:01 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:01 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.912192, mean: 0.924292, max: 0.937583
14:47:01 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:01 DEBUG   opendrift.models.physics_methods:1058:    min: 5.203226, mean: 5.237608, max: 5.275144
14:47:01 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.203226, mean: 5.237608, max: 5.275144
14:47:01 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:01 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:01 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:01 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.121788 m/s - 0.123472 m/s)
14:47:01 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:01 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:01 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:01 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:01 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:01 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:01 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:01 INFO    opendrift.models.basemodel:1985: 2024-06-18 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
14:47:01 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:01 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:01 DEBUG   opendrift.models.basemodel:2004:               60.13995635191145 <- latitude  -> 60.15403581741104
14:47:01 DEBUG   opendrift.models.basemodel:2009:               4.378874138750013 <- longitude -> 4.404676766042914
14:47:01 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:01 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:01 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:01 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 01:00:00 (before)
                2024-06-18 02:00:00 (after)
14:47:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-06-18 01:00:00)
14:47:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 01:00:00) in space  (linearNDFast)
14:47:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.62113673837811 and -65.59533412147336 degrees.
14:47:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.62113673837811 and -65.59533412147336 degrees.
14:47:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:02 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:02 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0610366 (min) -0.0431137 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.00920659 (min) 0.0284347 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.84351 (min) -0.756269 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.29702 (min) 5.3195 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.73476e-06 (min) 1.02123e-05 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.299 (min) 291.664 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:02 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.704306, mean: 0.709262, max: 0.712717
14:47:02 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:02 DEBUG   opendrift.models.physics_methods:1058:    min: 4.572043, mean: 4.588099, max: 4.599261
14:47:02 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.572043, mean: 4.588099, max: 4.599261
14:47:02 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:02 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:02 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:02 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107015 m/s - 0.107652 m/s)
14:47:02 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:02 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:02 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:02 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:02 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:02 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:02 INFO    opendrift.models.basemodel:1985: 2024-06-18 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
14:47:02 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:02 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:02 DEBUG   opendrift.models.basemodel:2004:               60.143683138605795 <- latitude  -> 60.158388826175596
14:47:02 DEBUG   opendrift.models.basemodel:2009:               4.373824143221643 <- longitude -> 4.400870634768315
14:47:02 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:02 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 02:00:00 (before)
                2024-06-18 03:00:00 (after)
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-06-18 02:00:00)
14:47:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 02:00:00) in space  (linearNDFast)
14:47:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.6261867504798 and -65.59914025196764 degrees.
14:47:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.6261867504798 and -65.59914025196764 degrees.
14:47:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:03 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:03 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.099964 (min) -0.0728087 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0391731 (min) 0.0782624 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.03867 (min) -0.8778 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.97524 (min) 5.01202 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.05961e-05 (min) 2.12088e-05 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.359 (min) 291.456 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:03 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.627879, mean: 0.639149, max: 0.644351
14:47:03 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:03 DEBUG   opendrift.models.physics_methods:1058:    min: 4.316857, mean: 4.355419, max: 4.373114
14:47:03 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.316857, mean: 4.355419, max: 4.373114
14:47:03 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:03 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:03 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:03 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101042 m/s - 0.102358 m/s)
14:47:03 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:03 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:03 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:03 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:03 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:03 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:03 INFO    opendrift.models.basemodel:1985: 2024-06-18 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
14:47:03 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:03 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:03 DEBUG   opendrift.models.basemodel:2004:               60.14817342325492 <- latitude  -> 60.16415598335632
14:47:03 DEBUG   opendrift.models.basemodel:2009:               4.365996453296394 <- longitude -> 4.394993251991454
14:47:03 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:03 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 03:00:00 (before)
                2024-06-18 04:00:00 (after)
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-06-18 03:00:00)
14:47:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 03:00:00) in space  (linearNDFast)
14:47:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.63401443484383 and -65.60501763527978 degrees.
14:47:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.63401443484383 and -65.60501763527978 degrees.
14:47:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:04 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:04 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:04 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:04 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:04 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.108222 (min) -0.0972361 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.101364 (min) 0.147072 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.18315 (min) -1.03269 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.6784 (min) 3.89403 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.22877e-06 (min) 8.61436e-06 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.433 (min) 291.164 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:04 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:04 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.367189, mean: 0.380025, max: 0.399256
14:47:04 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:04 DEBUG   opendrift.models.physics_methods:1058:    min: 3.301221, mean: 3.358337, max: 3.442352
14:47:04 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.301221, mean: 3.358337, max: 3.442352
14:47:04 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:04 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:04 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:04 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.077269 m/s - 0.080573 m/s)
14:47:04 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:04 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:04 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:04 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:04 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:04 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:04 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:04 INFO    opendrift.models.basemodel:1985: 2024-06-18 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
14:47:04 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:04 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:04 DEBUG   opendrift.models.basemodel:2004:               60.15382935090892 <- latitude  -> 60.17142437820348
14:47:04 DEBUG   opendrift.models.basemodel:2009:               4.357648769310822 <- longitude -> 4.387134287592041
14:47:04 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:04 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:04 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:04 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 04:00:00 (before)
                2024-06-18 05:00:00 (after)
14:47:05 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:05 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x2) for time before (2024-06-18 04:00:00)
14:47:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 04:00:00) in space  (linearNDFast)
14:47:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:05 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.64236210692255 and -65.61287659973084 degrees.
14:47:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.64236210692255 and -65.61287659973084 degrees.
14:47:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:05 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:05 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:05 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:05 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:05 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0878202 (min) -0.076993 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.152975 (min) 0.17418 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.12264 (min) -0.960404 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.49302 (min) 4.53093 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.91078e-05 (min) 2.11275e-05 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 290.64 (min) 291.043 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:05 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:05 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.525533, mean: 0.526032, max: 0.527711
14:47:05 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:05 DEBUG   opendrift.models.physics_methods:1058:    min: 3.949386, mean: 3.951261, max: 3.957563
14:47:05 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.949386, mean: 3.951261, max: 3.957563
14:47:05 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:05 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:05 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:05 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.092441 m/s - 0.092632 m/s)
14:47:05 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:05 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:05 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:05 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:05 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:05 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:05 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:05 INFO    opendrift.models.basemodel:1985: 2024-06-18 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
14:47:05 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:05 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:05 DEBUG   opendrift.models.basemodel:2004:               60.16167915493074 <- latitude  -> 60.179980340397464
14:47:05 DEBUG   opendrift.models.basemodel:2009:               4.351372163744948 <- longitude -> 4.379996768918468
14:47:05 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:05 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:05 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:05 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 05:00:00 (before)
                2024-06-18 06:00:00 (after)
14:47:06 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:06 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-06-18 05:00:00)
14:47:06 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 05:00:00) in space  (linearNDFast)
14:47:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:06 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.64863871636769 and -65.62001411616575 degrees.
14:47:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.64863871636769 and -65.62001411616575 degrees.
14:47:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:06 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:06 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:06 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:06 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:06 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0653272 (min) -0.0551452 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.144936 (min) 0.149801 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.482568 (min) 0.590469 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.02207 (min) 4.05788 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.346e-05 (min) 2.35316e-05 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.098 (min) 291.865 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:06 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:06 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.406514, mean: 0.410669, max: 0.411620
14:47:06 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:06 DEBUG   opendrift.models.physics_methods:1058:    min: 3.473500, mean: 3.491207, max: 3.495247
14:47:06 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.473500, mean: 3.491207, max: 3.495247
14:47:06 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:06 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:06 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:06 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.081302 m/s - 0.081811 m/s)
14:47:06 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:06 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:06 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:06 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:06 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:06 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:06 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:06 INFO    opendrift.models.basemodel:1985: 2024-06-18 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
14:47:06 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:06 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:06 DEBUG   opendrift.models.basemodel:2004:               60.16896943092212 <- latitude  -> 60.18744151618394
14:47:06 DEBUG   opendrift.models.basemodel:2009:               4.347760055280331 <- longitude -> 4.376949747265486
14:47:06 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:06 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:06 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:06 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:06 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 06:00:00 (before)
                2024-06-18 07:00:00 (after)
14:47:07 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:07 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-06-18 06:00:00)
14:47:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 06:00:00) in space  (linearNDFast)
14:47:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:07 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.65225082594097 and -65.62306113420752 degrees.
14:47:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.65225082594097 and -65.62306113420752 degrees.
14:47:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:07 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:07 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:07 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:07 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:07 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.102958 (min) -0.0632153 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0860481 (min) 0.100021 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.608602 (min) 0.759469 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.37016 (min) 3.51159 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.23654e-05 (min) 2.26687e-05 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.739 (min) 292.615 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:07 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:07 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.293595, mean: 0.302936, max: 0.312461
14:47:07 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:07 DEBUG   opendrift.models.physics_methods:1058:    min: 2.951918, mean: 2.998462, max: 3.045282
14:47:07 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.951918, mean: 2.998462, max: 3.045282
14:47:07 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:07 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:07 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:07 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.069093 m/s - 0.071279 m/s)
14:47:07 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:07 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:07 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:07 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:07 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:07 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:07 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:07 INFO    opendrift.models.basemodel:1985: 2024-06-18 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
14:47:07 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:07 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:07 DEBUG   opendrift.models.basemodel:2004:               60.17392819819223 <- latitude  -> 60.192942454344646
14:47:07 DEBUG   opendrift.models.basemodel:2009:               4.341869006132895 <- longitude -> 4.373766798486741
14:47:07 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:07 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:07 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:07 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:07 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 07:00:00 (before)
                2024-06-18 08:00:00 (after)
14:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:08 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x2) for time before (2024-06-18 07:00:00)
14:47:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 07:00:00) in space  (linearNDFast)
14:47:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:08 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.6581418759461 and -65.6262440787884 degrees.
14:47:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.6581418759461 and -65.6262440787884 degrees.
14:47:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:08 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:08 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:08 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:08 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:08 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.163656 (min) -0.113248 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0254853 (min) 0.0539553 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.392548 (min) 0.411188 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.7495 (min) 2.92009 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.1375e-05 (min) 1.20888e-05 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.139 (min) 293.033 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:08 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:08 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.189761, mean: 0.201520, max: 0.213922
14:47:08 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:08 DEBUG   opendrift.models.physics_methods:1058:    min: 2.373194, mean: 2.445484, max: 2.519751
14:47:08 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.373194, mean: 2.445484, max: 2.519751
14:47:08 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:08 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:08 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:08 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.055548 m/s - 0.058978 m/s)
14:47:08 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:08 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:08 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:08 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:08 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:08 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:08 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:08 INFO    opendrift.models.basemodel:1985: 2024-06-18 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
14:47:08 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:08 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:08 DEBUG   opendrift.models.basemodel:2004:               60.17652827505856 <- latitude  -> 60.19657245282718
14:47:08 DEBUG   opendrift.models.basemodel:2009:               4.331781808157334 <- longitude -> 4.366884890609495
14:47:08 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:08 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:08 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 08:00:00 (before)
                2024-06-18 09:00:00 (after)
14:47:09 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:09 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x2) for time before (2024-06-18 08:00:00)
14:47:09 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 08:00:00) in space  (linearNDFast)
14:47:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:09 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.66822907597404 and -65.63312598199582 degrees.
14:47:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.66822907597404 and -65.63312598199582 degrees.
14:47:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:09 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:09 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:09 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:09 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:09 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.208961 (min) -0.168776 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.00344768 (min) 0.0474233 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.79662 (min) 2.08056 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.94541 (min) 3.05065 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.34591e-05 (min) -1.31693e-05 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.096 (min) 293.143 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:09 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:09 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.292820, mean: 0.314084, max: 0.335426
14:47:09 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:09 DEBUG   opendrift.models.physics_methods:1058:    min: 2.948019, mean: 3.052935, max: 3.155208
14:47:09 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.948019, mean: 3.052935, max: 3.155208
14:47:09 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:09 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:09 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:09 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.069002 m/s - 0.073852 m/s)
14:47:09 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:09 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:09 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:09 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:09 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:09 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:09 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:09 INFO    opendrift.models.basemodel:1985: 2024-06-18 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
14:47:09 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:09 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:09 DEBUG   opendrift.models.basemodel:2004:               60.17854261265247 <- latitude  -> 60.200075466676864
14:47:09 DEBUG   opendrift.models.basemodel:2009:               4.320920213086592 <- longitude -> 4.358234880337241
14:47:09 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:09 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:09 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:09 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:09 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:09 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 09:00:00 (before)
                2024-06-18 10:00:00 (after)
14:47:10 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:10 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 09:00:00)
14:47:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 09:00:00) in space  (linearNDFast)
14:47:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:10 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.67909066386474 and -65.64177599822172 degrees.
14:47:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.67909066386474 and -65.64177599822172 degrees.
14:47:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:10 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:10 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:10 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:10 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:10 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.222851 (min) -0.202703 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.02198 (min) 0.0717017 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.829 (min) 2.88278 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.89122 (min) 2.00966 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.92491e-05 (min) -3.83904e-05 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.926 (min) 293.263 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:10 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:10 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.286916, mean: 0.293619, max: 0.302334
14:47:10 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:10 DEBUG   opendrift.models.physics_methods:1058:    min: 2.918143, mean: 2.951999, max: 2.995526
14:47:10 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.918143, mean: 2.951999, max: 2.995526
14:47:10 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:10 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:10 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:10 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.068303 m/s - 0.070114 m/s)
14:47:10 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:10 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:10 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:10 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:10 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:10 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:10 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:10 INFO    opendrift.models.basemodel:1985: 2024-06-18 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
14:47:10 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:10 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:10 DEBUG   opendrift.models.basemodel:2004:               60.18055081302478 <- latitude  -> 60.20362772238387
14:47:10 DEBUG   opendrift.models.basemodel:2009:               4.3101685451334175 <- longitude -> 4.348730818940025
14:47:10 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:10 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:10 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:10 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 10:00:00 (before)
                2024-06-18 11:00:00 (after)
14:47:11 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:11 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 10:00:00)
14:47:11 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 10:00:00) in space  (linearNDFast)
14:47:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:11 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.68984232347059 and -65.65128005983598 degrees.
14:47:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.68984232347059 and -65.65128005983598 degrees.
14:47:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:11 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:11 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:11 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:11 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:11 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.221178 (min) -0.202536 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0625277 (min) 0.119115 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.38047 (min) 2.49306 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 0.636857 (min) 1.77249 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.12584e-05 (min) -5.02069e-05 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.818 (min) 293.429 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:11 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:11 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.150304, mean: 0.186658, max: 0.230184
14:47:11 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:11 DEBUG   opendrift.models.physics_methods:1058:    min: 2.112099, mean: 2.351549, max: 2.613768
14:47:11 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 2.112099, mean: 2.351549, max: 2.613768
14:47:11 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:11 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:11 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:11 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.049436 m/s - 0.061179 m/s)
14:47:11 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:11 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:11 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:11 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:11 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:11 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:11 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:11 INFO    opendrift.models.basemodel:1985: 2024-06-18 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
14:47:11 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:11 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:11 DEBUG   opendrift.models.basemodel:2004:               60.18371591159176 <- latitude  -> 60.20788723644163
14:47:11 DEBUG   opendrift.models.basemodel:2009:               4.298910217609703 <- longitude -> 4.338700870769716
14:47:11 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:11 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:11 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:11 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:11 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:11 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 11:00:00 (before)
                2024-06-18 12:00:00 (after)
14:47:12 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:12 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 11:00:00)
14:47:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 11:00:00) in space  (linearNDFast)
14:47:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:12 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.70110064983906 and -65.6613100066289 degrees.
14:47:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.70110064983906 and -65.6613100066289 degrees.
14:47:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:12 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:12 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:12 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:12 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:12 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.208839 (min) -0.190773 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.101983 (min) 0.161683 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.48 (min) 3.60239 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.77128 (min) -2.60341 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.78862e-05 (min) -4.75298e-05 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.906 (min) 293.672 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:12 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:12 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.485972, mean: 0.487838, max: 0.488897
14:47:12 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:12 DEBUG   opendrift.models.physics_methods:1058:    min: 3.797827, mean: 3.805111, max: 3.809240
14:47:12 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 3.797827, mean: 3.805111, max: 3.809240
14:47:12 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:12 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:12 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:12 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.088893 m/s - 0.089160 m/s)
14:47:12 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:12 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:12 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:12 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:12 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:12 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:12 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:12 INFO    opendrift.models.basemodel:1985: 2024-06-18 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
14:47:12 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:12 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:12 DEBUG   opendrift.models.basemodel:2004:               60.185219609249145 <- latitude  -> 60.211428273977184
14:47:12 DEBUG   opendrift.models.basemodel:2009:               4.290027570810803 <- longitude -> 4.330827497084212
14:47:12 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:12 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:12 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:12 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 12:00:00 (before)
                2024-06-18 13:00:00 (after)
14:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:13 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 12:00:00)
14:47:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 12:00:00) in space  (linearNDFast)
14:47:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:13 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.70998330767247 and -65.66918338007059 degrees.
14:47:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.70998330767247 and -65.66918338007059 degrees.
14:47:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:13 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:13 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:13 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:13 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:13 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.173167 (min) -0.164501 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.12985 (min) 0.174649 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.47161 (min) 4.4899 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.75862 (min) -2.48903 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.59301e-05 (min) -2.53024e-05 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.897 (min) 293.881 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:13 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:13 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.645194, mean: 0.658794, max: 0.683122
14:47:13 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:13 DEBUG   opendrift.models.physics_methods:1058:    min: 4.375973, mean: 4.421796, max: 4.502760
14:47:13 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.375973, mean: 4.421796, max: 4.502760
14:47:13 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:13 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:13 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:13 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.102425 m/s - 0.105393 m/s)
14:47:13 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:13 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:13 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:13 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:13 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:13 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:13 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:13 INFO    opendrift.models.basemodel:1985: 2024-06-18 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
14:47:13 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:13 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:13 DEBUG   opendrift.models.basemodel:2004:               60.18780886021399 <- latitude  -> 60.21527870728116
14:47:13 DEBUG   opendrift.models.basemodel:2009:               4.28475438159577 <- longitude -> 4.325885406372476
14:47:13 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:13 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:13 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 13:00:00 (before)
                2024-06-18 14:00:00 (after)
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x26x2) for time before (2024-06-18 13:00:00)
14:47:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 13:00:00) in space  (linearNDFast)
14:47:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71525648640963 and -65.67412547103541 degrees.
14:47:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71525648640963 and -65.67412547103541 degrees.
14:47:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:14 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:14 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.14224 (min) -0.135204 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.133723 (min) 0.172766 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.332 (min) 5.3487 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.96417 (min) -2.83333 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.19398e-06 (min) -6.45918e-07 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.113 (min) 294.098 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:14 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.901253, mean: 0.908703, max: 0.915560
14:47:14 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:14 DEBUG   opendrift.models.physics_methods:1058:    min: 5.171934, mean: 5.193261, max: 5.212822
14:47:14 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.171934, mean: 5.193261, max: 5.212822
14:47:14 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:14 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:14 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:14 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.121056 m/s - 0.122013 m/s)
14:47:14 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:14 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:14 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:14 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:14 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:14 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:14 INFO    opendrift.models.basemodel:1985: 2024-06-18 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
14:47:14 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:14 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:14 DEBUG   opendrift.models.basemodel:2004:               60.19021967094332 <- latitude  -> 60.219029531484935
14:47:14 DEBUG   opendrift.models.basemodel:2009:               4.2824634849725065 <- longitude -> 4.323964307255598
14:47:14 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:14 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 14:00:00 (before)
                2024-06-18 15:00:00 (after)
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x27x2) for time before (2024-06-18 14:00:00)
14:47:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 14:00:00) in space  (linearNDFast)
14:47:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71754738113731 and -65.67604657506553 degrees.
14:47:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71754738113731 and -65.67604657506553 degrees.
14:47:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:15 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:15 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.14174 (min) -0.11899 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.125117 (min) 0.182298 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.40441 (min) 5.43204 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.50111 (min) -2.48019 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.18193e-05 (min) 2.24003e-05 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.34 (min) 294.27 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:15 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.870172, mean: 0.874278, max: 0.879759
14:47:15 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:15 DEBUG   opendrift.models.physics_methods:1058:    min: 5.081970, mean: 5.093942, max: 5.109889
14:47:15 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.081970, mean: 5.093942, max: 5.109889
14:47:15 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:15 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:15 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:15 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.118950 m/s - 0.119604 m/s)
14:47:15 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:15 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:15 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:15 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:15 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:15 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:15 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:15 INFO    opendrift.models.basemodel:1985: 2024-06-18 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
14:47:15 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:15 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:15 DEBUG   opendrift.models.basemodel:2004:               60.19265605809548 <- latitude  -> 60.223303033026085
14:47:15 DEBUG   opendrift.models.basemodel:2009:               4.280313111496283 <- longitude -> 4.323242966398479
14:47:15 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:15 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:15 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:47:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 15:00:00 (before)
                2024-06-18 16:00:00 (after)
14:47:15 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:15 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x26x2) for time before (2024-06-18 15:00:00)
14:47:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 15:00:00) in space  (linearNDFast)
14:47:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:15 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71969775620964 and -65.67676791018864 degrees.
14:47:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.71969775620964 and -65.67676791018864 degrees.
14:47:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:15 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:15 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.153084 (min) -0.134372 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.123598 (min) 0.168407 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.21524 (min) 5.29572 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.43766 (min) -3.36332 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.89764e-05 (min) 2.93261e-05 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.577 (min) 294.445 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:15 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.959258, mean: 0.964060, max: 0.968396
14:47:15 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:15 DEBUG   opendrift.models.physics_methods:1058:    min: 5.335773, mean: 5.349111, max: 5.361126
14:47:15 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.335773, mean: 5.349111, max: 5.361126
14:47:15 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:15 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:15 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:15 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.124891 m/s - 0.125484 m/s)
14:47:15 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:15 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:15 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:15 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:15 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:15 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:15 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:15 INFO    opendrift.models.basemodel:1985: 2024-06-18 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
14:47:15 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:15 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:15 DEBUG   opendrift.models.basemodel:2004:               60.194475757477235 <- latitude  -> 60.22652243352062
14:47:15 DEBUG   opendrift.models.basemodel:2009:               4.277143726897304 <- longitude -> 4.321388640534573
14:47:15 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:15 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:15 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:47:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 16:00:00 (before)
                2024-06-18 17:00:00 (after)
14:47:16 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:16 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x26x2) for time before (2024-06-18 16:00:00)
14:47:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 16:00:00) in space  (linearNDFast)
14:47:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:16 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72286713256625 and -65.67862223043885 degrees.
14:47:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72286713256625 and -65.67862223043885 degrees.
14:47:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:16 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:16 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:16 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:16 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:16 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.194446 (min) -0.158965 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.116216 (min) 0.153316 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.29553 (min) 4.61979 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -4.91165 (min) -4.87914 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.40711e-05 (min) 3.44558e-05 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.743 (min) 294.553 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:16 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:16 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.039536, mean: 1.082227, max: 1.117641
14:47:16 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:16 DEBUG   opendrift.models.physics_methods:1058:    min: 5.554557, mean: 5.667340, max: 5.759445
14:47:16 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.554557, mean: 5.667340, max: 5.759445
14:47:16 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:16 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:16 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:16 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.130012 m/s - 0.134807 m/s)
14:47:16 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:16 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:16 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:16 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:16 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:16 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:16 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:16 INFO    opendrift.models.basemodel:1985: 2024-06-18 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
14:47:16 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:16 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:16 DEBUG   opendrift.models.basemodel:2004:               60.19505852483761 <- latitude  -> 60.228322519385216
14:47:16 DEBUG   opendrift.models.basemodel:2009:               4.270091559817361 <- longitude -> 4.317067386801587
14:47:16 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:16 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:16 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:16 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:16 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:16 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:47:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:16 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 17:00:00 (before)
                2024-06-18 18:00:00 (after)
14:47:17 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:17 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x27x2) for time before (2024-06-18 17:00:00)
14:47:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 17:00:00) in space  (linearNDFast)
14:47:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:17 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72991930201255 and -65.6829434800913 degrees.
14:47:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.72991930201255 and -65.6829434800913 degrees.
14:47:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:17 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:17 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:17 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:17 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:17 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.23483 (min) -0.187287 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0897226 (min) 0.149719 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.09632 (min) 4.22151 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -4.4379 (min) -4.34428 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.35512e-05 (min) 3.4348e-05 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.749 (min) 294.655 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:17 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:17 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.877054, mean: 0.899162, max: 0.922896
14:47:17 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:17 DEBUG   opendrift.models.physics_methods:1058:    min: 5.102028, mean: 5.165888, max: 5.233666
14:47:17 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.102028, mean: 5.165888, max: 5.233666
14:47:17 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:17 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:17 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:17 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.119420 m/s - 0.122501 m/s)
14:47:17 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:17 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:17 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:17 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:17 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:17 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:17 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:17 INFO    opendrift.models.basemodel:1985: 2024-06-18 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated)
14:47:17 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:17 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:17 DEBUG   opendrift.models.basemodel:2004:               60.19514952832891 <- latitude  -> 60.23029124440174
14:47:17 DEBUG   opendrift.models.basemodel:2009:               4.260319039229691 <- longitude -> 4.310228614879477
14:47:17 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:17 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:17 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:17 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:17 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:17 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:47:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:17 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 18:00:00 (before)
                2024-06-18 19:00:00 (after)
14:47:18 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:18 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x28x2) for time before (2024-06-18 18:00:00)
14:47:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 18:00:00) in space  (linearNDFast)
14:47:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:18 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73969182954391 and -65.68978226358693 degrees.
14:47:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73969182954391 and -65.68978226358693 degrees.
14:47:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:18 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:18 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:18 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:18 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:18 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.245722 (min) -0.211835 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0523424 (min) 0.133356 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.3501 (min) 6.41827 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -4.97894 (min) -4.7526 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.20464e-05 (min) 3.28362e-05 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.69 (min) 294.815 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:18 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:18 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.567123, mean: 1.588696, max: 1.601794
14:47:18 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:18 DEBUG   opendrift.models.physics_methods:1058:    min: 6.819950, mean: 6.866720, max: 6.894979
14:47:18 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.819950, mean: 6.866720, max: 6.894979
14:47:18 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:18 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:18 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:18 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.159630 m/s - 0.161386 m/s)
14:47:18 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:18 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:18 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:18 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:18 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:18 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:18 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:18 INFO    opendrift.models.basemodel:1985: 2024-06-18 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated)
14:47:18 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:18 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:18 DEBUG   opendrift.models.basemodel:2004:               60.19376854788983 <- latitude  -> 60.23138141984813
14:47:18 DEBUG   opendrift.models.basemodel:2009:               4.25260419930734 <- longitude -> 4.304802676108625
14:47:18 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:18 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:18 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:18 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:18 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:18 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:47:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 19:00:00 (before)
                2024-06-18 20:00:00 (after)
14:47:19 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:19 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x27x2) for time before (2024-06-18 19:00:00)
14:47:19 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 19:00:00) in space  (linearNDFast)
14:47:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:19 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74740666557777 and -65.69520820479866 degrees.
14:47:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74740666557777 and -65.69520820479866 degrees.
14:47:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:19 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:19 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:19 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:19 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:19 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.248184 (min) -0.235872 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0147635 (min) 0.0998794 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.05531 (min) 5.392 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -5.74197 (min) -5.68111 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.21512e-05 (min) 2.26933e-05 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.549 (min) 294.981 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:19 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:19 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.422647, mean: 1.472556, max: 1.526279
14:47:19 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:19 DEBUG   opendrift.models.physics_methods:1058:    min: 6.497976, mean: 6.610813, max: 6.730488
14:47:19 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.497976, mean: 6.610813, max: 6.730488
14:47:19 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:19 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:19 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:19 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.152094 m/s - 0.157536 m/s)
14:47:19 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:19 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:19 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:19 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:19 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:19 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:19 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:19 INFO    opendrift.models.basemodel:1985: 2024-06-18 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated)
14:47:19 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:19 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:19 DEBUG   opendrift.models.basemodel:2004:               60.19053387900613 <- latitude  -> 60.23093623197468
14:47:19 DEBUG   opendrift.models.basemodel:2009:               4.243046827582045 <- longitude -> 4.296481328419415
14:47:19 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:19 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:19 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:19 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:19 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:19 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:19 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:47:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:19 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:19 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 20:00:00 (before)
                2024-06-18 21:00:00 (after)
14:47:20 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:20 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 26x28x2) for time before (2024-06-18 20:00:00)
14:47:20 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 20:00:00) in space  (linearNDFast)
14:47:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:20 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75696404731156 and -65.7035295484037 degrees.
14:47:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75696404731156 and -65.7035295484037 degrees.
14:47:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:20 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:20 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:20 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:20 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:20 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.259667 (min) -0.254596 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0161819 (min) 0.0687802 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.3459 (min) 4.46257 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -7.7398 (min) -7.40563 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.41642e-07 (min) 1.26697e-06 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.276 (min) 295.201 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:20 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:20 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.813761, mean: 1.879074, max: 1.963546
14:47:20 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:20 DEBUG   opendrift.models.physics_methods:1058:    min: 7.337020, mean: 7.467757, max: 7.633965
14:47:20 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.337020, mean: 7.467757, max: 7.633965
14:47:20 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:20 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:20 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:20 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.171733 m/s - 0.178683 m/s)
14:47:20 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:20 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:20 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:20 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:20 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:20 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:20 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:20 INFO    opendrift.models.basemodel:1985: 2024-06-18 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated)
14:47:20 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:20 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:20 DEBUG   opendrift.models.basemodel:2004:               60.18522412558566 <- latitude  -> 60.228155780482055
14:47:20 DEBUG   opendrift.models.basemodel:2009:               4.232174723113325 <- longitude -> 4.285551966715495
14:47:20 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:20 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:20 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:20 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:20 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:20 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:47:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:20 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 21:00:00 (before)
                2024-06-18 22:00:00 (after)
14:47:21 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:21 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 26x28x2) for time before (2024-06-18 21:00:00)
14:47:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 21:00:00) in space  (linearNDFast)
14:47:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:21 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.76783614802063 and -65.71445891781441 degrees.
14:47:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.76783614802063 and -65.71445891781441 degrees.
14:47:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:21 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:21 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:21 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:21 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:21 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.272752 (min) -0.267946 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0282863 (min) 0.0508875 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.99986 (min) 4.0427 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.35244 (min) -8.86309 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.93837e-05 (min) -2.8355e-05 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.9 (min) 295.481 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:21 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:21 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.334484, mean: 2.428998, max: 2.545741
14:47:21 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:21 DEBUG   opendrift.models.physics_methods:1058:    min: 8.323865, mean: 8.490419, max: 8.692340
14:47:21 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.323865, mean: 8.490419, max: 8.692340
14:47:21 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:21 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:21 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:21 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.194831 m/s - 0.203456 m/s)
14:47:21 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:21 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:21 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:21 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:21 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:21 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:21 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:21 INFO    opendrift.models.basemodel:1985: 2024-06-18 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated)
14:47:21 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:21 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:21 DEBUG   opendrift.models.basemodel:2004:               60.178581312503084 <- latitude  -> 60.22375495012143
14:47:21 DEBUG   opendrift.models.basemodel:2009:               4.219654008412103 <- longitude -> 4.273413017992677
14:47:21 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:21 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:21 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:21 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:21 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:21 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:47:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:21 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 22:00:00 (before)
                2024-06-18 23:00:00 (after)
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 26x28x2) for time before (2024-06-18 22:00:00)
14:47:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 22:00:00) in space  (linearNDFast)
14:47:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:22 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78035686238233 and -65.72659786354514 degrees.
14:47:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.78035686238233 and -65.72659786354514 degrees.
14:47:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:22 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:22 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:22 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:22 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.299479 (min) -0.288274 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0286595 (min) 0.0542959 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.17869 (min) 3.20424 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.1355 (min) -9.94791 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.9843e-05 (min) -4.87845e-05 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.562 (min) 295.853 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:22 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.683087, mean: 2.730861, max: 2.778805
14:47:22 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:22 DEBUG   opendrift.models.physics_methods:1058:    min: 8.923742, mean: 9.002787, max: 9.081522
14:47:22 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.923742, mean: 9.002787, max: 9.081522
14:47:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:22 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:22 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:22 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.208872 m/s - 0.212565 m/s)
14:47:22 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:22 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:22 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:22 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:22 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:22 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:22 INFO    opendrift.models.basemodel:1985: 2024-06-18 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
14:47:22 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:22 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:22 DEBUG   opendrift.models.basemodel:2004:               60.17122524926054 <- latitude  -> 60.21895800394811
14:47:22 DEBUG   opendrift.models.basemodel:2009:               4.204440663728233 <- longitude -> 4.258837932261394
14:47:22 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:22 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:22 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:47:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-18 23:00:00 (before)
                2024-06-19 00:00:00 (after)
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 26x29x2) for time before (2024-06-18 23:00:00)
14:47:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-18 23:00:00) in space  (linearNDFast)
14:47:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:22 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.79557021224261 and -65.74117295848879 degrees.
14:47:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.79557021224261 and -65.74117295848879 degrees.
14:47:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:22 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:22 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:22 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:22 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.316842 (min) -0.303726 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0126529 (min) 0.0787274 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.5163 (min) 3.58384 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.3928 (min) -10.3183 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.29919e-05 (min) -5.22869e-05 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.414 (min) 296.379 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:22 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:22 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.934995, mean: 2.958268, max: 2.962227
14:47:22 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:22 DEBUG   opendrift.models.physics_methods:1058:    min: 9.333258, mean: 9.370186, max: 9.376457
14:47:22 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.333258, mean: 9.370186, max: 9.376457
14:47:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:22 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:22 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:22 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.218457 m/s - 0.219468 m/s)
14:47:22 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:22 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:22 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:22 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:22 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:22 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:22 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:22 INFO    opendrift.models.basemodel:1985: 2024-06-19 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
14:47:22 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:22 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:22 DEBUG   opendrift.models.basemodel:2004:               60.16414683892282 <- latitude  -> 60.21478409681795
14:47:22 DEBUG   opendrift.models.basemodel:2009:               4.188856633041631 <- longitude -> 4.243787863856777
14:47:22 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:22 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:22 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:22 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:22 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:47:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 00:00:00 (before)
                2024-06-19 01:00:00 (after)
14:47:23 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:23 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 27x28x2) for time before (2024-06-19 00:00:00)
14:47:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 00:00:00) in space  (linearNDFast)
14:47:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:23 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8111542365912 and -65.75622303006307 degrees.
14:47:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8111542365912 and -65.75622303006307 degrees.
14:47:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:23 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:23 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:23 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:23 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:23 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.299494 (min) -0.283986 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0316169 (min) 0.110104 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.5599 (min) 3.63371 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.7717 (min) -11.6569 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.33346e-07 (min) -5.74247e-07 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.537 (min) 296.992 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:23 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:23 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.654461, mean: 3.690555, max: 3.733679
14:47:23 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:23 DEBUG   opendrift.models.physics_methods:1058:    min: 10.414568, mean: 10.465842, max: 10.526841
14:47:23 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.414568, mean: 10.465842, max: 10.526841
14:47:23 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:23 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:23 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:23 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.243767 m/s - 0.246394 m/s)
14:47:23 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:23 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:23 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:23 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:23 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:23 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:23 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:23 INFO    opendrift.models.basemodel:1985: 2024-06-19 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
14:47:23 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:23 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:23 DEBUG   opendrift.models.basemodel:2004:               60.15755984618666 <- latitude  -> 60.210807296866236
14:47:23 DEBUG   opendrift.models.basemodel:2009:               4.174479302416945 <- longitude -> 4.230085397806463
14:47:23 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:23 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:23 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:23 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:23 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:47:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 01:00:00 (before)
                2024-06-19 02:00:00 (after)
14:47:24 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:24 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 27x29x2) for time before (2024-06-19 01:00:00)
14:47:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 01:00:00) in space  (linearNDFast)
14:47:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:24 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.82553157226234 and -65.76992548954162 degrees.
14:47:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.82553157226234 and -65.76992548954162 degrees.
14:47:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:24 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:24 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:24 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:24 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.266394 (min) -0.252127 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0671418 (min) 0.119835 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.01669 (min) 4.102 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.538 (min) -11.4565 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.07569e-06 (min) -8.69408e-06 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 291.811 (min) 297.587 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:24 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:24 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.625670, mean: 3.648823, max: 3.688818
14:47:24 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:24 DEBUG   opendrift.models.physics_methods:1058:    min: 10.373461, mean: 10.406519, max: 10.463409
14:47:24 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.373461, mean: 10.406519, max: 10.463409
14:47:24 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:24 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:24 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:24 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.242804 m/s - 0.244910 m/s)
14:47:24 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:24 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:24 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:24 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:24 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:24 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:24 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:24 INFO    opendrift.models.basemodel:1985: 2024-06-19 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
14:47:24 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:24 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:24 DEBUG   opendrift.models.basemodel:2004:               60.152324637770676 <- latitude  -> 60.2072219360297
14:47:24 DEBUG   opendrift.models.basemodel:2009:               4.162560200144041 <- longitude -> 4.218947082952312
14:47:24 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:24 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:24 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:24 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:24 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:47:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:24 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 02:00:00 (before)
                2024-06-19 03:00:00 (after)
14:47:27 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:27 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 28x28x2) for time before (2024-06-19 02:00:00)
14:47:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 02:00:00) in space  (linearNDFast)
14:47:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:27 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8374506854796 and -65.78106381790674 degrees.
14:47:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8374506854796 and -65.78106381790674 degrees.
14:47:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:27 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:27 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:27 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:27 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:27 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.252187 (min) -0.235398 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.10348 (min) 0.151303 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.48881 (min) 3.54268 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.9641 (min) -11.8806 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.71758e-05 (min) 1.90013e-05 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.112 (min) 298.092 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:27 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:27 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.771696, mean: 3.802379, max: 3.829960
14:47:27 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:27 DEBUG   opendrift.models.physics_methods:1058:    min: 10.580299, mean: 10.623238, max: 10.661706
14:47:27 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.580299, mean: 10.623238, max: 10.661706
14:47:27 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:27 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:27 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:27 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.247646 m/s - 0.249551 m/s)
14:47:27 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:27 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:27 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:27 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:27 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:27 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:27 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:27 INFO    opendrift.models.basemodel:1985: 2024-06-19 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
14:47:27 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:27 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:27 DEBUG   opendrift.models.basemodel:2004:               60.14793572202545 <- latitude  -> 60.204432064687694
14:47:27 DEBUG   opendrift.models.basemodel:2009:               4.150714770441718 <- longitude -> 4.2082800664420015
14:47:27 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:27 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:27 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:27 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:27 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:47:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 03:00:00 (before)
                2024-06-19 04:00:00 (after)
14:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 28x29x2) for time before (2024-06-19 03:00:00)
14:47:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 03:00:00) in space  (linearNDFast)
14:47:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.84929611329008 and -65.7917308272917 degrees.
14:47:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.84929611329008 and -65.7917308272917 degrees.
14:47:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:28 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:28 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.248805 (min) -0.232914 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.118606 (min) 0.186417 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.61929 (min) 3.68287 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.8447 (min) -11.6747 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.42781e-05 (min) 2.59802e-05 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.461 (min) 298.56 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:28 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.675214, mean: 3.737835, max: 3.784812
14:47:28 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:28 DEBUG   opendrift.models.physics_methods:1058:    min: 10.444098, mean: 10.532666, max: 10.598679
14:47:28 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.444098, mean: 10.532666, max: 10.598679
14:47:28 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:28 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:28 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:28 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244458 m/s - 0.248076 m/s)
14:47:28 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:28 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:28 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:28 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:28 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:28 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:28 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:28 INFO    opendrift.models.basemodel:1985: 2024-06-19 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
14:47:28 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:28 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:28 DEBUG   opendrift.models.basemodel:2004:               60.14411265521963 <- latitude  -> 60.20290983639127
14:47:28 DEBUG   opendrift.models.basemodel:2009:               4.13925897198894 <- longitude -> 4.197802719074253
14:47:28 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:28 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:28 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:47:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 04:00:00 (before)
                2024-06-19 05:00:00 (after)
14:47:29 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:29 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 27x29x2) for time before (2024-06-19 04:00:00)
14:47:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 04:00:00) in space  (linearNDFast)
14:47:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:29 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.86075191551642 and -65.80220819176408 degrees.
14:47:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.86075191551642 and -65.80220819176408 degrees.
14:47:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:29 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:29 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:29 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:29 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:29 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.253029 (min) -0.247144 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.122494 (min) 0.205695 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.49573 (min) 3.57671 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.4855 (min) -11.4345 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.71416e-05 (min) 3.21658e-05 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 292.822 (min) 299.005 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:29 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:29 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.517018, mean: 3.554239, max: 3.559673
14:47:29 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:29 DEBUG   opendrift.models.physics_methods:1058:    min: 10.216846, mean: 10.270764, max: 10.278616
14:47:29 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 10.216846, mean: 10.270764, max: 10.278616
14:47:29 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:29 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:29 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:29 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.239139 m/s - 0.240584 m/s)
14:47:29 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:29 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:29 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:29 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:29 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:29 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:29 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:29 INFO    opendrift.models.basemodel:1985: 2024-06-19 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
14:47:29 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:29 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:29 DEBUG   opendrift.models.basemodel:2004:               60.140662636079966 <- latitude  -> 60.20216571630295
14:47:29 DEBUG   opendrift.models.basemodel:2009:               4.127368854654572 <- longitude -> 4.186203366999965
14:47:29 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:29 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:29 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:29 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:29 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:29 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:47:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:29 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 05:00:00 (before)
                2024-06-19 06:00:00 (after)
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 28x29x2) for time before (2024-06-19 05:00:00)
14:47:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 05:00:00) in space  (linearNDFast)
14:47:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:30 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8726420377628 and -65.81380753883164 degrees.
14:47:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8726420377628 and -65.81380753883164 degrees.
14:47:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:30 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:30 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:30 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:30 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.266502 (min) -0.257862 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.127756 (min) 0.210512 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.82047 (min) 2.86255 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.0576 (min) -10.897 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.87534e-05 (min) 3.04626e-05 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 293.23 (min) 299.397 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:30 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 3.122699, mean: 3.162419, max: 3.204258
14:47:30 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:30 DEBUG   opendrift.models.physics_methods:1058:    min: 9.627081, mean: 9.688094, max: 9.751991
14:47:30 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.627081, mean: 9.688094, max: 9.751991
14:47:30 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:30 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:30 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:30 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.225334 m/s - 0.228258 m/s)
14:47:30 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:30 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:30 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:30 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:30 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:30 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:30 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:30 INFO    opendrift.models.basemodel:1985: 2024-06-19 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
14:47:30 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:30 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:30 DEBUG   opendrift.models.basemodel:2004:               60.13764368405986 <- latitude  -> 60.201924581764025
14:47:30 DEBUG   opendrift.models.basemodel:2009:               4.114161782706653 <- longitude -> 4.172620654337943
14:47:30 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:30 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:30 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:47:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:30 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 06:00:00 (before)
                2024-06-19 07:00:00 (after)
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 29x29x2) for time before (2024-06-19 06:00:00)
14:47:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 06:00:00) in space  (linearNDFast)
14:47:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:30 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.88584911396788 and -65.82739025455756 degrees.
14:47:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.88584911396788 and -65.82739025455756 degrees.
14:47:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:30 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:30 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:30 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:30 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.265464 (min) -0.257879 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.13923 (min) 0.210078 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.60752 (min) 2.67109 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.4354 (min) -10.3502 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.01933e-05 (min) 3.22628e-05 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 293.693 (min) 299.72 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:30 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:30 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.802586, mean: 2.831030, max: 2.854382
14:47:30 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:30 DEBUG   opendrift.models.physics_methods:1058:    min: 9.120299, mean: 9.166450, max: 9.204191
14:47:30 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 9.120299, mean: 9.166450, max: 9.204191
14:47:30 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:30 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:30 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:30 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.213472 m/s - 0.215436 m/s)
14:47:30 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:30 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:30 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:30 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:30 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:30 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:30 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:30 INFO    opendrift.models.basemodel:1985: 2024-06-19 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
14:47:30 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:30 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:30 DEBUG   opendrift.models.basemodel:2004:               60.13539757226644 <- latitude  -> 60.202022775999055
14:47:30 DEBUG   opendrift.models.basemodel:2009:               4.100617345508659 <- longitude -> 4.158880843669113
14:47:30 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:30 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:30 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:30 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:30 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:47:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:30 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 07:00:00 (before)
                2024-06-19 08:00:00 (after)
14:47:31 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:31 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 29x29x2) for time before (2024-06-19 07:00:00)
14:47:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 07:00:00) in space  (linearNDFast)
14:47:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:31 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.89939354793033 and -65.84113007501387 degrees.
14:47:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.89939354793033 and -65.84113007501387 degrees.
14:47:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:31 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:31 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:31 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:31 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:31 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.246824 (min) -0.240679 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.139494 (min) 0.198876 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.98858 (min) 3.08053 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.90483 (min) -9.76338 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.52269e-05 (min) 2.76863e-05 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.127 (min) 299.893 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:31 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:31 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.564677, mean: 2.613325, max: 2.646846
14:47:31 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:31 DEBUG   opendrift.models.physics_methods:1058:    min: 8.724607, mean: 8.806930, max: 8.863269
14:47:31 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.724607, mean: 8.806930, max: 8.863269
14:47:31 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:31 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:31 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:31 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.204211 m/s - 0.207456 m/s)
14:47:31 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:31 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:31 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:31 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:31 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:31 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:31 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:31 INFO    opendrift.models.basemodel:1985: 2024-06-19 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
14:47:31 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:31 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:31 DEBUG   opendrift.models.basemodel:2004:               60.13350302164706 <- latitude  -> 60.20213835289127
14:47:31 DEBUG   opendrift.models.basemodel:2009:               4.088472207751823 <- longitude -> 4.147118579951334
14:47:31 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:31 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:31 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:31 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:31 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:31 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:47:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:31 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 08:00:00 (before)
                2024-06-19 09:00:00 (after)
14:47:32 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:32 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 29x30x2) for time before (2024-06-19 08:00:00)
14:47:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 08:00:00) in space  (linearNDFast)
14:47:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:32 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.91153868148666 and -65.85289232532367 degrees.
14:47:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.91153868148666 and -65.85289232532367 degrees.
14:47:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:32 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:32 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:32 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:32 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:32 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.231496 (min) -0.217131 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.124999 (min) 0.182465 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.13547 (min) 3.23279 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.06592 (min) -8.67529 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.03401e-05 (min) 1.07712e-05 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.434 (min) 299.934 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:32 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:32 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.108507, mean: 2.174615, max: 2.264029
14:47:32 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:32 DEBUG   opendrift.models.physics_methods:1058:    min: 7.910740, mean: 8.033594, max: 8.197296
14:47:32 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.910740, mean: 8.033594, max: 8.197296
14:47:32 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:32 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:32 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:32 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.185161 m/s - 0.191868 m/s)
14:47:32 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:32 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:32 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:32 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:32 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:32 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:32 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:32 INFO    opendrift.models.basemodel:1985: 2024-06-19 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
14:47:32 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:32 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:32 DEBUG   opendrift.models.basemodel:2004:               60.13168243483828 <- latitude  -> 60.202426914837645
14:47:32 DEBUG   opendrift.models.basemodel:2009:               4.077639545651944 <- longitude -> 4.137108382294909
14:47:32 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:32 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:32 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:32 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:32 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:32 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:47:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:32 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 09:00:00 (before)
                2024-06-19 10:00:00 (after)
14:47:33 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:33 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 30x30x2) for time before (2024-06-19 09:00:00)
14:47:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 09:00:00) in space  (linearNDFast)
14:47:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:33 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.92237134340463 and -65.86290252076641 degrees.
14:47:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.92237134340463 and -65.86290252076641 degrees.
14:47:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:33 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:33 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:33 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:33 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:33 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.215642 (min) -0.18756 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.104515 (min) 0.170251 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.89385 (min) 4.03417 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -8.26763 (min) -7.89559 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.07534e-05 (min) -1.98967e-05 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.635 (min) 299.893 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:33 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:33 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.933924, mean: 1.994847, max: 2.054486
14:47:33 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:33 DEBUG   opendrift.models.physics_methods:1058:    min: 7.576163, mean: 7.694448, max: 7.808744
14:47:33 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.576163, mean: 7.694448, max: 7.808744
14:47:33 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:33 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:33 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:33 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.177330 m/s - 0.182774 m/s)
14:47:33 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:33 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:33 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:33 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:33 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:33 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:33 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:33 INFO    opendrift.models.basemodel:1985: 2024-06-19 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
14:47:33 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:33 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:33 DEBUG   opendrift.models.basemodel:2004:               60.12971601872911 <- latitude  -> 60.20282478457285
14:47:33 DEBUG   opendrift.models.basemodel:2009:               4.068876698649028 <- longitude -> 4.130002227030134
14:47:33 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:33 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:33 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:47:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 10:00:00 (before)
                2024-06-19 11:00:00 (after)
14:47:34 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:34 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 29x30x2) for time before (2024-06-19 10:00:00)
14:47:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 10:00:00) in space  (linearNDFast)
14:47:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:34 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93113419940934 and -65.8700086882635 degrees.
14:47:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93113419940934 and -65.8700086882635 degrees.
14:47:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:34 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:34 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:34 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:34 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:34 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.196517 (min) -0.150698 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0936207 (min) 0.177306 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.27275 (min) 4.37807 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -7.10997 (min) -6.80009 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.11174e-05 (min) -5.06154e-05 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.711 (min) 299.771 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:34 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:34 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.609055, mean: 1.657435, max: 1.692677
14:47:34 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:34 DEBUG   opendrift.models.physics_methods:1058:    min: 6.910590, mean: 7.013651, max: 7.087883
14:47:34 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.910590, mean: 7.013651, max: 7.087883
14:47:34 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:34 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:34 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:34 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.161751 m/s - 0.165901 m/s)
14:47:34 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:34 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:34 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:34 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:34 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:34 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:34 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:34 INFO    opendrift.models.basemodel:1985: 2024-06-19 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
14:47:34 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:34 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:34 DEBUG   opendrift.models.basemodel:2004:               60.128145880453346 <- latitude  -> 60.20415864260082
14:47:34 DEBUG   opendrift.models.basemodel:2009:               4.061801952935204 <- longitude -> 4.12577529288954
14:47:34 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:34 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:34 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:34 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:34 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:47:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 11:00:00 (before)
                2024-06-19 12:00:00 (after)
14:47:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 30x31x2) for time before (2024-06-19 11:00:00)
14:47:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 11:00:00) in space  (linearNDFast)
14:47:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93820893870638 and -65.87423562571865 degrees.
14:47:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93820893870638 and -65.87423562571865 degrees.
14:47:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:35 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:35 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.167694 (min) -0.10936 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0943061 (min) 0.208381 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.50634 (min) 4.51827 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -5.96139 (min) -5.48336 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.15957e-05 (min) -6.02988e-05 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.722 (min) 299.671 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:35 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.240866, mean: 1.310978, max: 1.374977
14:47:35 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:35 DEBUG   opendrift.models.physics_methods:1058:    min: 6.068650, mean: 6.237479, max: 6.388182
14:47:35 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.068650, mean: 6.237479, max: 6.388182
14:47:35 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:35 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:35 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:35 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142045 m/s - 0.149524 m/s)
14:47:35 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:35 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:35 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:35 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:35 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:35 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:35 INFO    opendrift.models.basemodel:1985: 2024-06-19 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
14:47:35 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:35 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:35 DEBUG   opendrift.models.basemodel:2004:               60.127340296306855 <- latitude  -> 60.20734763928573
14:47:35 DEBUG   opendrift.models.basemodel:2009:               4.056774592173609 <- longitude -> 4.124535718742458
14:47:35 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:35 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 12:00:00 (before)
                2024-06-19 13:00:00 (after)
14:47:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 31x31x2) for time before (2024-06-19 12:00:00)
14:47:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 12:00:00) in space  (linearNDFast)
14:47:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.94323629681543 and -65.87547519770638 degrees.
14:47:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.94323629681543 and -65.87547519770638 degrees.
14:47:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:36 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:36 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.12521 (min) -0.0708357 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.103331 (min) 0.244403 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.94226 (min) 4.9862 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -4.74485 (min) -4.27926 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.74787e-05 (min) -4.67896e-05 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.705 (min) 299.629 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:36 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.062087, mean: 1.114024, max: 1.154712
14:47:36 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:36 DEBUG   opendrift.models.physics_methods:1058:    min: 5.614481, mean: 5.749963, max: 5.854186
14:47:36 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.614481, mean: 5.749963, max: 5.854186
14:47:36 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:36 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:36 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:36 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.131414 m/s - 0.137025 m/s)
14:47:36 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:36 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:36 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:36 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:36 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:36 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:36 INFO    opendrift.models.basemodel:1985: 2024-06-19 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
14:47:36 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:36 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:36 DEBUG   opendrift.models.basemodel:2004:               60.127612590780714 <- latitude  -> 60.21247885715796
14:47:36 DEBUG   opendrift.models.basemodel:2009:               4.05511904570878 <- longitude -> 4.126349345726042
14:47:36 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:36 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 13:00:00 (before)
                2024-06-19 14:00:00 (after)
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 31x32x2) for time before (2024-06-19 13:00:00)
14:47:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 13:00:00) in space  (linearNDFast)
14:47:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.944891841605 and -65.87366156174946 degrees.
14:47:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.944891841605 and -65.87366156174946 degrees.
14:47:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:37 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:37 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0857213 (min) -0.0419641 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.124012 (min) 0.27628 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.09825 (min) 5.17308 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.44858 (min) -2.72592 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.12476e-05 (min) -1.99418e-05 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.676 (min) 299.674 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:37 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.839951, mean: 0.895885, max: 0.931967
14:47:37 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:37 DEBUG   opendrift.models.physics_methods:1058:    min: 4.992942, mean: 5.156283, max: 5.259321
14:47:37 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.992942, mean: 5.156283, max: 5.259321
14:47:37 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:37 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:37 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:37 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.116866 m/s - 0.123101 m/s)
14:47:37 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:37 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:37 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:37 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:37 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:37 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:37 INFO    opendrift.models.basemodel:1985: 2024-06-19 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
14:47:37 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:37 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:37 DEBUG   opendrift.models.basemodel:2004:               60.12939084533397 <- latitude  -> 60.21964398795562
14:47:37 DEBUG   opendrift.models.basemodel:2009:               4.056265015796481 <- longitude -> 4.130235369490547
14:47:37 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:37 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 14:00:00 (before)
                2024-06-19 15:00:00 (after)
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 31x32x2) for time before (2024-06-19 14:00:00)
14:47:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 14:00:00) in space  (linearNDFast)
14:47:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9437458739329 and -65.86977555013081 degrees.
14:47:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9437458739329 and -65.86977555013081 degrees.
14:47:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:37 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:37 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0628774 (min) -0.0235868 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.150264 (min) 0.318496 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.3139 (min) 5.34364 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -1.45736 (min) -0.683495 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.28793e-06 (min) 7.57059e-06 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.685 (min) 299.785 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:37 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.713932, mean: 0.728576, max: 0.746890
14:47:37 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:37 DEBUG   opendrift.models.physics_methods:1058:    min: 4.603180, mean: 4.650099, max: 4.708234
14:47:37 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.603180, mean: 4.650099, max: 4.708234
14:47:37 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:37 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:37 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:37 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107743 m/s - 0.110202 m/s)
14:47:37 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:37 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:37 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:37 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:37 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:37 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:37 INFO    opendrift.models.basemodel:1985: 2024-06-19 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
14:47:37 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:37 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:37 DEBUG   opendrift.models.basemodel:2004:               60.13330414670705 <- latitude  -> 60.22949308129607
14:47:37 DEBUG   opendrift.models.basemodel:2009:               4.0591231891324355 <- longitude -> 4.1355918000352165
14:47:37 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:37 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 15:00:00 (before)
                2024-06-19 16:00:00 (after)
14:47:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 32x32x2) for time before (2024-06-19 15:00:00)
14:47:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 15:00:00) in space  (linearNDFast)
14:47:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.94088769891542 and -65.86441910687395 degrees.
14:47:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.94088769891542 and -65.86441910687395 degrees.
14:47:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:38 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:38 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.054148 (min) -0.0156247 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.172266 (min) 0.350853 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.68102 (min) 5.71284 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 0.0889425 (min) 1.0472 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.61839e-05 (min) 2.66589e-05 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.78 (min) 299.915 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:38 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.801240, mean: 0.804522, max: 0.823489
14:47:38 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:38 DEBUG   opendrift.models.physics_methods:1058:    min: 4.876531, mean: 4.886498, max: 4.943773
14:47:38 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 4.876531, mean: 4.886498, max: 4.943773
14:47:38 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:38 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:38 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:38 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.114142 m/s - 0.115715 m/s)
14:47:38 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:38 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:38 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:38 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:38 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:38 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:38 INFO    opendrift.models.basemodel:1985: 2024-06-19 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
14:47:38 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:38 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:38 DEBUG   opendrift.models.basemodel:2004:               60.13892763807888 <- latitude  -> 60.2415060460071
14:47:38 DEBUG   opendrift.models.basemodel:2009:               4.063000348876874 <- longitude -> 4.141973608787871
14:47:38 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:38 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 16:00:00 (before)
                2024-06-19 17:00:00 (after)
14:47:39 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:39 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 33x33x2) for time before (2024-06-19 16:00:00)
14:47:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 16:00:00) in space  (linearNDFast)
14:47:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:39 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9370105217128 and -65.85803731437207 degrees.
14:47:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9370105217128 and -65.85803731437207 degrees.
14:47:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:39 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:39 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:39 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:39 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:39 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0677887 (min) -0.0269125 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.181641 (min) 0.34556 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.69046 (min) 5.82076 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.96929 (min) 2.74151 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.27646e-05 (min) 3.50592e-05 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 294.954 (min) 299.991 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:39 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:39 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 0.891983, mean: 0.944168, max: 1.018368
14:47:39 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:39 DEBUG   opendrift.models.physics_methods:1058:    min: 5.145266, mean: 5.293252, max: 5.497711
14:47:39 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.145266, mean: 5.293252, max: 5.497711
14:47:39 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:39 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:39 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:39 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.120432 m/s - 0.128681 m/s)
14:47:39 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:39 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:39 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:39 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:39 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:39 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:39 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:39 INFO    opendrift.models.basemodel:1985: 2024-06-19 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
14:47:39 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:39 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:39 DEBUG   opendrift.models.basemodel:2004:               60.146069186940565 <- latitude  -> 60.254442840617195
14:47:39 DEBUG   opendrift.models.basemodel:2009:               4.066162082703959 <- longitude -> 4.1476047624825485
14:47:39 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:39 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:39 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:39 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 17:00:00 (before)
                2024-06-19 18:00:00 (after)
14:47:41 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:41 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 34x33x2) for time before (2024-06-19 17:00:00)
14:47:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 17:00:00) in space  (linearNDFast)
14:47:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:41 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93384879422732 and -65.85240614562522 degrees.
14:47:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93384879422732 and -65.85240614562522 degrees.
14:47:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:41 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:41 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:41 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:41 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:41 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0888876 (min) -0.0596333 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.183656 (min) 0.327129 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.6571 (min) 5.79512 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.41519 (min) 4.28935 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.69776e-05 (min) 3.98075e-05 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.257 (min) 299.97 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:41 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:41 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.113074, mean: 1.171718, max: 1.239872
14:47:41 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:41 DEBUG   opendrift.models.physics_methods:1058:    min: 5.747666, mean: 5.896861, max: 6.066217
14:47:41 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 5.747666, mean: 5.896861, max: 6.066217
14:47:41 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:41 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:41 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:41 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.134532 m/s - 0.141988 m/s)
14:47:41 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:41 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:41 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:41 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:41 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:41 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:41 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:41 INFO    opendrift.models.basemodel:1985: 2024-06-19 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
14:47:41 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:41 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:41 DEBUG   opendrift.models.basemodel:2004:               60.154210148343296 <- latitude  -> 60.267784279231435
14:47:41 DEBUG   opendrift.models.basemodel:2009:               4.06774013455322 <- longitude -> 4.151252270830983
14:47:41 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:41 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 18:00:00 (before)
                2024-06-19 19:00:00 (after)
14:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:42 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 34x34x2) for time before (2024-06-19 18:00:00)
14:47:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 18:00:00) in space  (linearNDFast)
14:47:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:42 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93227073703754 and -65.84875863705469 degrees.
14:47:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93227073703754 and -65.84875863705469 degrees.
14:47:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:42 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:42 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:42 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:42 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:42 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.116131 (min) -0.0919344 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.19446 (min) 0.296818 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.16948 (min) 5.28241 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.87974 (min) 5.53865 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.14349e-05 (min) 4.39032e-05 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.72 (min) 299.906 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:42 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:42 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.243169, mean: 1.341208, max: 1.440585
14:47:42 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:42 DEBUG   opendrift.models.physics_methods:1058:    min: 6.074278, mean: 6.308665, max: 6.538815
14:47:42 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.074278, mean: 6.308665, max: 6.538815
14:47:42 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:42 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:42 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:42 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142176 m/s - 0.153050 m/s)
14:47:42 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:42 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:42 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:42 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:42 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:42 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:42 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:42 INFO    opendrift.models.basemodel:1985: 2024-06-19 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
14:47:42 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:42 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:42 DEBUG   opendrift.models.basemodel:2004:               60.16364660591744 <- latitude  -> 60.28095357393545
14:47:42 DEBUG   opendrift.models.basemodel:2009:               4.067056351131725 <- longitude -> 4.151897558622366
14:47:42 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:42 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:42 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:42 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:47:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
14:47:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 19:00:00 (before)
                2024-06-19 20:00:00 (after)
14:47:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 34x34x2) for time before (2024-06-19 19:00:00)
14:47:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 19:00:00) in space  (linearNDFast)
14:47:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93295450870818 and -65.84811334377427 degrees.
14:47:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93295450870818 and -65.84811334377427 degrees.
14:47:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.143843 (min) -0.105577 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.193994 (min) 0.288387 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.01909 (min) 5.25348 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.8883 (min) 6.33628 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.77934e-05 (min) 3.86812e-05 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.413 (min) 300.146 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:43 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.472639, mean: 1.563277, max: 1.666588
14:47:43 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:43 DEBUG   opendrift.models.physics_methods:1058:    min: 6.611162, mean: 6.811122, max: 7.033050
14:47:43 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 6.611162, mean: 6.811122, max: 7.033050
14:47:43 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:43 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:43 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:43 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.154743 m/s - 0.164618 m/s)
14:47:43 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:43 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:43 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:43 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:43 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:43 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:43 INFO    opendrift.models.basemodel:1985: 2024-06-19 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
14:47:43 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:43 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:43 DEBUG   opendrift.models.basemodel:2004:               60.173719708239496 <- latitude  -> 60.29436577814097
14:47:43 DEBUG   opendrift.models.basemodel:2009:               4.06453358006553 <- longitude -> 4.151350098350986
14:47:43 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:43 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 20:00:00 (before)
                2024-06-19 21:00:00 (after)
14:47:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 35x35x2) for time before (2024-06-19 20:00:00)
14:47:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 20:00:00) in space  (linearNDFast)
14:47:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93547728268898 and -65.8486607958512 degrees.
14:47:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93547728268898 and -65.8486607958512 degrees.
14:47:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.14762 (min) -0.106198 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.176116 (min) 0.2914 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.44322 (min) 5.62742 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.70293 (min) 7.16513 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.06266e-05 (min) 2.10484e-05 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.173 (min) 300.413 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:44 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 1.834126, mean: 1.936015, max: 2.038441
14:47:44 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:44 DEBUG   opendrift.models.physics_methods:1058:    min: 7.378095, mean: 7.579876, max: 7.778192
14:47:44 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 7.378095, mean: 7.579876, max: 7.778192
14:47:44 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:44 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:44 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:44 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.172694 m/s - 0.182059 m/s)
14:47:44 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:44 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:44 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:44 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:44 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:44 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:44 INFO    opendrift.models.basemodel:1985: 2024-06-19 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
14:47:44 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:44 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:44 DEBUG   opendrift.models.basemodel:2004:               60.18374156536052 <- latitude  -> 60.30841087774192
14:47:44 DEBUG   opendrift.models.basemodel:2009:               4.0622343317533565 <- longitude -> 4.151475939218366
14:47:44 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:44 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 21:00:00 (before)
                2024-06-19 22:00:00 (after)
14:47:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 36x35x2) for time before (2024-06-19 21:00:00)
14:47:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 21:00:00) in space  (linearNDFast)
14:47:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9377765382815 and -65.84853495164798 degrees.
14:47:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.9377765382815 and -65.84853495164798 degrees.
14:47:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:45 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:45 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.139254 (min) -0.100686 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.166217 (min) 0.301373 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.52687 (min) 5.60419 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.69515 (min) 8.17099 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.02142e-05 (min) -9.55468e-06 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.792 (min) 300.647 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:45 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.208134, mean: 2.301770, max: 2.408610
14:47:45 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:45 DEBUG   opendrift.models.physics_methods:1058:    min: 8.095475, mean: 8.265056, max: 8.454984
14:47:45 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.095475, mean: 8.265056, max: 8.454984
14:47:45 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:45 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:45 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:45 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.189485 m/s - 0.197900 m/s)
14:47:45 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:45 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:45 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:45 DEBUG   opendrift.models.basemodel:840: to be seeded: 0, already seeded 1000
14:47:45 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:45 DEBUG   opendrift.models.basemodel:1984: ======================================================================
14:47:45 INFO    opendrift.models.basemodel:1985: 2024-06-19 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
14:47:45 DEBUG   opendrift.models.basemodel:1991: 0 elements scheduled.
14:47:45 DEBUG   opendrift.models.basemodel:1993: ======================================================================
14:47:45 DEBUG   opendrift.models.basemodel:2004:               60.19409752932023 <- latitude  -> 60.3234282594462
14:47:45 DEBUG   opendrift.models.basemodel:2009:               4.060696000972672 <- longitude -> 4.152116272424659
14:47:45 DEBUG   opendrift.models.basemodel:2012:               z = 0.0
14:47:45 DEBUG   opendrift.models.basemodel:2015: ---------------------------------
14:47:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47: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:47:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
14:47:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47: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:47:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-06-19 22:00:00 (before)
                2024-06-19 23:00:00 (after)
14:47:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
14:47:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
14:47:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
14:47:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
14:47:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
14:47:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 35x36x2) for time before (2024-06-19 22:00:00)
14:47:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-06-19 22:00:00) in space  (linearNDFast)
14:47:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
14:47:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
14:47:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93931485513963 and -65.84789461477476 degrees.
14:47:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.93931485513963 and -65.84789461477476 degrees.
14:47:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:46 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
14:47:46 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
14:47:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.13052 (min) -0.0946464 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.167651 (min) 0.326375 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.539 (min) 5.58594 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.27417 (min) 8.83892 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.38738e-05 (min) -4.2366e-05 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.243 (min) 300.78 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:46 DEBUG   opendrift.models.physics_methods:990: Calculating Hs from wind, min: 2.440408, mean: 2.524000, max: 2.676651
14:47:46 DEBUG   opendrift.models.physics_methods:1048: Calculating wave period Tm02 from wind
14:47:46 DEBUG   opendrift.models.physics_methods:1058:    min: 8.510613, mean: 8.654788, max: 8.913032
14:47:46 DEBUG   opendrift.models.physics_methods:998: Calculating wave period from wind, min: 8.510613, mean: 8.654788, max: 8.913032
14:47:46 DEBUG   opendrift.models.basemodel:699: No elements hit seafloor.
14:47:46 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:46 DEBUG   opendrift.models.basemodel:2056: Calling OceanDrift.update()
14:47:46 DEBUG   opendrift.models.physics_methods:912: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.199202 m/s - 0.208621 m/s)
14:47:46 DEBUG   opendrift.models.physics_methods:930: No Stokes drift velocity available
14:47:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
14:47:46 DEBUG   opendrift.models.basemodel:1608: Horizontal diffusivity is 0, no random walk.
14:47:46 DEBUG   opendrift.models.basemodel:2071: 1000 active elements (0 deactivated)
14:47:46 DEBUG   opendrift.models.basemodel:2100: Cleaning up
14:47:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
14:47:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
14:47:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
14:47:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
14:47:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
14:47:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
14:47:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
14:47:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
14:47:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
14:47:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
14:47:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
14:47:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
14:47:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
14:47:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
14:47:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
14:47:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
14:47:46 DEBUG   opendrift.models.basemodel:1657: No elements to deactivate
14:47:46 DEBUG   opendrift.models.basemodel:92: Changed mode from Mode.Run to Mode.Result
14:47:46 DEBUG   opendrift.models.basemodel:2310: Setting up map: corners=None, fast=False, lscale=None
14:47:46 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
/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:47:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:47:58 DEBUG   opendrift.models.basemodel:2987: Saving animation..
14:47:59 INFO    opendrift.models.basemodel:4547: Saving animation to /root/project/docs/source/gallery/animations/example_manual_aggregate_0.gif...
14:47:59 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:01 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:04 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:08 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:10 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:11 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:18 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:22 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:24 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:29 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:31 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:33 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:35 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:40 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:44 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:46 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:50 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:55 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:48:58 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:02 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:04 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:08 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:10 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:11 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:17 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:18 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:22 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:24 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:27 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:29 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:30 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:33 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:37 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:40 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:44 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:46 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:49 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:53 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:56 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:49:59 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:01 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:04 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:08 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:09 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:11 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:13 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:17 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:20 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:23 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:24 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:27 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:30 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:31 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:35 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:40 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:44 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:46 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:50 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:53 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:56 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:50:59 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:02 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:06 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:08 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:09 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:10 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:13 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:17 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (3.6551190376281744, 4.904944801330567, 59.794892120361325, 60.53968353271485)..
14:51:21 DEBUG   opendrift.models.basemodel:4585: MPLBACKEND = agg
14:51:21 DEBUG   opendrift.models.basemodel:4586: DISPLAY = None
14:51:21 DEBUG   opendrift.models.basemodel:4587: Time to save animation: 0:03:22.613813
14:51:21 INFO    opendrift.models.basemodel:2980: Time to make animation: 0:03:35.473772
../_images/example_manual_aggregate_0.gif

Total running time of the script: (10 minutes 16.341 seconds)

Gallery generated by Sphinx-Gallery