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-09-28 00:00:00   end: 2024-09-30 23:00:00   step: 0 days 01:00:00
    72 times (0 missing)
Variables:
  ocean_vertical_diffusivity
  x_wind
  y_wind
  sea_floor_depth_below_sea_level
  sea_water_salinity
  sea_water_temperature
  x_sea_water_velocity
  eastward_sea_water_velocity
  y_sea_water_velocity
  northward_sea_water_velocity
  upward_sea_water_velocity
  sea_surface_height
  latitude
  longitude
  wind_speed - derived from ['x_wind', 'y_wind']
  sea_water_speed - derived from ['x_sea_water_velocity', 'y_sea_water_velocity']
===========================

09:33:28 DEBUG   opendrift.config:168: Adding 18 config items from __init__
09:33:28 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
09:33:28 DEBUG   opendrift.config:168: Adding 5 config items from __init__
09:33:28 INFO    opendrift.models.basemodel:515: OpenDriftSimulation initialised (version 1.11.13 / v1.11.13-48-g5bea84b)
09:33:28 DEBUG   opendrift.config:168: Adding 15 config items from oceandrift
09:33:28 DEBUG   opendrift.config:178:   Overwriting config item seed:z
09:33:28 DEBUG   opendrift.models.basemodel.environment:328: Added reader NorKyst manual aggregate
09:33:28 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...
09:33:28 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
09:33:34 DEBUG   opendrift.models.basemodel.environment:328: Added reader global_landmask
09:33:34 INFO    opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_significant_height: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_to_direction: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_significant_height: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_to_direction: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_mean_period: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_significant_height: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    surface_downward_x_stress: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    surface_downward_y_stress: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    turbulent_kinetic_energy: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    turbulent_generic_length_scale: 0.000000
09:33:34 INFO    opendrift.models.basemodel.environment:248:    ocean_mixed_layer_thickness: 50.000000
09:33:34 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Config to Mode.Ready
09:33:34 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Ready to Mode.Run
09:33:35 DEBUG   opendrift.models.basemodel:1778:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.13
  Platform: Linux, 5.15.0-1057-aws
  68.5677490234375 GB memory
  36 processors (x86_64)
  NumPy version 1.26.4
  SciPy version 1.14.1
  Matplotlib version 3.9.1
  NetCDF4 version 1.6.1
  Xarray version 2024.9.0
  ADIOS (adios_db) version 1.1.1
  Copernicusmarine version 1.3.3
  Python version 3.11.6 | packaged by conda-forge | (main, Oct  3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------

09:33:35 DEBUG   opendrift.models.basemodel:1792: No output file is specified, neglecting export_buffer_length
09:33:35 DEBUG   opendrift.models.basemodel:1910: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2024-09-28 00:00:00 to 2024-09-30 23:00:00)
09:33:35 DEBUG   opendrift.models.basemodel.environment:180:    Preparing NorKyst manual aggregate for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
09:33:35 DEBUG   opendrift.readers.basereader.structured:153: Clearing cache for reader NorKyst manual aggregate before starting new simulation
09:33:35 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
09:33:35 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for NorKyst manual aggregate
09:33:35 DEBUG   opendrift.models.basemodel.environment:180:    Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
09:33:35 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
09:33:35 INFO    opendrift.models.basemodel:936: Using existing reader for land_binary_mask
09:33:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:33:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:33:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:33:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:33:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:33:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:33:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:33:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:33:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:33:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:33:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:33:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:33:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:33:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:33:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:33:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:33:35 INFO    opendrift.models.basemodel:947: All points are in ocean
09:33:35 DEBUG   opendrift.models.basemodel:891: to be seeded: 1000, already seeded 0
09:33:35 DEBUG   opendrift.models.basemodel:909: Released 1000 new elements.
09:33:35 WARNING opendrift.models.basemodel:730: 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.
09:33:35 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:33:35 INFO    opendrift.models.basemodel:2038: 2024-09-28 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
09:33:35 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:33:35 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:33:35 DEBUG   opendrift.models.basemodel:2057:               59.99731 <- latitude  -> 60.002846
09:33:35 DEBUG   opendrift.models.basemodel:2062:               4.4945407 <- longitude -> 4.504945
09:33:35 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:33:35 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:33:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:33:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:33:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:33:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:33:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:33:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:33:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:33:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 00:00:00 (before)
                2024-09-28 01:00:00 (after)
09:33:46 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:33:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:33:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:33:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:33:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:33:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:33:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-28 00:00:00)
09:33:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 00:00:00) in space  (linearNDFast)
09:33:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:33:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:33:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:33:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:33:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:33:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:33:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:33:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:33:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:33:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:33:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:33:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:33:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:33:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:33:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:33:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:33:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:33:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:33:46 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:33:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0709797 (min) -0.0611541 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.14892 (min) 0.1597 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.549814 (min) -0.546579 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.79791 (min) 7.81582 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.0082 (min) -9.99132 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.18288e-07 (min) -6.67602e-07 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:33:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:33:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.951648, mean: 3.959219, max: 3.966779
09:33:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:33:46 DEBUG   opendrift.models.physics_methods:1061:    min: 10.829757, mean: 10.840126, max: 10.850471
09:33:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.829757, mean: 10.840126, max: 10.850471
09:33:46 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:33:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:33:46 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:33:46 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:33:46 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.253485 m/s - 0.253969 m/s)
09:33:46 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:33:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:33:46 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:33:46 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:33:46 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:33:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:33:46 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:33:46 INFO    opendrift.models.basemodel:2038: 2024-09-28 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
09:33:46 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:33:46 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:33:46 DEBUG   opendrift.models.basemodel:2057:               59.99598682331655 <- latitude  -> 60.00120988963378
09:33:46 DEBUG   opendrift.models.basemodel:2062:               4.500090039948908 <- longitude -> 4.511017331860532
09:33:46 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:33:46 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:33:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:33:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:33:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:33:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:33:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:33:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:33:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:33:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 01:00:00 (before)
                2024-09-28 02:00:00 (after)
09:34:01 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:34:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:34:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:34:01 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:34:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:34:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:34:01 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-28 01:00:00)
09:34:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 01:00:00) in space  (linearNDFast)
09:34:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:34:01 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:34:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49992087865664 and -65.4889935948703 degrees.
09:34:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49992087865664 and -65.4889935948703 degrees.
09:34:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:34:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:34:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:34:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:34:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:34:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:34:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:34:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:34:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:34:01 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:34:01 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:34:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:34:01 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:34:01 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:34:01 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:34:01 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0543857 (min) -0.0448595 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.230996 (min) 0.234283 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.511471 (min) -0.507768 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.11589 (min) 7.14331 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.27841 (min) -9.24401 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.08055e-06 (min) 6.05313e-06 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.406 (min) 298.685 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:34:01 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:34:01 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.351456, mean: 3.360848, max: 3.370510
09:34:01 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:34:01 DEBUG   opendrift.models.physics_methods:1061:    min: 9.973471, mean: 9.987435, max: 10.001783
09:34:01 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.973471, mean: 9.987435, max: 10.001783
09:34:01 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:34:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:34:01 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:34:01 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:34:01 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.233442 m/s - 0.234105 m/s)
09:34:01 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:34:01 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:34:01 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:34:01 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:34:01 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:34:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:34:01 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:34:01 INFO    opendrift.models.basemodel:2038: 2024-09-28 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
09:34:01 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:34:01 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:34:01 DEBUG   opendrift.models.basemodel:2057:               59.9975462342305 <- latitude  -> 60.002710103697915
09:34:01 DEBUG   opendrift.models.basemodel:2062:               4.505843015007007 <- longitude -> 4.51721494419984
09:34:01 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:34:01 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:34:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:34:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:34:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:34:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:34:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:34:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:34:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:34:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 02:00:00 (before)
                2024-09-28 03:00:00 (after)
09:34:16 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:34:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:34:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:34:16 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:34:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:34:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:34:16 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 02:00:00)
09:34:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 02:00:00) in space  (linearNDFast)
09:34:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:34:16 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:34:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49416791440083 and -65.48279598527043 degrees.
09:34:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49416791440083 and -65.48279598527043 degrees.
09:34:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:34:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:34:16 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:34:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:34:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:34:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:34:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:34:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:34:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:34:16 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:34:16 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:34:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:34:16 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:34:16 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:34:16 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:34:16 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0295427 (min) -0.0163969 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.298677 (min) 0.313405 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.45612 (min) -0.452387 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 9.0571 (min) 9.11631 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -6.52719 (min) -6.42713 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.68174e-05 (min) 1.83283e-05 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.565 (min) 298.849 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:34:16 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:34:16 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.034386, mean: 3.063344, max: 3.085431
09:34:16 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:34:16 DEBUG   opendrift.models.physics_methods:1061:    min: 9.489974, mean: 9.535140, max: 9.569462
09:34:16 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.489974, mean: 9.535140, max: 9.569462
09:34:16 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:34:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:34:16 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:34:16 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:34:16 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.222125 m/s - 0.223986 m/s)
09:34:16 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:34:16 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:34:16 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:34:16 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:34:16 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:34:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:34:16 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:34:16 INFO    opendrift.models.basemodel:2038: 2024-09-28 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
09:34:16 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:34:16 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:34:16 DEBUG   opendrift.models.basemodel:2057:               60.00314973820235 <- latitude  -> 60.00856220683951
09:34:16 DEBUG   opendrift.models.basemodel:2062:               4.515983915932329 <- longitude -> 4.527498076019081
09:34:16 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:34:16 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:34:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:34:16 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:34:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:34:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:34:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:34:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:34:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:34:16 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 03:00:00 (before)
                2024-09-28 04:00:00 (after)
09:34:32 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:34:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:34:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:34:32 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:34:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:34:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:34:32 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 03:00:00)
09:34:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 03:00:00) in space  (linearNDFast)
09:34:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:34:32 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:34:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48402701045424 and -65.47251284755802 degrees.
09:34:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48402701045424 and -65.47251284755802 degrees.
09:34:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:34:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:34:32 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:34:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:34:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:34:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:34:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:34:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:34:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:34:32 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:34:32 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:34:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:34:32 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:34:32 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:34:32 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:34:32 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00382359 (min) 0.0207772 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.351423 (min) 0.373608 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.361615 (min) -0.358239 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 10.6764 (min) 10.8392 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -0.82946 (min) -0.802465 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.72373e-05 (min) 1.82752e-05 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.947 (min) 299.199 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:34:32 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:34:32 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.820854, mean: 2.862103, max: 2.906074
09:34:32 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:34:32 DEBUG   opendrift.models.physics_methods:1061:    min: 9.149975, mean: 9.216598, max: 9.287159
09:34:32 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.149975, mean: 9.216598, max: 9.287159
09:34:32 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:34:32 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:34:32 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:34:32 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:34:32 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.214167 m/s - 0.217378 m/s)
09:34:32 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:34:32 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:34:32 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:34:32 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:34:32 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:34:32 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:34:32 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:34:32 INFO    opendrift.models.basemodel:2038: 2024-09-28 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
09:34:32 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:34:32 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:34:32 DEBUG   opendrift.models.basemodel:2057:               60.01414740715076 <- latitude  -> 60.01989792789985
09:34:32 DEBUG   opendrift.models.basemodel:2062:               4.530931067668229 <- longitude -> 4.541962714167277
09:34:32 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:34:32 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:34:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:34:32 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:34:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:34:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:34:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:34:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:34:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:34:32 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 04:00:00 (before)
                2024-09-28 05:00:00 (after)
09:34:46 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:34:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:34:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:34:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:34:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:34:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:34:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 04:00:00)
09:34:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 04:00:00) in space  (linearNDFast)
09:34:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:34:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:34:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46907984375937 and -65.45804819802184 degrees.
09:34:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46907984375937 and -65.45804819802184 degrees.
09:34:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:34:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:34:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:34:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:34:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:34:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:34:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:34:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:34:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:34:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:34:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:34:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:34:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:34:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:34:46 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:34:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00581764 (min) 0.0149896 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.291083 (min) 0.312593 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.253597 (min) -0.250289 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.62571 (min) 2.8006 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -12.9422 (min) -12.901 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.98585e-05 (min) 3.0482e-05 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.457 (min) 299.64 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:34:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:34:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.276168, mean: 4.291166, max: 4.306809
09:34:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:34:46 DEBUG   opendrift.models.physics_methods:1061:    min: 11.265668, mean: 11.285406, max: 11.305958
09:34:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.265668, mean: 11.285406, max: 11.305958
09:34:46 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:34:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:34:46 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:34:46 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:34:46 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.263688 m/s - 0.264631 m/s)
09:34:46 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:34:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:34:46 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:34:46 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:34:46 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:34:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:34:46 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:34:46 INFO    opendrift.models.basemodel:2038: 2024-09-28 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
09:34:46 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:34:46 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:34:46 DEBUG   opendrift.models.basemodel:2057:               60.01532891306867 <- latitude  -> 60.02138074639194
09:34:46 DEBUG   opendrift.models.basemodel:2062:               4.535168751052295 <- longitude -> 4.545799935578727
09:34:46 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:34:46 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:34:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:34:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:34:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:34:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:34:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:34:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:34:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:34:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 05:00:00 (before)
                2024-09-28 06:00:00 (after)
09:35:01 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:35:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:35:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:35:01 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:35:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:35:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:35:01 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 05:00:00)
09:35:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 05:00:00) in space  (linearNDFast)
09:35:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:35:01 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:35:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46484216568875 and -65.45421099131599 degrees.
09:35:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46484216568875 and -65.45421099131599 degrees.
09:35:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:35:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:35:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:35:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:35:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:35:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:35:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:35:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:35:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:35:01 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:35:01 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:35:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:35:01 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:35:01 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:35:01 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:35:01 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0188386 (min) 0.00345169 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.203518 (min) 0.222964 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.153945 (min) -0.151576 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.62586 (min) 5.84098 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -13.398 (min) -13.2892 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.53117e-05 (min) 3.57348e-05 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.534 (min) 299.7 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:35:01 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:35:01 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.130181, mean: 5.191511, max: 5.255160
09:35:01 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:35:01 DEBUG   opendrift.models.physics_methods:1061:    min: 12.339453, mean: 12.412963, max: 12.488854
09:35:01 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.339453, mean: 12.412963, max: 12.488854
09:35:01 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:35:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:35:01 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:35:01 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:35:01 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.288821 m/s - 0.292318 m/s)
09:35:01 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:35:01 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:35:01 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:35:01 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:35:01 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:35:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:35:01 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:35:01 INFO    opendrift.models.basemodel:2038: 2024-09-28 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
09:35:01 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:35:01 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:35:01 DEBUG   opendrift.models.basemodel:2057:               60.01340481721519 <- latitude  -> 60.01969599489121
09:35:01 DEBUG   opendrift.models.basemodel:2062:               4.541857894267131 <- longitude -> 4.552973459808662
09:35:01 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:35:01 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:35:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:35:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:35:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:35:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:35:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:35:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:35:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:35:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 06:00:00 (before)
                2024-09-28 07:00:00 (after)
09:35:15 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:35:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:35:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:35:15 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:35:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:35:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:35:15 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 06:00:00)
09:35:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 06:00:00) in space  (linearNDFast)
09:35:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:35:15 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:35:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45815302075283 and -65.44703744896354 degrees.
09:35:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45815302075283 and -65.44703744896354 degrees.
09:35:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:35:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:35:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:35:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:35:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:35:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:35:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:35:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:35:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:35:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:35:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:35:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:35:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:35:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:35:15 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:35:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0146671 (min) 0.00823379 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.111992 (min) 0.136789 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0423056 (min) -0.0399339 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 9.08678 (min) 9.31416 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -12.1873 (min) -12.0598 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.12473e-05 (min) 2.15272e-05 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.587 (min) 299.746 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:35:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:35:15 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.685056, mean: 5.701689, max: 5.714938
09:35:15 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:35:15 DEBUG   opendrift.models.physics_methods:1061:    min: 12.989635, mean: 13.008623, max: 13.023728
09:35:15 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.989635, mean: 13.008623, max: 13.023728
09:35:15 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:35:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:35:15 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:35:15 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:35:15 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.304039 m/s - 0.304837 m/s)
09:35:15 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:35:15 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:35:15 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:35:15 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:35:15 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:35:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:35:15 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:35:15 INFO    opendrift.models.basemodel:2038: 2024-09-28 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
09:35:15 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:35:15 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:35:15 DEBUG   opendrift.models.basemodel:2057:               60.00929893222761 <- latitude  -> 60.01601306372431
09:35:15 DEBUG   opendrift.models.basemodel:2062:               4.553946000751301 <- longitude -> 4.564391369765924
09:35:15 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:35:15 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:35:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:35:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:35:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:35:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:35:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:35:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:35:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:35:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 07:00:00 (before)
                2024-09-28 08:00:00 (after)
09:35:30 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:35:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:35:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:35:30 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:35:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:35:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:35:30 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 07:00:00)
09:35:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 07:00:00) in space  (linearNDFast)
09:35:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:35:30 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:35:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44606491322621 and -65.43561955623291 degrees.
09:35:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44606491322621 and -65.43561955623291 degrees.
09:35:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:35:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:35:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:35:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:35:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:35:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:35:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:35:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:35:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:35:30 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:35:30 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:35:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:35:30 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:35:30 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:35:30 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:35:30 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0356566 (min) -0.0170596 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0182805 (min) 0.0286038 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0025568 (min) 0.00360141 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.47145 (min) 7.53318 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -13.7185 (min) -13.6813 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.15897e-06 (min) -1.79169e-06 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.65 (min) 299.806 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:35:30 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:35:30 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.994050, mean: 6.001595, max: 6.009352
09:35:30 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:35:30 DEBUG   opendrift.models.physics_methods:1061:    min: 13.337971, mean: 13.346363, max: 13.354986
09:35:30 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.337971, mean: 13.346363, max: 13.354986
09:35:30 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:35:30 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:35:30 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:35:30 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:35:30 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.312193 m/s - 0.312591 m/s)
09:35:30 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:35:30 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:35:30 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:35:30 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:35:30 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:35:30 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:35:30 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:35:30 INFO    opendrift.models.basemodel:2038: 2024-09-28 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
09:35:30 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:35:30 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:35:30 DEBUG   opendrift.models.basemodel:2057:               60.00102370770965 <- latitude  -> 60.00798147184775
09:35:30 DEBUG   opendrift.models.basemodel:2062:               4.5620672796823385 <- longitude -> 4.572334902421424
09:35:30 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:35:30 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:35:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:35:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:35:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:35:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:35:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:35:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:35:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:35:30 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 08:00:00 (before)
                2024-09-28 09:00:00 (after)
09:35:46 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:35:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:35:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:35:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:35:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:35:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:35:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 08:00:00)
09:35:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 08:00:00) in space  (linearNDFast)
09:35:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:35:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:35:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4379436230204 and -65.42767601672509 degrees.
09:35:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4379436230204 and -65.42767601672509 degrees.
09:35:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:35:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:35:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:35:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:35:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:35:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:35:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:35:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:35:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:35:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:35:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:35:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:35:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:35:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:35:46 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:35:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0449368 (min) -0.027608 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0347764 (min) -0.027822 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0512779 (min) -0.0502287 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.35508 (min) 7.49622 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.716 (min) -11.559 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.63556e-05 (min) -3.62655e-05 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.542 (min) 299.747 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:35:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:35:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.662257, mean: 4.686530, max: 4.711621
09:35:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:35:46 DEBUG   opendrift.models.physics_methods:1061:    min: 11.763260, mean: 11.793836, max: 11.825371
09:35:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.763260, mean: 11.793836, max: 11.825371
09:35:46 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:35:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:35:46 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:35:46 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:35:46 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.275334 m/s - 0.276788 m/s)
09:35:46 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:35:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:35:46 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:35:46 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:35:46 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:35:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:35:46 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:35:46 INFO    opendrift.models.basemodel:2038: 2024-09-28 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
09:35:46 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:35:46 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:35:46 DEBUG   opendrift.models.basemodel:2057:               59.99257021863859 <- latitude  -> 59.9994194690917
09:35:46 DEBUG   opendrift.models.basemodel:2062:               4.569147134940242 <- longitude -> 4.579868977695549
09:35:46 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:35:46 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:35:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:35:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:35:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:35:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:35:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:35:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:35:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:35:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 09:00:00 (before)
                2024-09-28 10:00:00 (after)
09:36:01 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:36:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:36:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:36:01 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:36:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:36:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:36:01 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 09:00:00)
09:36:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 09:00:00) in space  (linearNDFast)
09:36:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:36:01 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:36:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43086378704331 and -65.42014192365887 degrees.
09:36:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43086378704331 and -65.42014192365887 degrees.
09:36:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:36:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:36:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:36:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:36:01 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:36:01 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:36:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:01 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:36:01 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:36:01 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:36:01 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0715792 (min) -0.0542181 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0438261 (min) -0.0397252 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.182242 (min) -0.180915 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.58624 (min) 7.70227 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.7456 (min) -10.7298 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.83182e-05 (min) -4.79325e-05 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.356 (min) 299.639 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:36:01 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:36:01 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.252755, mean: 4.272141, max: 4.292553
09:36:01 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:36:01 DEBUG   opendrift.models.physics_methods:1061:    min: 11.234785, mean: 11.260360, max: 11.287232
09:36:01 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.234785, mean: 11.260360, max: 11.287232
09:36:01 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:36:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:01 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:36:01 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:36:01 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.262965 m/s - 0.264192 m/s)
09:36:01 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:36:01 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:36:01 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:36:01 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:36:01 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:36:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:01 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:36:01 INFO    opendrift.models.basemodel:2038: 2024-09-28 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
09:36:01 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:36:01 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:36:01 DEBUG   opendrift.models.basemodel:2057:               59.9842922015455 <- latitude  -> 59.99113404302739
09:36:01 DEBUG   opendrift.models.basemodel:2062:               4.574848985785719 <- longitude -> 4.58581484081167
09:36:01 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:36:01 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:36:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:36:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:36:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:36:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 10:00:00 (before)
                2024-09-28 11:00:00 (after)
09:36:12 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:36:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:36:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:36:12 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:36:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:36:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:36:12 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 10:00:00)
09:36:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 10:00:00) in space  (linearNDFast)
09:36:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:36:12 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:36:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42516194887678 and -65.41419607757445 degrees.
09:36:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42516194887678 and -65.41419607757445 degrees.
09:36:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:36:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:36:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:36:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:36:12 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:36:12 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:36:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:12 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:36:12 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:36:12 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:36:12 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.112884 (min) -0.0977928 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0553602 (min) -0.0529977 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.347228 (min) -0.345753 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.50285 (min) 6.71082 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -12.3976 (min) -12.2938 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.23923e-05 (min) -4.23062e-05 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.094 (min) 299.466 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:36:12 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:36:12 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.782928, mean: 4.826503, max: 4.870167
09:36:12 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:36:12 DEBUG   opendrift.models.physics_methods:1061:    min: 11.914520, mean: 11.968655, max: 12.022685
09:36:12 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.914520, mean: 11.968655, max: 12.022685
09:36:12 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:36:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:12 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:36:12 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:36:12 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.278875 m/s - 0.281407 m/s)
09:36:12 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:36:12 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:36:12 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:36:12 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:36:12 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:36:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:12 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:36:12 INFO    opendrift.models.basemodel:2038: 2024-09-28 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
09:36:12 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:36:12 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:36:12 DEBUG   opendrift.models.basemodel:2057:               59.97458709592594 <- latitude  -> 59.98143017410297
09:36:12 DEBUG   opendrift.models.basemodel:2062:               4.576524678938837 <- longitude -> 4.5875729834608165
09:36:12 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:36:12 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:36:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:36:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:36:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:36:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 11:00:00 (before)
                2024-09-28 12:00:00 (after)
09:36:23 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:36:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:36:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:36:23 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:36:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:36:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:36:23 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 11:00:00)
09:36:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 11:00:00) in space  (linearNDFast)
09:36:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:36:23 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:36:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42348623877781 and -65.41243793540315 degrees.
09:36:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42348623877781 and -65.41243793540315 degrees.
09:36:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:36:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:36:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:36:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:36:23 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:36:23 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:36:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:23 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:36:23 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:36:23 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:36:23 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.17801 (min) -0.165694 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.00180894 (min) 0.00829337 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.471207 (min) -0.469583 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.42101 (min) 4.8497 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.43724 (min) -9.03712 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.56338e-05 (min) -2.55825e-05 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.583 (min) 299.088 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:36:23 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:36:23 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.489887, mean: 2.632950, max: 2.767482
09:36:23 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:36:23 DEBUG   opendrift.models.physics_methods:1061:    min: 8.596456, mean: 8.839660, max: 9.062999
09:36:23 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.596456, mean: 8.839660, max: 9.062999
09:36:23 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:36:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:23 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:36:23 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:36:23 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.201211 m/s - 0.212131 m/s)
09:36:23 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:36:23 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:36:23 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:36:23 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:36:23 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:36:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:23 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:36:23 INFO    opendrift.models.basemodel:2038: 2024-09-28 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
09:36:23 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:36:23 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:36:23 DEBUG   opendrift.models.basemodel:2057:               59.96900757514857 <- latitude  -> 59.9754210338822
09:36:23 DEBUG   opendrift.models.basemodel:2062:               4.571410052214917 <- longitude -> 4.582408319662662
09:36:23 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:36:23 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:36:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:36:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:36:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:36:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 12:00:00 (before)
                2024-09-28 13:00:00 (after)
09:36:34 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:36:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:36:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:36:34 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:36:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:36:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:36:34 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 12:00:00)
09:36:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 12:00:00) in space  (linearNDFast)
09:36:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:36:34 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:36:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42860087428005 and -65.41760260334848 degrees.
09:36:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42860087428005 and -65.41760260334848 degrees.
09:36:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:36:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:36:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:36:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:36:34 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:36:34 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:36:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:34 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:36:34 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:36:34 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:36:34 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.1981 (min) -0.191603 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0753191 (min) 0.0782643 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.530195 (min) -0.528429 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.37328 (min) 8.58289 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.69398 (min) -9.67393 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.39079e-06 (min) -3.17633e-06 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.086 (min) 298.678 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:36:34 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:36:34 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.033469, mean: 4.074310, max: 4.114628
09:36:34 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:36:34 DEBUG   opendrift.models.physics_methods:1061:    min: 10.941301, mean: 10.996539, max: 11.050829
09:36:34 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.941301, mean: 10.996539, max: 11.050829
09:36:34 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:36:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:34 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:36:34 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:36:34 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.256095 m/s - 0.258659 m/s)
09:36:34 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:36:34 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:36:34 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:36:34 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:36:34 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:36:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:34 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:36:34 INFO    opendrift.models.basemodel:2038: 2024-09-28 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
09:36:34 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:36:34 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:36:34 DEBUG   opendrift.models.basemodel:2057:               59.96527068763908 <- latitude  -> 59.971601958793414
09:36:34 DEBUG   opendrift.models.basemodel:2062:               4.569484813881404 <- longitude -> 4.581013722421065
09:36:34 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:36:34 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:36:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:36:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:36:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:36:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 13:00:00 (before)
                2024-09-28 14:00:00 (after)
09:36:45 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:36:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:36:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:36:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:36:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:36:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:36:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 13:00:00)
09:36:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 13:00:00) in space  (linearNDFast)
09:36:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:36:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:36:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.430526113098 and -65.41899720263115 degrees.
09:36:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.430526113098 and -65.41899720263115 degrees.
09:36:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:36:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:36:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:36:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:36:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:36:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:36:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:36:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:36:45 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:36:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.205962 (min) -0.20405 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.154013 (min) 0.156636 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.51312 (min) -0.511477 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.43688 (min) 6.59079 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.01909 (min) -8.93252 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.0406e-05 (min) 1.06267e-05 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.76 (min) 298.41 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:36:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:36:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.004433, mean: 3.028253, max: 3.053666
09:36:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:36:45 DEBUG   opendrift.models.physics_methods:1061:    min: 9.443018, mean: 9.480368, max: 9.520075
09:36:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.443018, mean: 9.480368, max: 9.520075
09:36:45 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:36:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:45 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:36:45 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:36:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.221026 m/s - 0.222830 m/s)
09:36:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:36:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:36:45 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:36:45 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:36:45 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:36:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:45 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:36:45 INFO    opendrift.models.basemodel:2038: 2024-09-28 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
09:36:45 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:36:45 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:36:45 DEBUG   opendrift.models.basemodel:2057:               59.96449442241466 <- latitude  -> 59.970803289000095
09:36:45 DEBUG   opendrift.models.basemodel:2062:               4.564609444771728 <- longitude -> 4.576240198910232
09:36:45 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:36:45 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:36:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:36:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:36:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:36:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 14:00:00 (before)
                2024-09-28 15:00:00 (after)
09:36:57 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:36:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:36:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:36:57 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:36:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:36:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:36:57 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-09-28 14:00:00)
09:36:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 14:00:00) in space  (linearNDFast)
09:36:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:36:57 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:36:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4354014778414 and -65.42377073035837 degrees.
09:36:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4354014778414 and -65.42377073035837 degrees.
09:36:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:36:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:36:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:36:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:36:57 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:36:57 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:36:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:36:57 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:36:57 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:36:57 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:36:57 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.183989 (min) -0.181141 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.23096 (min) 0.237291 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.465338 (min) -0.463517 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.72428 (min) 6.84099 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.24231 (min) -8.94099 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.67866e-05 (min) 1.68804e-05 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.593 (min) 298.264 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:36:57 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:36:57 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.114347, mean: 3.165859, max: 3.220025
09:36:57 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:36:57 DEBUG   opendrift.models.physics_methods:1061:    min: 9.614198, mean: 9.693347, max: 9.775956
09:36:57 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.614198, mean: 9.693347, max: 9.775956
09:36:57 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:36:57 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:57 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:36:57 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:36:57 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.225033 m/s - 0.228819 m/s)
09:36:57 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:36:57 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:36:57 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:36:57 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:36:57 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:36:57 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:36:57 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:36:57 INFO    opendrift.models.basemodel:2038: 2024-09-28 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
09:36:57 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:36:57 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:36:57 DEBUG   opendrift.models.basemodel:2057:               59.96629263731455 <- latitude  -> 59.972328163203215
09:36:57 DEBUG   opendrift.models.basemodel:2062:               4.561585228737827 <- longitude -> 4.573236588564224
09:36:57 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:36:57 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:36:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:36:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:36:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:36:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:36:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:36:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:36:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:36:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 15:00:00 (before)
                2024-09-28 16:00:00 (after)
09:37:08 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:37:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:37:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:37:08 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:37:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:37:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:37:08 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-09-28 15:00:00)
09:37:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 15:00:00) in space  (linearNDFast)
09:37:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:37:08 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:37:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43842569917958 and -65.42677433288067 degrees.
09:37:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43842569917958 and -65.42677433288067 degrees.
09:37:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:37:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:37:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:37:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:37:08 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:37:08 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:37:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:08 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:37:08 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:37:08 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:37:08 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.146099 (min) -0.138259 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.283293 (min) 0.291625 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.398722 (min) -0.396273 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.13445 (min) 5.19684 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.97037 (min) -9.92675 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.07432e-05 (min) 2.08606e-05 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.685 (min) 298.307 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:37:08 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:37:08 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.072614, mean: 3.090601, max: 3.109819
09:37:08 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:37:08 DEBUG   opendrift.models.physics_methods:1061:    min: 9.549565, mean: 9.577472, max: 9.607206
09:37:08 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.549565, mean: 9.577472, max: 9.607206
09:37:08 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:37:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:08 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:37:08 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:37:08 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.223520 m/s - 0.224869 m/s)
09:37:08 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:37:08 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:37:08 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:37:08 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:37:08 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:37:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:08 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:37:08 INFO    opendrift.models.basemodel:2038: 2024-09-28 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
09:37:08 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:37:08 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:37:08 DEBUG   opendrift.models.basemodel:2057:               59.96912218008731 <- latitude  -> 59.975141143349646
09:37:08 DEBUG   opendrift.models.basemodel:2062:               4.5588347427532 <- longitude -> 4.570939633278482
09:37:08 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:37:08 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:37:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:37:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:37:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:37:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 16:00:00 (before)
                2024-09-28 17:00:00 (after)
09:37:19 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:37:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:37:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:37:19 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:37:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:37:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:37:19 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 16:00:00)
09:37:19 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 16:00:00) in space  (linearNDFast)
09:37:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:37:19 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:37:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44117618456863 and -65.42907129678548 degrees.
09:37:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44117618456863 and -65.42907129678548 degrees.
09:37:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:19 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:37:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:37:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:19 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:37:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:37:19 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:37:19 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:37:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:19 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:37:19 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:37:19 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:37:19 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0899179 (min) -0.0743416 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.283216 (min) 0.296022 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.319995 (min) -0.316939 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.63927 (min) 7.89062 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.66448 (min) -9.55588 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.45515e-05 (min) 2.47932e-05 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.85 (min) 298.439 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:37:19 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:37:19 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.681961, mean: 3.756148, max: 3.829335
09:37:19 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:37:19 DEBUG   opendrift.models.physics_methods:1061:    min: 10.453679, mean: 10.558413, max: 10.660836
09:37:19 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.453679, mean: 10.558413, max: 10.660836
09:37:19 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:37:19 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:19 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:37:19 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:37:19 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244682 m/s - 0.249531 m/s)
09:37:19 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:37:19 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:37:19 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:37:19 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:37:19 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:37:19 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:19 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:37:19 INFO    opendrift.models.basemodel:2038: 2024-09-28 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
09:37:19 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:37:19 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:37:19 DEBUG   opendrift.models.basemodel:2057:               59.97226081082776 <- latitude  -> 59.978213546503724
09:37:19 DEBUG   opendrift.models.basemodel:2062:               4.563048568348199 <- longitude -> 4.576176101417797
09:37:19 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:37:19 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:37:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:19 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:37:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:37:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:19 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:37:19 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 17:00:00 (before)
                2024-09-28 18:00:00 (after)
09:37:30 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:37:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:37:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:37:30 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:37:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:37:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:37:30 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 17:00:00)
09:37:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 17:00:00) in space  (linearNDFast)
09:37:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:37:30 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:37:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43696235577583 and -65.42383483028924 degrees.
09:37:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43696235577583 and -65.42383483028924 degrees.
09:37:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:37:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:37:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:37:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:37:30 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:37:30 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:37:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:30 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:37:30 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:37:30 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:37:30 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0511324 (min) -0.0340519 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.235387 (min) 0.249732 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.213568 (min) -0.210538 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.61812 (min) 6.6562 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -8.38329 (min) -8.3195 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.59169e-05 (min) 3.60283e-05 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.177 (min) 298.727 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:37:30 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:37:30 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.780135, mean: 2.799838, max: 2.818780
09:37:30 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:37:30 DEBUG   opendrift.models.physics_methods:1061:    min: 9.083694, mean: 9.115820, max: 9.146610
09:37:30 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.083694, mean: 9.115820, max: 9.146610
09:37:30 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:37:30 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:30 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:37:30 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:37:30 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.212616 m/s - 0.214088 m/s)
09:37:30 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:37:30 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:37:30 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:37:30 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:37:30 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:37:30 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:30 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:37:30 INFO    opendrift.models.basemodel:2038: 2024-09-28 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
09:37:30 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:37:30 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:37:30 DEBUG   opendrift.models.basemodel:2057:               59.974726049486236 <- latitude  -> 59.98052361175303
09:37:30 DEBUG   opendrift.models.basemodel:2062:               4.568485334255289 <- longitude -> 4.582427680363172
09:37:30 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:37:30 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:37:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:37:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:37:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:37:30 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 18:00:00 (before)
                2024-09-28 19:00:00 (after)
09:37:42 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:37:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:37:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:37:42 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:37:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:37:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:37:42 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 18:00:00)
09:37:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 18:00:00) in space  (linearNDFast)
09:37:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:37:42 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:37:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43152560414417 and -65.4175832458651 degrees.
09:37:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43152560414417 and -65.4175832458651 degrees.
09:37:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:37:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:37:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:37:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:37:42 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:37:42 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:37:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:42 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:37:42 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:37:42 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:37:42 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0325415 (min) -0.0156809 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.176577 (min) 0.192798 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0987683 (min) -0.0954907 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.34135 (min) 7.68776 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -5.43887 (min) -5.30449 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.8605e-05 (min) 2.86868e-05 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.448 (min) 298.96 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:37:42 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:37:42 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.038238, mean: 2.097468, max: 2.152377
09:37:42 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:37:42 DEBUG   opendrift.models.physics_methods:1061:    min: 7.777804, mean: 7.889918, max: 7.992613
09:37:42 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.777804, mean: 7.889918, max: 7.992613
09:37:42 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:37:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:42 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:37:42 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:37:42 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.182050 m/s - 0.187078 m/s)
09:37:42 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:37:42 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:37:42 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:37:42 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:37:42 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:37:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:42 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:37:42 INFO    opendrift.models.basemodel:2038: 2024-09-28 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
09:37:42 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:37:42 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:37:42 DEBUG   opendrift.models.basemodel:2057:               59.97727655544682 <- latitude  -> 59.982936484822446
09:37:42 DEBUG   opendrift.models.basemodel:2062:               4.576104813516438 <- longitude -> 4.591327031290382
09:37:42 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:37:42 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:37:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:37:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:37:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:37:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 19:00:00 (before)
                2024-09-28 20:00:00 (after)
09:37:52 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:37:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:37:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:37:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:37:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:37:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:37:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 19:00:00)
09:37:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 19:00:00) in space  (linearNDFast)
09:37:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:37:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:37:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42390610028572 and -65.40868389020746 degrees.
09:37:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42390610028572 and -65.40868389020746 degrees.
09:37:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:37:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:37:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:37:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:37:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:37:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:37:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:37:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:37:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:37:52 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:37:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0342498 (min) -0.0221776 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0996349 (min) 0.109123 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0143904 (min) -0.0111621 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.91567 (min) 5.95664 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -7.51249 (min) -7.40743 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.37344e-05 (min) 1.38676e-05 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.756 (min) 299.231 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:37:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:37:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.216877, mean: 2.235530, max: 2.251213
09:37:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:37:52 DEBUG   opendrift.models.physics_methods:1061:    min: 8.111485, mean: 8.145532, max: 8.174062
09:37:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.111485, mean: 8.145532, max: 8.174062
09:37:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:37:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:37:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:37:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.189860 m/s - 0.191325 m/s)
09:37:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:37:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:37:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:37:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:37:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:37:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:37:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:37:52 INFO    opendrift.models.basemodel:2038: 2024-09-28 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
09:37:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:37:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:37:52 DEBUG   opendrift.models.basemodel:2057:               59.97587100773424 <- latitude  -> 59.98138129378874
09:37:52 DEBUG   opendrift.models.basemodel:2062:               4.581794087958005 <- longitude -> 4.597482264961407
09:37:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:37:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:37:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:37:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:37:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:37:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:37:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:37:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:37:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:37:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 20:00:00 (before)
                2024-09-28 21:00:00 (after)
09:38:04 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:38:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:38:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:38:04 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:38:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:38:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:38:04 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 20:00:00)
09:38:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 20:00:00) in space  (linearNDFast)
09:38:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:38:04 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:38:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41821683629406 and -65.40252866264177 degrees.
09:38:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41821683629406 and -65.40252866264177 degrees.
09:38:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:38:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:38:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:38:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:38:04 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:38:04 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:38:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:04 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:38:04 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:38:04 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:38:04 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0803633 (min) -0.0720667 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0381448 (min) 0.043203 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0203292 (min) -0.0186645 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.263961 (min) 1.39737 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -8.23874 (min) -7.77564 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.74302e-05 (min) -1.70256e-05 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.78 (min) 299.259 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:38:04 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:38:04 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.526171, mean: 1.603215, max: 1.676354
09:38:04 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:38:04 DEBUG   opendrift.models.physics_methods:1061:    min: 6.730251, mean: 6.897843, max: 7.053627
09:38:04 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.730251, mean: 6.897843, max: 7.053627
09:38:04 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:38:04 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:04 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:38:04 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:38:04 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.157530 m/s - 0.165099 m/s)
09:38:04 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:38:04 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:38:04 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:38:04 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:38:04 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:38:04 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:04 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:38:04 INFO    opendrift.models.basemodel:2038: 2024-09-28 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
09:38:04 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:38:04 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:38:04 DEBUG   opendrift.models.basemodel:2057:               59.971980411231144 <- latitude  -> 59.97757989285322
09:38:04 DEBUG   opendrift.models.basemodel:2062:               4.57868928826279 <- longitude -> 4.592947654789099
09:38:04 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:38:04 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:38:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:38:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:38:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:38:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 21:00:00 (before)
                2024-09-28 22:00:00 (after)
09:38:15 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:38:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:38:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:38:15 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:38:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:38:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:38:15 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 21:00:00)
09:38:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 21:00:00) in space  (linearNDFast)
09:38:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:38:15 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:38:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42132164211537 and -65.40706326296541 degrees.
09:38:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42132164211537 and -65.40706326296541 degrees.
09:38:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:38:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:38:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:38:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:38:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:38:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:38:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:38:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:38:15 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:38:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.101506 (min) -0.0887739 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.03189 (min) 0.0344246 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.126437 (min) -0.124779 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.83944 (min) 5.86232 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -6.16113 (min) -6.11316 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.12661e-05 (min) -4.11207e-05 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.474 (min) 298.977 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:38:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:38:15 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.758157, mean: 1.769954, max: 1.778531
09:38:15 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:38:15 DEBUG   opendrift.models.physics_methods:1061:    min: 7.223678, mean: 7.247869, max: 7.265413
09:38:15 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.223678, mean: 7.247869, max: 7.265413
09:38:15 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:38:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:15 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:38:15 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:38:15 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.169080 m/s - 0.170056 m/s)
09:38:15 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:38:15 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:38:15 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:38:15 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:38:15 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:38:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:15 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:38:15 INFO    opendrift.models.basemodel:2038: 2024-09-28 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
09:38:15 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:38:15 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:38:15 DEBUG   opendrift.models.basemodel:2057:               59.96905984460675 <- latitude  -> 59.974671715650025
09:38:15 DEBUG   opendrift.models.basemodel:2062:               4.579956795652315 <- longitude -> 4.594635962930643
09:38:15 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:38:15 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:38:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:38:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:38:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:38:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 22:00:00 (before)
                2024-09-28 23:00:00 (after)
09:38:26 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:38:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:38:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:38:26 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:38:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:38:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:38:26 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 22:00:00)
09:38:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 22:00:00) in space  (linearNDFast)
09:38:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:38:26 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:38:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42005413579096 and -65.40537496369194 degrees.
09:38:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42005413579096 and -65.40537496369194 degrees.
09:38:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:38:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:38:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:38:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:38:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:38:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:38:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:38:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:38:26 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:38:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.118821 (min) -0.103156 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0676055 (min) 0.0696179 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.299897 (min) -0.298314 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.58881 (min) 4.62457 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -5.16637 (min) -5.12476 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.0841e-05 (min) -5.07452e-05 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.303 (min) 298.85 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:38:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:38:26 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.164301, mean: 1.172523, max: 1.181496
09:38:26 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:38:26 DEBUG   opendrift.models.physics_methods:1061:    min: 5.878442, mean: 5.899156, max: 5.921690
09:38:26 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.878442, mean: 5.899156, max: 5.921690
09:38:26 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:38:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:26 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:38:26 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:38:26 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.137593 m/s - 0.138605 m/s)
09:38:26 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:38:26 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:38:26 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:38:26 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:38:26 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:38:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:26 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:38:26 INFO    opendrift.models.basemodel:2038: 2024-09-28 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
09:38:26 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:38:26 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:38:26 DEBUG   opendrift.models.basemodel:2057:               59.967979028844624 <- latitude  -> 59.97353872394871
09:38:26 DEBUG   opendrift.models.basemodel:2062:               4.5783789061550495 <- longitude -> 4.593939985885976
09:38:26 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:38:26 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:38:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:38:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:38:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:38:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 23:00:00 (before)
                2024-09-29 00:00:00 (after)
09:38:37 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:38:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:38:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:38:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:38:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:38:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:38:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-28 23:00:00)
09:38:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 23:00:00) in space  (linearNDFast)
09:38:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:38:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:38:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42163203185294 and -65.40607093617788 degrees.
09:38:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42163203185294 and -65.40607093617788 degrees.
09:38:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:38:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:38:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:38:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:38:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:38:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:38:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:38:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:38:37 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:38:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.14063 (min) -0.12248 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.10827 (min) 0.115224 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.470273 (min) -0.467715 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.82326 (min) 4.0687 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.86444 (min) -3.58575 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.04953e-05 (min) -4.03123e-05 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.182 (min) 298.762 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:38:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:38:37 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.716628, mean: 0.721841, max: 0.727866
09:38:37 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:38:37 DEBUG   opendrift.models.physics_methods:1061:    min: 4.611864, mean: 4.628602, max: 4.647884
09:38:37 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.611864, mean: 4.628602, max: 4.647884
09:38:37 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:38:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:37 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:38:37 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:38:37 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107947 m/s - 0.108790 m/s)
09:38:37 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:38:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:38:37 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:38:37 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:38:37 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:38:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:37 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:38:37 INFO    opendrift.models.basemodel:2038: 2024-09-29 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
09:38:37 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:38:37 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:38:37 DEBUG   opendrift.models.basemodel:2057:               59.96933119604688 <- latitude  -> 59.97464257189934
09:38:37 DEBUG   opendrift.models.basemodel:2062:               4.574697501347767 <- longitude -> 4.590973033261331
09:38:37 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:38:37 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:38:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:38:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:38:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:38:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 00:00:00 (before)
                2024-09-29 01:00:00 (after)
09:38:49 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:38:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:38:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:38:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:38:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:38:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:38:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 00:00:00)
09:38:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 00:00:00) in space  (linearNDFast)
09:38:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:38:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:38:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42531343167187 and -65.4090378898768 degrees.
09:38:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42531343167187 and -65.4090378898768 degrees.
09:38:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:38:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:38:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:38:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:38:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:38:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:38:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:38:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:38:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:38:49 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:38:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.15185 (min) -0.138146 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.144371 (min) 0.155431 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.577733 (min) -0.575107 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.70228 (min) 5.71095 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.9443 (min) -3.93283 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.73773e-07 (min) -2.51116e-07 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.201 (min) 298.767 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:38:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:38:49 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.181464, mean: 1.182145, max: 1.183901
09:38:49 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:38:49 DEBUG   opendrift.models.physics_methods:1061:    min: 5.921611, mean: 5.923317, max: 5.927715
09:38:49 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.921611, mean: 5.923317, max: 5.927715
09:38:49 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:38:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:49 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:38:49 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:38:49 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.138603 m/s - 0.138746 m/s)
09:38:49 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:38:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:38:49 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:38:49 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:38:49 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:38:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:38:49 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:38:49 INFO    opendrift.models.basemodel:2038: 2024-09-29 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
09:38:49 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:38:49 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:38:49 DEBUG   opendrift.models.basemodel:2057:               59.97177955687157 <- latitude  -> 59.97689033146479
09:38:49 DEBUG   opendrift.models.basemodel:2062:               4.572304973308065 <- longitude -> 4.589424550962569
09:38:49 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:38:49 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:38:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:38:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:38:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:38:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:38:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:38:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:38:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:38:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 01:00:00 (before)
                2024-09-29 02:00:00 (after)
09:39:00 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:39:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:39:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:39:00 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:39:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:39:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:39:00 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 01:00:00)
09:39:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 01:00:00) in space  (linearNDFast)
09:39:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:39:00 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:39:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42770594699407 and -65.41058638165786 degrees.
09:39:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42770594699407 and -65.41058638165786 degrees.
09:39:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:00 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:39:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:39:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:39:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:39:00 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:39:00 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:39:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:00 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:39:00 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:39:00 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:39:00 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.145018 (min) -0.133669 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.194763 (min) 0.20886 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.60493 (min) -0.602321 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.27186 (min) 5.34464 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.15838 (min) -3.13072 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.71284e-06 (min) -2.37072e-06 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.331 (min) 298.87 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:39:00 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:39:00 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.929091, mean: 0.935677, max: 0.943829
09:39:00 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:39:00 DEBUG   opendrift.models.physics_methods:1061:    min: 5.251203, mean: 5.269777, max: 5.292689
09:39:00 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.251203, mean: 5.269777, max: 5.292689
09:39:00 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:39:00 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:00 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:39:00 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:39:00 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.122911 m/s - 0.123882 m/s)
09:39:00 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:39:00 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:39:00 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:39:00 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:39:00 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:39:00 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:00 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:39:00 INFO    opendrift.models.basemodel:2038: 2024-09-29 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
09:39:00 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:39:00 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:39:00 DEBUG   opendrift.models.basemodel:2057:               59.976443884135485 <- latitude  -> 59.981314864805306
09:39:00 DEBUG   opendrift.models.basemodel:2062:               4.569886826281449 <- longitude -> 4.5875774437126156
09:39:00 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:39:00 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:39:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:00 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:39:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:39:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:39:00 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 02:00:00 (before)
                2024-09-29 03:00:00 (after)
09:39:12 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:39:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:39:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:39:12 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:39:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:39:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:39:12 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 02:00:00)
09:39:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 02:00:00) in space  (linearNDFast)
09:39:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:39:12 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:39:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43012410203504 and -65.41243347495887 degrees.
09:39:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43012410203504 and -65.41243347495887 degrees.
09:39:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:39:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:39:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:39:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:39:12 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:39:12 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:39:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:12 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:39:12 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:39:12 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:39:12 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.132131 (min) -0.121991 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.243389 (min) 0.257576 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.574677 (min) -0.572064 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.09831 (min) 5.11793 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.52769 (min) -2.4921 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.86769e-05 (min) 3.16939e-05 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.579 (min) 299.054 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:39:12 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:39:12 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.792288, mean: 0.797170, max: 0.801527
09:39:12 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:39:12 DEBUG   opendrift.models.physics_methods:1061:    min: 4.849211, mean: 4.864125, max: 4.877404
09:39:12 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.849211, mean: 4.864125, max: 4.877404
09:39:12 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:39:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:12 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:39:12 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:39:12 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.113502 m/s - 0.114162 m/s)
09:39:12 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:39:12 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:39:12 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:39:12 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:39:12 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:39:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:12 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:39:12 INFO    opendrift.models.basemodel:2038: 2024-09-29 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
09:39:12 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:39:12 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:39:12 DEBUG   opendrift.models.basemodel:2057:               59.983041571096706 <- latitude  -> 59.98774941665955
09:39:12 DEBUG   opendrift.models.basemodel:2062:               4.567990925802051 <- longitude -> 4.586277221772797
09:39:12 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:39:12 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:39:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:39:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:39:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:39:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 03:00:00 (before)
                2024-09-29 04:00:00 (after)
09:39:23 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:39:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:39:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:39:23 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:39:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:39:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:39:23 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 03:00:00)
09:39:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 03:00:00) in space  (linearNDFast)
09:39:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:39:23 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:39:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43201999999039 and -65.41373369991311 degrees.
09:39:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43201999999039 and -65.41373369991311 degrees.
09:39:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:39:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:39:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:39:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:39:23 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:39:23 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:39:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:23 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:39:23 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:39:23 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:39:23 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.124363 (min) -0.115139 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.294234 (min) 0.309442 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.509348 (min) -0.505177 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.67342 (min) 4.74872 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.37806 (min) -2.3312 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.94696e-05 (min) 1.99878e-05 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.916 (min) 299.324 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:39:23 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:39:23 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.676403, mean: 0.682504, max: 0.688707
09:39:23 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:39:23 DEBUG   opendrift.models.physics_methods:1061:    min: 4.480559, mean: 4.500716, max: 4.521129
09:39:23 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.480559, mean: 4.500716, max: 4.521129
09:39:23 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:39:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:23 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:39:23 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:39:23 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.104873 m/s - 0.105823 m/s)
09:39:23 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:39:23 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:39:23 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:39:23 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:39:23 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:39:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:23 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:39:23 INFO    opendrift.models.basemodel:2038: 2024-09-29 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
09:39:23 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:39:23 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:39:23 DEBUG   opendrift.models.basemodel:2057:               59.99132036302399 <- latitude  -> 59.995948932791904
09:39:23 DEBUG   opendrift.models.basemodel:2062:               4.566154726246462 <- longitude -> 4.5845945619417225
09:39:23 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:39:23 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:39:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:39:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:39:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:39:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 04:00:00 (before)
                2024-09-29 05:00:00 (after)
09:39:38 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:39:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:39:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:39:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:39:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:39:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:39:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 04:00:00)
09:39:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 04:00:00) in space  (linearNDFast)
09:39:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:39:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:39:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43385618579838 and -65.41541635772603 degrees.
09:39:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43385618579838 and -65.41541635772603 degrees.
09:39:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:39:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:39:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:39:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:39:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:39:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:39:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:39:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:39:38 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:39:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.119436 (min) -0.110928 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.335804 (min) 0.350491 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.426402 (min) -0.421719 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.5577 (min) 4.58145 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -0.336845 (min) -0.318262 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.63732e-05 (min) 2.6596e-05 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.261 (min) 299.588 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:39:38 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.513682, mean: 0.516557, max: 0.519059
09:39:38 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:39:38 DEBUG   opendrift.models.physics_methods:1061:    min: 3.904602, mean: 3.915514, max: 3.924985
09:39:38 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.904602, mean: 3.915514, max: 3.924985
09:39:38 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:39:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:38 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:39:38 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:39:38 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.091392 m/s - 0.091869 m/s)
09:39:38 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:39:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:39:38 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:39:38 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:39:38 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:39:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:38 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:39:38 INFO    opendrift.models.basemodel:2038: 2024-09-29 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
09:39:38 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:39:38 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:39:38 DEBUG   opendrift.models.basemodel:2057:               60.00213770939324 <- latitude  -> 60.006798011869385
09:39:38 DEBUG   opendrift.models.basemodel:2062:               4.564701271895821 <- longitude -> 4.582851807363816
09:39:38 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:39:38 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:39:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:39:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:39:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:39:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 05:00:00 (before)
                2024-09-29 06:00:00 (after)
09:39:55 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:39:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:39:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:39:55 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:39:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:39:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:39:55 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 05:00:00)
09:39:55 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 05:00:00) in space  (linearNDFast)
09:39:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:39:55 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:39:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.435309650832 and -65.41715910187796 degrees.
09:39:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.435309650832 and -65.41715910187796 degrees.
09:39:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:39:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:39:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:39:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:39:55 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:39:55 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:39:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:55 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:39:55 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:39:55 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:39:55 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.109283 (min) -0.101593 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.362596 (min) 0.371503 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.296006 (min) -0.291422 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.21426 (min) 4.27107 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 0.51177 (min) 0.559983 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.12944e-05 (min) 4.15156e-05 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.596 (min) 299.832 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:39:55 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:39:55 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.444460, mean: 0.448521, max: 0.455293
09:39:55 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:39:55 DEBUG   opendrift.models.physics_methods:1061:    min: 3.631999, mean: 3.648548, max: 3.675998
09:39:55 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.631999, mean: 3.648548, max: 3.675998
09:39:55 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:39:55 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:55 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:39:55 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:39:55 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.085012 m/s - 0.086042 m/s)
09:39:55 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:39:55 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:39:55 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:39:55 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:39:55 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:39:55 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:55 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:39:55 INFO    opendrift.models.basemodel:2038: 2024-09-29 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
09:39:55 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:39:55 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:39:55 DEBUG   opendrift.models.basemodel:2057:               60.01431257298013 <- latitude  -> 60.0189902838177
09:39:55 DEBUG   opendrift.models.basemodel:2062:               4.563533147735612 <- longitude -> 4.581325466885066
09:39:55 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:39:55 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:39:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:39:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:39:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:39:55 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 06:00:00 (before)
                2024-09-29 07:00:00 (after)
09:40:09 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:40:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:40:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:40:09 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:40:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:40:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:40:09 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 06:00:00)
09:40:09 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 06:00:00) in space  (linearNDFast)
09:40:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:40:09 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:40:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43647776807082 and -65.41868544516898 degrees.
09:40:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43647776807082 and -65.41868544516898 degrees.
09:40:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:09 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:40:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:40:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:40:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:40:09 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:40:09 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:40:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:09 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:40:09 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:40:09 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:40:09 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0725357 (min) -0.0670034 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.348557 (min) 0.35718 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.139826 (min) -0.136174 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.81832 (min) 3.84496 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.12783 (min) 1.1544 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.64421e-05 (min) 4.67153e-05 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.827 (min) 300.008 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:40:09 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:40:09 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.391425, mean: 0.393806, max: 0.394986
09:40:09 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:40:09 DEBUG   opendrift.models.physics_methods:1061:    min: 3.408427, mean: 3.418776, max: 3.423894
09:40:09 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.408427, mean: 3.418776, max: 3.423894
09:40:09 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:40:09 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:09 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:40:09 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:40:09 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.079779 m/s - 0.080141 m/s)
09:40:09 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:40:09 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:40:09 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:40:09 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:40:09 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:40:09 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:09 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:40:09 INFO    opendrift.models.basemodel:2038: 2024-09-29 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
09:40:09 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:40:09 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:40:09 DEBUG   opendrift.models.basemodel:2057:               60.02646628672039 <- latitude  -> 60.03114991515889
09:40:09 DEBUG   opendrift.models.basemodel:2062:               4.563988797681802 <- longitude -> 4.581735898807433
09:40:09 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:40:09 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:40:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:09 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:40:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:40:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:40:09 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 07:00:00 (before)
                2024-09-29 08:00:00 (after)
09:40:25 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:40:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:40:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:40:25 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:40:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:40:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:40:25 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 07:00:00)
09:40:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 07:00:00) in space  (linearNDFast)
09:40:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:40:25 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:40:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43602210843024 and -65.41827500754464 degrees.
09:40:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43602210843024 and -65.41827500754464 degrees.
09:40:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:25 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:40:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:40:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:40:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:40:25 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:40:25 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:40:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:25 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:40:25 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:40:25 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:40:25 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0256518 (min) -0.0197537 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.301193 (min) 0.314749 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.00113774 (min) 0.00379841 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.84421 (min) 2.88559 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.62439 (min) 1.64479 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.79503e-05 (min) 2.80864e-05 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.966 (min) 300.121 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:40:25 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:40:25 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.265419, mean: 0.267696, max: 0.269955
09:40:25 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:40:25 DEBUG   opendrift.models.physics_methods:1061:    min: 2.806696, mean: 2.818707, max: 2.830578
09:40:25 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.806696, mean: 2.818707, max: 2.830578
09:40:25 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:40:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:25 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:40:25 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:40:25 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.065694 m/s - 0.066253 m/s)
09:40:25 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:40:25 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:40:25 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:40:25 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:40:25 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:40:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:25 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:40:25 INFO    opendrift.models.basemodel:2038: 2024-09-29 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
09:40:25 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:40:25 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:40:25 DEBUG   opendrift.models.basemodel:2057:               60.03747363441802 <- latitude  -> 60.04219091869843
09:40:25 DEBUG   opendrift.models.basemodel:2062:               4.566301239555004 <- longitude -> 4.58387928614784
09:40:25 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:40:25 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:40:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:25 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:40:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:40:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:40:25 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 08:00:00 (before)
                2024-09-29 09:00:00 (after)
09:40:40 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:40:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:40:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:40:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:40:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:40:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:40:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 08:00:00)
09:40:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 08:00:00) in space  (linearNDFast)
09:40:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:40:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:40:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43370966233958 and -65.41613162176658 degrees.
09:40:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43370966233958 and -65.41613162176658 degrees.
09:40:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:40:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:40:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:40:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:40:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:40:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:40:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:40:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:40:40 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:40:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0128525 (min) 0.0190607 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.2442 (min) 0.261436 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0589483 (min) 0.0614255 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.12364 (min) 2.16462 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.52114 (min) 2.56433 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.46842e-06 (min) 3.55387e-06 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.057 (min) 300.211 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:40:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:40:40 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.270540, mean: 0.271917, max: 0.273288
09:40:40 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:40:40 DEBUG   opendrift.models.physics_methods:1061:    min: 2.833642, mean: 2.840843, max: 2.848001
09:40:40 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.833642, mean: 2.840843, max: 2.848001
09:40:40 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:40:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:40 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:40:40 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:40:40 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.066325 m/s - 0.066661 m/s)
09:40:40 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:40:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:40:40 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:40:40 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:40:40 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:40:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:40 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:40:40 INFO    opendrift.models.basemodel:2038: 2024-09-29 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
09:40:40 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:40:40 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:40:40 DEBUG   opendrift.models.basemodel:2057:               60.04733351845033 <- latitude  -> 60.05207421822767
09:40:40 DEBUG   opendrift.models.basemodel:2062:               4.570187215565518 <- longitude -> 4.5875513058504565
09:40:40 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:40:40 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:40:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:40:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:40:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:40:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 09:00:00 (before)
                2024-09-29 10:00:00 (after)
09:40:55 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:40:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:40:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:40:55 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:40:55 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:40:55 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:40:55 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 09:00:00)
09:40:55 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 09:00:00) in space  (linearNDFast)
09:40:55 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:40:55 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:40:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42982368922588 and -65.41245960436777 degrees.
09:40:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42982368922588 and -65.41245960436777 degrees.
09:40:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:40:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:40:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:40:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:40:55 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:40:55 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:40:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:55 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:40:55 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:40:55 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:40:55 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0195211 (min) 0.0314173 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.192239 (min) 0.20551 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.00138378 (min) 0.00442688 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.886828 (min) 0.906496 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.828 (min) 3.86804 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.17188e-05 (min) -3.16226e-05 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.141 (min) 300.292 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:40:55 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:40:55 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.380606, mean: 0.383807, max: 0.387650
09:40:55 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:40:55 DEBUG   opendrift.models.physics_methods:1061:    min: 3.360990, mean: 3.375093, max: 3.391952
09:40:55 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.360990, mean: 3.375093, max: 3.391952
09:40:55 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:40:55 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:55 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:40:55 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:40:55 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.078668 m/s - 0.079393 m/s)
09:40:55 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:40:55 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:40:55 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:40:55 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:40:55 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:40:55 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:55 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:40:55 INFO    opendrift.models.basemodel:2038: 2024-09-29 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
09:40:55 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:40:55 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:40:55 DEBUG   opendrift.models.basemodel:2057:               60.05617056548127 <- latitude  -> 60.06114853738711
09:40:55 DEBUG   opendrift.models.basemodel:2062:               4.573289195766681 <- longitude -> 4.590003328982432
09:40:55 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:40:55 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:40:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:40:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:40:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:40:55 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 10:00:00 (before)
                2024-09-29 11:00:00 (after)
09:41:10 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:41:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:41:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:41:10 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:41:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:41:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:41:10 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 10:00:00)
09:41:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 10:00:00) in space  (linearNDFast)
09:41:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:41:10 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:41:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42672170304262 and -65.41000756354259 degrees.
09:41:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42672170304262 and -65.41000756354259 degrees.
09:41:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:41:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:41:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:41:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:41:10 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:41:10 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:41:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:10 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:41:10 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:41:10 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:41:10 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0103415 (min) 0.0245467 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.163833 (min) 0.175725 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.156898 (min) -0.154187 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.78976 (min) 1.8001 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.96807 (min) 5.97568 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.16547e-05 (min) -5.15898e-05 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.205 (min) 300.334 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:41:10 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:41:10 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.955913, mean: 0.956570, max: 0.957665
09:41:10 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:41:10 DEBUG   opendrift.models.physics_methods:1061:    min: 5.326461, mean: 5.328291, max: 5.331340
09:41:10 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.326461, mean: 5.328291, max: 5.331340
09:41:10 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:41:10 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:10 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:41:10 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:41:10 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.124673 m/s - 0.124787 m/s)
09:41:10 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:41:10 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:41:10 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:41:10 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:41:10 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:41:10 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:10 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:41:10 INFO    opendrift.models.basemodel:2038: 2024-09-29 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
09:41:10 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:41:10 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:41:10 DEBUG   opendrift.models.basemodel:2057:               60.065347997801666 <- latitude  -> 60.0706688835732
09:41:10 DEBUG   opendrift.models.basemodel:2062:               4.577124448184065 <- longitude -> 4.593076163401605
09:41:10 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:41:10 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:41:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:41:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:41:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:41:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 11:00:00 (before)
                2024-09-29 12:00:00 (after)
09:41:26 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:41:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:41:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:41:26 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:41:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:41:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:41:26 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-29 11:00:00)
09:41:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 11:00:00) in space  (linearNDFast)
09:41:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:41:26 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:41:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42288644880114 and -65.4069347312654 degrees.
09:41:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42288644880114 and -65.4069347312654 degrees.
09:41:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:41:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:41:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:41:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:41:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:41:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:41:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:41:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:41:26 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:41:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0100311 (min) -0.000520345 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.163583 (min) 0.178484 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.341242 (min) -0.338867 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.352998 (min) -0.288355 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.12151 (min) 7.15895 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.86524e-05 (min) -4.86225e-05 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.249 (min) 300.338 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:41:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:41:26 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.249711, mean: 1.256229, max: 1.263831
09:41:26 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:41:26 DEBUG   opendrift.models.physics_methods:1061:    min: 6.090240, mean: 6.106098, max: 6.124547
09:41:26 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.090240, mean: 6.106098, max: 6.124547
09:41:26 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:41:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:26 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:41:26 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:41:26 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142550 m/s - 0.143353 m/s)
09:41:26 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:41:26 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:41:26 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:41:26 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:41:26 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:41:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:26 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:41:26 INFO    opendrift.models.basemodel:2038: 2024-09-29 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
09:41:26 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:41:26 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:41:26 DEBUG   opendrift.models.basemodel:2057:               60.075336786153215 <- latitude  -> 60.08099281951034
09:41:26 DEBUG   opendrift.models.basemodel:2062:               4.576556957888152 <- longitude -> 4.592140040647102
09:41:26 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:41:26 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:41:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:41:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:41:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:41:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 12:00:00 (before)
                2024-09-29 13:00:00 (after)
09:41:41 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:41:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:41:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:41:41 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:41:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:41:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:41:41 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 12:00:00)
09:41:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 12:00:00) in space  (linearNDFast)
09:41:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:41:41 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:41:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42345392981734 and -65.40787084077674 degrees.
09:41:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42345392981734 and -65.40787084077674 degrees.
09:41:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:41:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:41:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:41:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:41:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:41:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:41:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:41 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:41:41 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:41:41 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:41:41 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0451617 (min) -0.0309571 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.18367 (min) 0.198285 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.481218 (min) -0.478177 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.39452 (min) -2.32995 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.67328 (min) 7.68114 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.82609e-05 (min) -2.81191e-05 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.204 (min) 300.269 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:41:41 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:41:41 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.582161, mean: 1.587522, max: 1.592448
09:41:41 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:41:41 DEBUG   opendrift.models.physics_methods:1061:    min: 6.852593, mean: 6.864192, max: 6.874833
09:41:41 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.852593, mean: 6.864192, max: 6.874833
09:41:41 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:41:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:41 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:41:41 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:41:41 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.160394 m/s - 0.160914 m/s)
09:41:41 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:41:41 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:41:41 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:41:41 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:41:41 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:41:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:41 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:41:41 INFO    opendrift.models.basemodel:2038: 2024-09-29 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
09:41:41 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:41:41 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:41:41 DEBUG   opendrift.models.basemodel:2057:               60.08634230861358 <- latitude  -> 60.09229344261945
09:41:41 DEBUG   opendrift.models.basemodel:2062:               4.571429997862649 <- longitude -> 4.586158161318043
09:41:41 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:41:41 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:41:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:41:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:41:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:41:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 13:00:00 (before)
                2024-09-29 14:00:00 (after)
09:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:41:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 13:00:00)
09:41:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 13:00:00) in space  (linearNDFast)
09:41:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:41:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:41:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42858089015091 and -65.4138527302491 degrees.
09:41:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42858089015091 and -65.4138527302491 degrees.
09:41:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:41:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:41:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:41:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:41:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:41:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:41:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:41:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:41:53 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:41:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0829015 (min) -0.0630649 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.265348 (min) 0.271459 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.540338 (min) -0.537105 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.85277 (min) -3.76729 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.29721 (min) 9.33196 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.77766e-06 (min) -4.65513e-06 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.048 (min) 300.135 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:41:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:41:53 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.487222, mean: 2.491897, max: 2.494481
09:41:53 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:41:53 DEBUG   opendrift.models.physics_methods:1061:    min: 8.591854, mean: 8.599924, max: 8.604382
09:41:53 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.591854, mean: 8.599924, max: 8.604382
09:41:53 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:41:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:53 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:41:53 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:41:53 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.201104 m/s - 0.201397 m/s)
09:41:53 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:41:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:41:53 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:41:53 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:41:53 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:41:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:53 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:41:53 INFO    opendrift.models.basemodel:2038: 2024-09-29 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
09:41:53 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:41:53 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:41:53 DEBUG   opendrift.models.basemodel:2057:               60.10098340039946 <- latitude  -> 60.10706150638304
09:41:53 DEBUG   opendrift.models.basemodel:2062:               4.562418056188616 <- longitude -> 4.57580722942491
09:41:53 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:41:53 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:41:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:41:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:41:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:41:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 14:00:00 (before)
                2024-09-29 15:00:00 (after)
09:42:05 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:42:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:42:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:42:05 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:42:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:42:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:42:05 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-29 14:00:00)
09:42:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 14:00:00) in space  (linearNDFast)
09:42:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:42:05 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:42:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43759281853397 and -65.42420365474457 degrees.
09:42:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43759281853397 and -65.42420365474457 degrees.
09:42:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:42:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:42:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:42:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:42:05 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:42:05 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:42:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:05 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:42:05 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:42:05 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:42:05 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0962022 (min) -0.0810007 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.365491 (min) 0.368531 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.532483 (min) -0.528601 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.8788 (min) -4.82639 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.85754 (min) 7.91673 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.3067e-06 (min) 9.38196e-06 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.812 (min) 299.917 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:42:05 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:42:05 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.100325, mean: 2.108948, max: 2.118749
09:42:05 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:42:05 DEBUG   opendrift.models.physics_methods:1061:    min: 7.895377, mean: 7.911564, max: 7.929929
09:42:05 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.895377, mean: 7.911564, max: 7.929929
09:42:05 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:42:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:05 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:42:05 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:42:05 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.184802 m/s - 0.185610 m/s)
09:42:05 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:42:05 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:42:05 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:42:05 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:42:05 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:42:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:05 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:42:05 INFO    opendrift.models.basemodel:2038: 2024-09-29 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
09:42:05 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:42:05 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:42:05 DEBUG   opendrift.models.basemodel:2057:               60.11791585134097 <- latitude  -> 60.124032970112026
09:42:05 DEBUG   opendrift.models.basemodel:2062:               4.550719443987416 <- longitude -> 4.5633453071003
09:42:05 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:42:05 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:42:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:42:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:42:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:42:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 15:00:00 (before)
                2024-09-29 16:00:00 (after)
09:42:15 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:42:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:42:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:42:15 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:42:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:42:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:42:15 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-29 15:00:00)
09:42:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 15:00:00) in space  (linearNDFast)
09:42:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:42:15 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:42:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44929144524112 and -65.43666557223469 degrees.
09:42:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44929144524112 and -65.43666557223469 degrees.
09:42:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:42:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:42:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:42:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:42:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:42:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:42:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:42:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:42:15 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:42:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0820609 (min) -0.0725955 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.460771 (min) 0.465023 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.480569 (min) -0.477263 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.36342 (min) -4.3263 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.67807 (min) 7.74608 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.86874e-05 (min) 1.87975e-05 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.613 (min) 299.72 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:42:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:42:15 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.916802, mean: 1.928128, max: 1.940499
09:42:15 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:42:15 DEBUG   opendrift.models.physics_methods:1061:    min: 7.542550, mean: 7.564797, max: 7.589031
09:42:15 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.542550, mean: 7.564797, max: 7.589031
09:42:15 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:42:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:15 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:42:15 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:42:15 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.176543 m/s - 0.177631 m/s)
09:42:15 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:42:15 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:42:15 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:42:15 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:42:15 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:42:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:15 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:42:15 INFO    opendrift.models.basemodel:2038: 2024-09-29 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
09:42:15 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:42:15 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:42:15 DEBUG   opendrift.models.basemodel:2057:               60.137931729836204 <- latitude  -> 60.14391086373058
09:42:15 DEBUG   opendrift.models.basemodel:2062:               4.540032035299568 <- longitude -> 4.552627075449706
09:42:15 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:42:15 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:42:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:42:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:42:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:42:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 16:00:00 (before)
                2024-09-29 17:00:00 (after)
09:42:27 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:42:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:42:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:42:27 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:42:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:42:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:42:27 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 16:00:00)
09:42:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 16:00:00) in space  (linearNDFast)
09:42:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:42:27 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:42:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45997882705065 and -65.44738379039023 degrees.
09:42:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45997882705065 and -65.44738379039023 degrees.
09:42:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:42:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:42:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:42:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:42:27 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:42:27 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:42:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:27 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:42:27 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:42:27 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:42:27 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0401637 (min) -0.0280409 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.526581 (min) 0.531492 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.395819 (min) -0.392747 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.61974 (min) -4.56284 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.60021 (min) 7.63668 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.81333e-05 (min) 2.82506e-05 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.56 (min) 299.631 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:42:27 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:42:27 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.933135, mean: 1.945317, max: 1.959660
09:42:27 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:42:27 DEBUG   opendrift.models.physics_methods:1061:    min: 7.574618, mean: 7.598441, max: 7.626406
09:42:27 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.574618, mean: 7.598441, max: 7.626406
09:42:27 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:42:27 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:27 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:42:27 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:42:27 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.177294 m/s - 0.178506 m/s)
09:42:27 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:42:27 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:42:27 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:42:27 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:42:27 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:42:27 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:27 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:42:27 INFO    opendrift.models.basemodel:2038: 2024-09-29 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
09:42:27 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:42:27 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:42:27 DEBUG   opendrift.models.basemodel:2057:               60.16002710316037 <- latitude  -> 60.16584677717945
09:42:27 DEBUG   opendrift.models.basemodel:2062:               4.531525283571322 <- longitude -> 4.5446564998470445
09:42:27 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:42:27 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:42:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:42:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:42:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:42:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 17:00:00 (before)
                2024-09-29 18:00:00 (after)
09:42:37 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:42:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:42:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:42:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:42:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:42:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:42:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 17:00:00)
09:42:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 17:00:00) in space  (linearNDFast)
09:42:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:42:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:42:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46848558217152 and -65.45535436290558 degrees.
09:42:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46848558217152 and -65.45535436290558 degrees.
09:42:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:42:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:42:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:42:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:42:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:42:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:42:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:42:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:42:37 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:42:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0193395 (min) 0.0279675 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.556029 (min) 0.56368 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.272456 (min) -0.26952 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.10171 (min) -5.02738 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.05763 (min) 8.11638 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.10325e-05 (min) 4.12049e-05 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.782 (min) 299.91 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:42:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:42:37 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.228454, mean: 2.246091, max: 2.255209
09:42:37 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:42:37 DEBUG   opendrift.models.physics_methods:1061:    min: 8.132638, mean: 8.164753, max: 8.181313
09:42:37 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.132638, mean: 8.164753, max: 8.181313
09:42:37 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:42:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:37 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:42:37 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:42:37 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.190355 m/s - 0.191494 m/s)
09:42:37 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:42:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:42:37 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:42:37 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:42:37 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:42:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:37 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:42:37 INFO    opendrift.models.basemodel:2038: 2024-09-29 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated)
09:42:37 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:42:37 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:42:37 DEBUG   opendrift.models.basemodel:2057:               60.1834056620748 <- latitude  -> 60.189061738263426
09:42:37 DEBUG   opendrift.models.basemodel:2062:               4.526259518114039 <- longitude -> 4.539848447731445
09:42:37 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:42:37 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:42:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:42:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:42:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:42:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 18:00:00 (before)
                2024-09-29 19:00:00 (after)
09:42:49 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:42:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:42:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:42:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:42:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:42:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:42:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 18:00:00)
09:42:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 18:00:00) in space  (linearNDFast)
09:42:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:42:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:42:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47375133972723 and -65.46016241593291 degrees.
09:42:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47375133972723 and -65.46016241593291 degrees.
09:42:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:42:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:42:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:42:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:42:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:42:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:42:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:42:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:42:49 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:42:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.113231 (min) 0.119882 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.522387 (min) 0.537005 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.116694 (min) -0.112657 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.21012 (min) 4.28338 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.17216 (min) 6.21761 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.61489e-05 (min) 4.62537e-05 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.382 (min) 300.574 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:42:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:42:49 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.386534, mean: 1.387612, max: 1.388909
09:42:49 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:42:49 DEBUG   opendrift.models.physics_methods:1061:    min: 6.414973, mean: 6.417466, max: 6.420464
09:42:49 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.414973, mean: 6.417466, max: 6.420464
09:42:49 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:42:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:49 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:42:49 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:42:49 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.150151 m/s - 0.150279 m/s)
09:42:49 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:42:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:42:49 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:42:49 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:42:49 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:42:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:49 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:42:49 INFO    opendrift.models.basemodel:2038: 2024-09-29 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated)
09:42:49 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:42:49 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:42:49 DEBUG   opendrift.models.basemodel:2057:               60.20445633463827 <- latitude  -> 60.21017633348576
09:42:49 DEBUG   opendrift.models.basemodel:2062:               4.539125965810866 <- longitude -> 4.553090535522562
09:42:49 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:42:49 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:42:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:42:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:42:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:42:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 19:00:00 (before)
                2024-09-29 20:00:00 (after)
09:43:01 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:01 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:01 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 19:00:00)
09:43:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 19:00:00) in space  (linearNDFast)
09:43:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:01 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46088487834544 and -65.44692030775931 degrees.
09:43:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46088487834544 and -65.44692030775931 degrees.
09:43:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:01 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:01 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:01 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:01 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:01 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:01 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.202688 (min) 0.20784 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.455796 (min) 0.468566 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0360352 (min) 0.0393917 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.79134 (min) 4.83956 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.53475 (min) 7.54911 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.50115e-05 (min) 3.52338e-05 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.945 (min) 301.232 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:01 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:01 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.963185, mean: 1.970141, max: 1.977394
09:43:01 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:01 DEBUG   opendrift.models.physics_methods:1061:    min: 7.633263, mean: 7.646772, max: 7.660836
09:43:01 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.633263, mean: 7.646772, max: 7.660836
09:43:01 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:01 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:01 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:01 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.178666 m/s - 0.179312 m/s)
09:43:01 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:01 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:01 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:01 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:01 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:01 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:01 INFO    opendrift.models.basemodel:2038: 2024-09-29 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated)
09:43:01 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:01 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:01 DEBUG   opendrift.models.basemodel:2057:               60.22420140767229 <- latitude  -> 60.22994234912731
09:43:01 DEBUG   opendrift.models.basemodel:2062:               4.55871110229692 <- longitude -> 4.572577974567473
09:43:01 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:01 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:43:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 20:00:00 (before)
                2024-09-29 21:00:00 (after)
09:43:12 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:12 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:12 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 20:00:00)
09:43:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 20:00:00) in space  (linearNDFast)
09:43:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:12 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44129974413558 and -65.42743286873942 degrees.
09:43:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44129974413558 and -65.42743286873942 degrees.
09:43:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:12 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:12 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:12 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:12 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:12 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:12 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.258558 (min) 0.27174 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.350903 (min) 0.353216 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.118552 (min) 0.121033 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.95635 (min) 3.98995 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.2355 (min) 7.29624 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.1499e-06 (min) 6.25922e-06 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.92 (min) 301.206 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:12 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:12 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.672928, mean: 1.686239, max: 1.701210
09:43:12 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:12 DEBUG   opendrift.models.physics_methods:1061:    min: 7.046415, mean: 7.074384, max: 7.105727
09:43:12 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.046415, mean: 7.074384, max: 7.105727
09:43:12 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:12 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:12 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:12 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.164931 m/s - 0.166319 m/s)
09:43:12 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:12 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:12 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:12 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:12 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:12 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:12 INFO    opendrift.models.basemodel:2038: 2024-09-29 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated)
09:43:12 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:12 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:12 DEBUG   opendrift.models.basemodel:2057:               60.2402426536672 <- latitude  -> 60.24599275628441
09:43:12 DEBUG   opendrift.models.basemodel:2062:               4.581401469133109 <- longitude -> 4.594728525774555
09:43:12 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:12 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:43:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 21:00:00 (before)
                2024-09-29 22:00:00 (after)
09:43:23 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:23 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:23 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 21:00:00)
09:43:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 21:00:00) in space  (linearNDFast)
09:43:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:23 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41860936022655 and -65.40528230932284 degrees.
09:43:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41860936022655 and -65.40528230932284 degrees.
09:43:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:23 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:23 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:23 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:23 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:23 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:23 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.273921 (min) 0.282781 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.243837 (min) 0.250884 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0773111 (min) 0.0793576 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.73079 (min) 2.76491 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.98569 (min) 8.00869 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.97281e-05 (min) -2.96386e-05 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.512 (min) 300.608 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:23 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:23 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.756792, mean: 1.758528, max: 1.761269
09:43:23 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:23 DEBUG   opendrift.models.physics_methods:1061:    min: 7.220873, mean: 7.224440, max: 7.230070
09:43:23 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.220873, mean: 7.224440, max: 7.230070
09:43:23 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:23 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:23 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:23 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.169014 m/s - 0.169229 m/s)
09:43:23 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:23 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:23 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:23 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:23 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:23 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:23 INFO    opendrift.models.basemodel:2038: 2024-09-29 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated)
09:43:23 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:23 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:23 DEBUG   opendrift.models.basemodel:2057:               60.25346830146698 <- latitude  -> 60.2590530007071
09:43:23 DEBUG   opendrift.models.basemodel:2062:               4.60331654234653 <- longitude -> 4.6162714603657395
09:43:23 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:23 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:43:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 22:00:00 (before)
                2024-09-29 23:00:00 (after)
09:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 22:00:00)
09:43:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 22:00:00) in space  (linearNDFast)
09:43:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39669429091708 and -65.3837393707058 degrees.
09:43:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39669429091708 and -65.3837393707058 degrees.
09:43:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:35 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.248365 (min) 0.256003 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.161845 (min) 0.166448 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0851607 (min) -0.0831728 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.76364 (min) 2.78982 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.13722 (min) 8.15204 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.88863e-05 (min) -5.8765e-05 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.61 (min) 301.053 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:35 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.817415, mean: 1.821226, max: 1.825337
09:43:35 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:35 DEBUG   opendrift.models.physics_methods:1061:    min: 7.344405, mean: 7.352101, max: 7.360395
09:43:35 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.344405, mean: 7.352101, max: 7.360395
09:43:35 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:35 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:35 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:35 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.171905 m/s - 0.172280 m/s)
09:43:35 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:35 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:35 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:35 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:35 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:35 INFO    opendrift.models.basemodel:2038: 2024-09-29 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
09:43:35 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:35 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:35 DEBUG   opendrift.models.basemodel:2057:               60.264067148383205 <- latitude  -> 60.269577303326884
09:43:35 DEBUG   opendrift.models.basemodel:2062:               4.623095591123329 <- longitude -> 4.636511105643156
09:43:35 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:35 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:43:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 23:00:00 (before)
                2024-09-30 00:00:00 (after)
09:43:46 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-29 23:00:00)
09:43:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 23:00:00) in space  (linearNDFast)
09:43:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3769152298845 and -65.36349971082441 degrees.
09:43:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3769152298845 and -65.36349971082441 degrees.
09:43:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:46 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.192933 (min) 0.201896 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.118422 (min) 0.121729 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.312355 (min) -0.309471 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.37248 (min) 3.39227 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.90301 (min) 7.93174 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.27616e-05 (min) -6.25655e-05 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 302.126 (min) 303.45 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.818082, mean: 1.822436, max: 1.829927
09:43:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:46 DEBUG   opendrift.models.physics_methods:1061:    min: 7.345753, mean: 7.354543, max: 7.369645
09:43:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.345753, mean: 7.354543, max: 7.369645
09:43:46 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:46 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:46 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:46 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.171937 m/s - 0.172496 m/s)
09:43:46 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:46 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:46 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:46 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:46 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:46 INFO    opendrift.models.basemodel:2038: 2024-09-30 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
09:43:46 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:46 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:46 DEBUG   opendrift.models.basemodel:2057:               60.273035767506016 <- latitude  -> 60.27861504326509
09:43:46 DEBUG   opendrift.models.basemodel:2062:               4.640087736305714 <- longitude -> 4.653969482518651
09:43:46 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:46 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:43:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 00:00:00 (before)
                2024-09-30 01:00:00 (after)
09:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:57 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-30 00:00:00)
09:43:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 00:00:00) in space  (linearNDFast)
09:43:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:57 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35992309207677 and -65.34604133632622 degrees.
09:43:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35992309207677 and -65.34604133632622 degrees.
09:43:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:57 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:57 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:57 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:57 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:57 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:57 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.121856 (min) 0.13309 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.129333 (min) 0.134668 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.513747 (min) -0.510731 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.05713 (min) 1.06284 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.70694 (min) 7.74356 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.78913e-07 (min) 2.23163e-07 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 305.335 (min) 307.661 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:57 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:57 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.488908, mean: 1.495413, max: 1.502721
09:43:57 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:57 DEBUG   opendrift.models.physics_methods:1061:    min: 6.647578, mean: 6.662082, max: 6.678344
09:43:57 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.647578, mean: 6.662082, max: 6.678344
09:43:57 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:57 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:57 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:57 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:57 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.155595 m/s - 0.156315 m/s)
09:43:57 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:57 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:57 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:57 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:57 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:57 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:57 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:57 INFO    opendrift.models.basemodel:2038: 2024-09-30 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
09:43:57 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:57 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:57 DEBUG   opendrift.models.basemodel:2057:               60.2821947483119 <- latitude  -> 60.28795519946943
09:43:57 DEBUG   opendrift.models.basemodel:2062:               4.6494122712783215 <- longitude -> 4.663958070231992
09:43:57 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:57 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:43:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 01:00:00 (before)
                2024-09-30 02:00:00 (after)
09:44:08 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:08 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:08 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 01:00:00)
09:44:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 01:00:00) in space  (linearNDFast)
09:44:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:08 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35059855264456 and -65.33605274597836 degrees.
09:44:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35059855264456 and -65.33605274597836 degrees.
09:44:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:08 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:08 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:08 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:08 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:08 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:08 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.02177 (min) 0.0253619 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.183309 (min) 0.188191 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.63462 (min) -0.631254 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.68038 (min) -1.03648 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.54515 (min) 7.99139 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.05328e-05 (min) -2.03802e-05 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 309.18 (min) 312.435 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:08 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:08 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.426963, mean: 1.538018, max: 1.640476
09:44:08 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:08 DEBUG   opendrift.models.physics_methods:1061:    min: 6.507827, mean: 6.755897, max: 6.977736
09:44:08 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.507827, mean: 6.755897, max: 6.977736
09:44:08 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:08 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:08 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:08 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.152324 m/s - 0.163323 m/s)
09:44:08 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:08 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:08 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:08 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:08 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:08 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:08 INFO    opendrift.models.basemodel:2038: 2024-09-30 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
09:44:08 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:08 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:08 DEBUG   opendrift.models.basemodel:2057:               60.29318005973914 <- latitude  -> 60.299039324884426
09:44:08 DEBUG   opendrift.models.basemodel:2062:               4.649662872844744 <- longitude -> 4.663271127225475
09:44:08 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:08 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:44:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 02:00:00 (before)
                2024-09-30 03:00:00 (after)
09:44:21 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:21 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:21 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-30 02:00:00)
09:44:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 02:00:00) in space  (linearNDFast)
09:44:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:21 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35034793663463 and -65.33673968759146 degrees.
09:44:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35034793663463 and -65.33673968759146 degrees.
09:44:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:21 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:21 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:21 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:21 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:21 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:21 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:21 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0469232 (min) -0.0390068 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.29732 (min) 0.300227 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.669999 (min) -0.665974 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.75309 (min) -1.72341 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.86145 (min) 7.99863 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.63734e-06 (min) 4.91336e-06 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.434 (min) 315.962 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:21 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:21 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.603936, mean: 1.678778, max: 1.758818
09:44:21 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:21 DEBUG   opendrift.models.physics_methods:1061:    min: 6.899586, mean: 7.058535, max: 7.225035
09:44:21 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.899586, mean: 7.058535, max: 7.225035
09:44:21 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:21 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:21 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:21 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:21 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.161494 m/s - 0.169111 m/s)
09:44:21 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:21 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:21 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:21 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:21 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:21 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:21 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:21 INFO    opendrift.models.basemodel:2038: 2024-09-30 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
09:44:21 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:21 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:21 DEBUG   opendrift.models.basemodel:2057:               60.30786811838439 <- latitude  -> 60.31390108471548
09:44:21 DEBUG   opendrift.models.basemodel:2062:               4.644798373640469 <- longitude -> 4.656774742856657
09:44:21 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:21 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:21 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:44:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:21 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 03:00:00 (before)
                2024-09-30 04:00:00 (after)
09:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:34 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 03:00:00)
09:44:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 03:00:00) in space  (linearNDFast)
09:44:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:34 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.355212434435 and -65.34323606807308 degrees.
09:44:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.355212434435 and -65.34323606807308 degrees.
09:44:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:34 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:34 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:34 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:34 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:34 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:34 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0580508 (min) -0.0453104 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.417013 (min) 0.424616 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.606826 (min) -0.603911 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.25779 (min) -3.08126 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.78591 (min) 9.81437 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.24966e-05 (min) 2.3062e-05 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 315.152 (min) 318.419 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:34 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:34 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.593433, mean: 2.610824, max: 2.625139
09:44:34 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:34 DEBUG   opendrift.models.physics_methods:1061:    min: 8.773383, mean: 8.802746, max: 8.826850
09:44:34 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.773383, mean: 8.802746, max: 8.826850
09:44:34 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:34 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:34 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:34 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205352 m/s - 0.206604 m/s)
09:44:34 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:34 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:34 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:34 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:34 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:34 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:34 INFO    opendrift.models.basemodel:2038: 2024-09-30 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
09:44:34 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:34 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:34 DEBUG   opendrift.models.basemodel:2057:               60.327892758669336 <- latitude  -> 60.33378922246921
09:44:34 DEBUG   opendrift.models.basemodel:2062:               4.63779976309905 <- longitude -> 4.648746665907281
09:44:34 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:34 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:44:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 04:00:00 (before)
                2024-09-30 05:00:00 (after)
09:44:45 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-30 04:00:00)
09:44:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 04:00:00) in space  (linearNDFast)
09:44:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3622110486562 and -65.35126415049311 degrees.
09:44:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3622110486562 and -65.35126415049311 degrees.
09:44:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:45 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0586057 (min) -0.0515096 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.531669 (min) 0.537157 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.511901 (min) -0.50766 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.64859 (min) -3.58191 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.96569 (min) 10.0036 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.65581e-05 (min) 2.68333e-05 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 315.441 (min) 318.561 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.764914, mean: 2.774511, max: 2.783138
09:44:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:45 DEBUG   opendrift.models.physics_methods:1061:    min: 9.058795, mean: 9.074501, max: 9.088599
09:44:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.058795, mean: 9.074501, max: 9.088599
09:44:45 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:45 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:45 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.212033 m/s - 0.212731 m/s)
09:44:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:45 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:45 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:45 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:45 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:45 INFO    opendrift.models.basemodel:2038: 2024-09-30 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
09:44:45 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:45 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:45 DEBUG   opendrift.models.basemodel:2057:               60.351535124318005 <- latitude  -> 60.35758450252035
09:44:45 DEBUG   opendrift.models.basemodel:2062:               4.629481080982885 <- longitude -> 4.640449152336838
09:44:45 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:45 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:44:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 05:00:00 (before)
                2024-09-30 06:00:00 (after)
09:44:59 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:59 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:59 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 05:00:00)
09:44:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 05:00:00) in space  (linearNDFast)
09:44:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:59 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37052970837236 and -65.35956164037734 degrees.
09:44:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37052970837236 and -65.35956164037734 degrees.
09:44:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:59 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:59 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:59 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:59 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:59 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:59 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0717378 (min) -0.0634155 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.662771 (min) 0.670549 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.3822 (min) -0.378305 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.5383 (min) -4.4521 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.3236 (min) 10.4015 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.44223e-05 (min) 4.48487e-05 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 311.71 (min) 314.733 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:59 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:59 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.127841, mean: 3.138625, max: 3.149962
09:44:59 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:59 DEBUG   opendrift.models.physics_methods:1061:    min: 9.635005, mean: 9.651598, max: 9.669016
09:44:59 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.635005, mean: 9.651598, max: 9.669016
09:44:59 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:59 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:59 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:59 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:59 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.225520 m/s - 0.226316 m/s)
09:44:59 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:59 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:59 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:59 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:59 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:59 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:59 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:59 INFO    opendrift.models.basemodel:2038: 2024-09-30 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
09:44:59 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:59 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:59 DEBUG   opendrift.models.basemodel:2057:               60.37964144021684 <- latitude  -> 60.38592705915812
09:44:59 DEBUG   opendrift.models.basemodel:2062:               4.619098457924141 <- longitude -> 4.630309181042936
09:44:59 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:59 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:44:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:59 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 06:00:00 (before)
                2024-09-30 07:00:00 (after)
09:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:45:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-30 06:00:00)
09:45:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 06:00:00) in space  (linearNDFast)
09:45:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:45:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:45:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38091233268597 and -65.36970160307064 degrees.
09:45:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38091233268597 and -65.36970160307064 degrees.
09:45:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:45:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:45:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:45:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:45:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:45:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:45:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:45:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:45:14 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:45:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00809572 (min) 0.0157541 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.714078 (min) 0.720319 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.195363 (min) -0.192757 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.43329 (min) -4.29114 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.76116 (min) 9.87841 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.77601e-05 (min) 5.79085e-05 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.584 (min) 316.086 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:45:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:45:14 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.826454, mean: 2.840371, max: 2.854507
09:45:14 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:45:14 DEBUG   opendrift.models.physics_methods:1061:    min: 9.159052, mean: 9.181571, max: 9.204394
09:45:14 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.159052, mean: 9.181571, max: 9.204394
09:45:14 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:45:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:14 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:45:14 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:45:14 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.214380 m/s - 0.215441 m/s)
09:45:14 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:45:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:45:14 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:45:14 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:45:14 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:45:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:14 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:45:14 INFO    opendrift.models.basemodel:2038: 2024-09-30 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
09:45:14 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:45:14 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:45:14 DEBUG   opendrift.models.basemodel:2057:               60.40905693138223 <- latitude  -> 60.41553193605671
09:45:14 DEBUG   opendrift.models.basemodel:2062:               4.614496358963948 <- longitude -> 4.6250456202040775
09:45:14 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:45:14 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:45:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:45:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:45:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:45:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 07:00:00 (before)
                2024-09-30 08:00:00 (after)
09:45:30 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:45:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:45:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:45:30 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:45:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:45:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:45:30 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 07:00:00)
09:45:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 07:00:00) in space  (linearNDFast)
09:45:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:45:30 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:45:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38551441701497 and -65.37496515369459 degrees.
09:45:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38551441701497 and -65.37496515369459 degrees.
09:45:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:45:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:45:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:45:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:45:30 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:45:30 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:45:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:30 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:45:30 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:45:30 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:45:30 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.114285 (min) 0.121716 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.672283 (min) 0.673797 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0167129 (min) 0.0195067 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.73183 (min) -4.59512 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.3278 (min) 10.5319 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.24185e-05 (min) 5.26006e-05 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 327.884 (min) 332.63 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:45:30 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:45:30 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.173499, mean: 3.211914, max: 3.250605
09:45:30 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:45:30 DEBUG   opendrift.models.physics_methods:1061:    min: 9.705071, mean: 9.763617, max: 9.822266
09:45:30 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.705071, mean: 9.763617, max: 9.822266
09:45:30 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:45:30 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:30 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:45:30 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:45:30 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.227160 m/s - 0.229903 m/s)
09:45:30 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:45:30 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:45:30 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:45:30 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:45:30 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:45:30 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:30 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:45:30 INFO    opendrift.models.basemodel:2038: 2024-09-30 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
09:45:30 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:45:30 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:45:30 DEBUG   opendrift.models.basemodel:2057:               60.437498029136144 <- latitude  -> 60.44403055857114
09:45:30 DEBUG   opendrift.models.basemodel:2062:               4.616345848903025 <- longitude -> 4.626359936199488
09:45:30 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:45:30 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:45:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:45:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:45:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:45:30 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 08:00:00 (before)
                2024-09-30 09:00:00 (after)
09:45:41 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:45:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:45:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:45:41 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:45:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:45:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:45:41 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 08:00:00)
09:45:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 08:00:00) in space  (linearNDFast)
09:45:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:45:41 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:45:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38366491154024 and -65.37365083280615 degrees.
09:45:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38366491154024 and -65.37365083280615 degrees.
09:45:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:45:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:45:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:45:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:45:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:45:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:45:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:41 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:45:41 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:45:41 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:45:41 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.162663 (min) 0.171734 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.570554 (min) 0.571511 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.158113 (min) 0.160691 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.96746 (min) -4.88921 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.90116 (min) 9.04745 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.21754e-05 (min) 2.23821e-05 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 340.114 (min) 342.929 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:45:41 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:45:41 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.554377, mean: 2.575423, max: 2.601849
09:45:41 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:45:41 DEBUG   opendrift.models.physics_methods:1061:    min: 8.707071, mean: 8.742858, max: 8.787608
09:45:41 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.707071, mean: 8.742858, max: 8.787608
09:45:41 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:45:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:41 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:45:41 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:45:41 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.203800 m/s - 0.205685 m/s)
09:45:41 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:45:41 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:45:41 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:45:41 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:45:41 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:45:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:41 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:45:41 INFO    opendrift.models.basemodel:2038: 2024-09-30 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
09:45:41 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:45:41 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:45:41 DEBUG   opendrift.models.basemodel:2057:               60.461720647078764 <- latitude  -> 60.46827793067547
09:45:41 DEBUG   opendrift.models.basemodel:2062:               4.6207630390588905 <- longitude -> 4.630979043480503
09:45:41 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:45:41 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:45:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:45:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:45:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:45:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 09:00:00 (before)
                2024-09-30 10:00:00 (after)
09:45:52 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:45:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:45:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:45:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:45:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:45:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:45:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 09:00:00)
09:45:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 09:00:00) in space  (linearNDFast)
09:45:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:45:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:45:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37924772754636 and -65.3690317183359 degrees.
09:45:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37924772754636 and -65.3690317183359 degrees.
09:45:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:45:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:45:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:45:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:45:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:45:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:45:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:45:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:45:52 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:45:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.159974 (min) 0.169625 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.475814 (min) 0.486187 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.172346 (min) 0.174889 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.21092 (min) -4.18446 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.4662 (min) 11.6117 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.4684e-05 (min) -1.46496e-05 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 341.858 (min) 342.824 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:45:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:45:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.670461, mean: 3.706561, max: 3.747667
09:45:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:45:52 DEBUG   opendrift.models.physics_methods:1061:    min: 10.437341, mean: 10.488529, max: 10.546542
09:45:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.437341, mean: 10.488529, max: 10.546542
09:45:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:45:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:45:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:45:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244300 m/s - 0.246856 m/s)
09:45:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:45:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:45:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:45:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:45:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:45:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:45:52 INFO    opendrift.models.basemodel:2038: 2024-09-30 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
09:45:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:45:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:45:52 DEBUG   opendrift.models.basemodel:2057:               60.48457055647492 <- latitude  -> 60.49139645775006
09:45:52 DEBUG   opendrift.models.basemodel:2062:               4.62591269915692 <- longitude -> 4.636469380361917
09:45:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:45:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:45:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:45:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:45:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:45:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 10:00:00 (before)
                2024-09-30 11:00:00 (after)
09:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:46:03 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:46:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 10:00:00)
09:46:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 10:00:00) in space  (linearNDFast)
09:46:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:46:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:46:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37409805304506 and -65.36354137617734 degrees.
09:46:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37409805304506 and -65.36354137617734 degrees.
09:46:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:46:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:46:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:46:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:46:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:46:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:46:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:46:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:46:03 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:46:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.10664 (min) 0.112411 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.395191 (min) 0.427466 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0484123 (min) 0.0523583 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.85999 (min) -3.79782 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.4137 (min) 10.4639 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.13153e-05 (min) -5.08849e-05 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 336.637 (min) 338.368 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:46:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:46:03 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.028653, mean: 3.042017, max: 3.052885
09:46:03 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:46:03 DEBUG   opendrift.models.physics_methods:1061:    min: 9.481004, mean: 9.501897, max: 9.518857
09:46:03 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.481004, mean: 9.501897, max: 9.518857
09:46:03 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:46:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:03 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:46:03 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:46:03 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.221915 m/s - 0.222801 m/s)
09:46:03 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:46:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:46:03 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:46:03 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:46:03 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:46:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:03 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:46:03 INFO    opendrift.models.basemodel:2038: 2024-09-30 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
09:46:03 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:46:03 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:46:03 DEBUG   opendrift.models.basemodel:2057:               60.50410174568696 <- latitude  -> 60.511939361484934
09:46:03 DEBUG   opendrift.models.basemodel:2062:               4.628049681761725 <- longitude -> 4.6385840003868015
09:46:03 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:46:03 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:46:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:46:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:46:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:46:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 11:00:00 (before)
                2024-09-30 12:00:00 (after)
09:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:46:14 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:46:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-30 11:00:00)
09:46:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 11:00:00) in space  (linearNDFast)
09:46:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:46:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:46:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37196106093356 and -65.36142674025513 degrees.
09:46:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37196106093356 and -65.36142674025513 degrees.
09:46:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:46:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:46:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:46:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:46:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:46:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:46:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:46:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:46:14 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:46:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0580175 (min) 0.0688854 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.402165 (min) 0.438352 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.177129 (min) -0.173647 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.27408 (min) -4.26162 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.72642 (min) 8.89953 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.40022e-05 (min) -6.37067e-05 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 331.649 (min) 333.737 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:46:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:46:14 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.320169, mean: 2.357086, max: 2.397040
09:46:14 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:46:14 DEBUG   opendrift.models.physics_methods:1061:    min: 8.298305, mean: 8.364034, max: 8.434653
09:46:14 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.298305, mean: 8.364034, max: 8.434653
09:46:14 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:46:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:14 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:46:14 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:46:14 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.194233 m/s - 0.197424 m/s)
09:46:14 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:46:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:46:14 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:46:14 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:46:14 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:46:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:14 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:46:14 INFO    opendrift.models.basemodel:2038: 2024-09-30 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
09:46:14 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:46:14 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:46:14 DEBUG   opendrift.models.basemodel:2057:               60.522746975764065 <- latitude  -> 60.53183677379879
09:46:14 DEBUG   opendrift.models.basemodel:2062:               4.626960712772958 <- longitude -> 4.636798602538328
09:46:14 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:46:14 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:46:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:46:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:46:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:46:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 12:00:00 (before)
                2024-09-30 13:00:00 (after)
09:46:25 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:46:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:46:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:46:25 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:46:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:46:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:46:25 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:46:25 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 12:00:00)
09:46:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 12:00:00) in space  (linearNDFast)
09:46:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:46:25 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:46:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37305001841696 and -65.36321213712347 degrees.
09:46:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37305001841696 and -65.36321213712347 degrees.
09:46:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:25 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:46:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:46:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:46:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:46:25 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:46:25 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:46:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:25 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:46:25 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:46:25 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:46:25 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0091391 (min) 0.0177448 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.407087 (min) 0.431329 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.398294 (min) -0.39485 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.95092 (min) -4.89761 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.85269 (min) 9.11 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.54447e-05 (min) -5.52845e-05 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 329.569 (min) 332.012 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:46:25 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:46:25 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.521456, mean: 2.581083, max: 2.644288
09:46:25 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:46:25 DEBUG   opendrift.models.physics_methods:1061:    min: 8.650781, mean: 8.752393, max: 8.858984
09:46:25 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.650781, mean: 8.752393, max: 8.858984
09:46:25 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:46:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:25 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:46:25 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:46:25 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.202483 m/s - 0.207356 m/s)
09:46:25 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:46:25 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:46:25 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:46:25 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:46:25 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:46:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:25 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:46:25 INFO    opendrift.models.basemodel:2038: 2024-09-30 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
09:46:25 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:46:25 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:46:25 DEBUG   opendrift.models.basemodel:2057:               60.54179329871497 <- latitude  -> 60.55149942974475
09:46:25 DEBUG   opendrift.models.basemodel:2062:               4.621620614571202 <- longitude -> 4.630913296066862
09:46:25 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:46:25 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:46:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:25 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:46:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:46:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:46:25 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 13:00:00 (before)
                2024-09-30 14:00:00 (after)
09:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:46:36 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:46:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 13:00:00)
09:46:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 13:00:00) in space  (linearNDFast)
09:46:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:46:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:46:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37839011061072 and -65.36909743229153 degrees.
09:46:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37839011061072 and -65.36909743229153 degrees.
09:46:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:46:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:46:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:46:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:46:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:46:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:46:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:46:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:46:36 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:46:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0422862 (min) -0.0320042 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.480263 (min) 0.488435 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.561406 (min) -0.557664 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.36862 (min) -4.19627 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.6411 (min) 10.7416 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.13855e-05 (min) -3.1275e-05 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 331.105 (min) 333.972 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:46:36 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.239329, mean: 3.263526, max: 3.288466
09:46:36 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:46:36 DEBUG   opendrift.models.physics_methods:1061:    min: 9.805214, mean: 9.841762, max: 9.879303
09:46:36 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.805214, mean: 9.841762, max: 9.879303
09:46:36 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:46:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:36 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:46:36 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:46:36 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.229504 m/s - 0.231238 m/s)
09:46:36 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:46:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:46:36 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:46:36 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:46:36 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:46:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:36 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:46:36 INFO    opendrift.models.basemodel:2038: 2024-09-30 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
09:46:36 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:46:36 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:46:36 DEBUG   opendrift.models.basemodel:2057:               60.56424679426149 <- latitude  -> 60.57410487475833
09:46:36 DEBUG   opendrift.models.basemodel:2062:               4.613160995400334 <- longitude -> 4.623221306250644
09:46:36 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:46:36 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:46:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:46:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:46:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:46:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 14:00:00 (before)
                2024-09-30 15:00:00 (after)
09:46:47 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:46:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:46:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:46:47 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:46:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:46:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:46:47 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:46:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 14:00:00)
09:46:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 14:00:00) in space  (linearNDFast)
09:46:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:46:47 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:46:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38684973566585 and -65.3767894265493 degrees.
09:46:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38684973566585 and -65.3767894265493 degrees.
09:46:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:46:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:46:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:46:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:46:47 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:46:47 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:46:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:47 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:46:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:46:47 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:46:47 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.106885 (min) -0.0803116 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.473371 (min) 0.497981 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.626351 (min) -0.622684 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.26098 (min) -4.2093 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.50876 (min) 5.65987 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.07595e-05 (min) -1.03141e-05 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 332.566 (min) 336.206 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:46:47 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:46:47 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.189950, mean: 1.208528, max: 1.228498
09:46:47 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:46:47 DEBUG   opendrift.models.physics_methods:1061:    min: 5.942839, mean: 5.989029, max: 6.038330
09:46:47 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.942839, mean: 5.989029, max: 6.038330
09:46:47 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:46:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:47 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:46:47 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:46:47 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.139100 m/s - 0.141335 m/s)
09:46:47 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:46:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:46:47 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:46:47 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:46:47 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:46:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:47 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:46:47 INFO    opendrift.models.basemodel:2038: 2024-09-30 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
09:46:47 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:46:47 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:46:47 DEBUG   opendrift.models.basemodel:2057:               60.58389584723487 <- latitude  -> 60.59305505939907
09:46:47 DEBUG   opendrift.models.basemodel:2062:               4.600582277915967 <- longitude -> 4.612378111962954
09:46:47 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:46:47 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:46:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:46:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:46:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:46:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 15:00:00 (before)
                2024-09-30 16:00:00 (after)
09:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:46:58 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:46:58 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 15:00:00)
09:46:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 15:00:00) in space  (linearNDFast)
09:46:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:46:58 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:46:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39942844970133 and -65.38763260561042 degrees.
09:46:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39942844970133 and -65.38763260561042 degrees.
09:46:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:58 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:46:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:46:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:46:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:46:58 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:46:58 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:46:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:58 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:46:58 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:46:58 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:46:58 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.202052 (min) -0.16972 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.535855 (min) 0.551437 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.615782 (min) -0.609723 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.73961 (min) -2.69141 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.44039 (min) 9.67467 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.46691e-05 (min) 1.48471e-05 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 335.718 (min) 340.751 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:46:58 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:46:58 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.376890, mean: 2.429400, max: 2.480736
09:46:58 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:46:58 DEBUG   opendrift.models.physics_methods:1061:    min: 8.399126, mean: 8.491351, max: 8.580644
09:46:58 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.399126, mean: 8.491351, max: 8.580644
09:46:58 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:46:58 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:58 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:46:58 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:46:58 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.196593 m/s - 0.200841 m/s)
09:46:58 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:46:58 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:46:58 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:46:58 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:46:58 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:46:58 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:58 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:46:58 INFO    opendrift.models.basemodel:2038: 2024-09-30 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
09:46:58 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:46:58 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:46:58 DEBUG   opendrift.models.basemodel:2057:               60.607963669475865 <- latitude  -> 60.61647199443421
09:46:58 DEBUG   opendrift.models.basemodel:2062:               4.583766686823787 <- longitude -> 4.597619901793175
09:46:58 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:46:58 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:46:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:58 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:46:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:46:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:46:58 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 16:00:00 (before)
                2024-09-30 17:00:00 (after)
09:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:47:13 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:47:13 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x24x7) for time before (2024-09-30 16:00:00)
09:47:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 16:00:00) in space  (linearNDFast)
09:47:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:47:13 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:47:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41624403289626 and -65.40239080504789 degrees.
09:47:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41624403289626 and -65.40239080504789 degrees.
09:47:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:47:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:47:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:47:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:47:13 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:47:13 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:47:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:13 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:47:13 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:47:13 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:47:13 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.211506 (min) -0.205992 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.600016 (min) 0.628339 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.535229 (min) -0.531067 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.80025 (min) -1.78061 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.54617 (min) 9.57583 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.27319e-05 (min) 3.32462e-05 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 343.557 (min) 350.093 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:47:13 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:47:13 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.319843, mean: 2.326843, max: 2.335349
09:47:13 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:47:13 DEBUG   opendrift.models.physics_methods:1061:    min: 8.297721, mean: 8.310229, max: 8.325407
09:47:13 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.297721, mean: 8.310229, max: 8.325407
09:47:13 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:47:13 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:13 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:47:13 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:47:13 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.194219 m/s - 0.194867 m/s)
09:47:13 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:47:13 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:47:13 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:47:13 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:47:13 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:47:13 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:13 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:47:13 INFO    opendrift.models.basemodel:2038: 2024-09-30 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
09:47:13 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:47:13 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:47:13 DEBUG   opendrift.models.basemodel:2057:               60.63443280777605 <- latitude  -> 60.642044940332354
09:47:13 DEBUG   opendrift.models.basemodel:2062:               4.5676517872010605 <- longitude -> 4.5815906829737285
09:47:13 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:47:13 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:47:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:47:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:47:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:47:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 17:00:00 (before)
                2024-09-30 18:00:00 (after)
09:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:47:28 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:47:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 17:00:00)
09:47:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 17:00:00) in space  (linearNDFast)
09:47:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:47:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:47:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43235891585935 and -65.41842001831789 degrees.
09:47:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43235891585935 and -65.41842001831789 degrees.
09:47:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:47:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:47:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:47:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:47:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:47:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:47:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:47:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:47:28 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:47:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.178616 (min) -0.161198 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.633113 (min) 0.652985 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.384727 (min) -0.380721 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.03439 (min) -1.02201 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.19712 (min) 8.30957 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.96865e-05 (min) 5.00797e-05 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 353.061 (min) 358.424 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:47:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:47:28 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.678723, mean: 1.701009, max: 1.724920
09:47:28 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:47:28 DEBUG   opendrift.models.physics_methods:1061:    min: 7.058608, mean: 7.105290, max: 7.155072
09:47:28 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.058608, mean: 7.105290, max: 7.155072
09:47:28 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:47:28 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:29 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:47:29 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:47:29 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.165216 m/s - 0.167474 m/s)
09:47:29 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:47:29 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:47:29 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:47:29 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:47:29 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:47:29 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:29 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:47:29 INFO    opendrift.models.basemodel:2038: 2024-09-30 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
09:47:29 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:47:29 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:47:29 DEBUG   opendrift.models.basemodel:2057:               60.66083163782922 <- latitude  -> 60.667874275262434
09:47:29 DEBUG   opendrift.models.basemodel:2062:               4.554530389044767 <- longitude -> 4.569631907860497
09:47:29 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:47:29 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:47:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:29 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:47:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:47:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:47:29 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 18:00:00 (before)
                2024-09-30 19:00:00 (after)
09:47:40 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:47:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:47:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:47:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:47:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:47:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:47:40 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:47:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-09-30 18:00:00)
09:47:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 18:00:00) in space  (linearNDFast)
09:47:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:47:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:47:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44548031404015 and -65.43037878885852 degrees.
09:47:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44548031404015 and -65.43037878885852 degrees.
09:47:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:47:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:47:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:47:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:47:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:47:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:47:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:47:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:47:40 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:47:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.172899 (min) -0.148802 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.618564 (min) 0.627709 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.18529 (min) -0.181117 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.797 (min) -2.53038 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.61867 (min) 5.08396 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.1274e-05 (min) 6.13853e-05 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 354.508 (min) 359.826 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:47:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:47:40 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.717221, mean: 0.752631, max: 0.793336
09:47:40 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:47:40 DEBUG   opendrift.models.physics_methods:1061:    min: 4.613772, mean: 4.726144, max: 4.852417
09:47:40 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.613772, mean: 4.726144, max: 4.852417
09:47:40 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:47:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:40 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:47:40 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:47:40 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107991 m/s - 0.113577 m/s)
09:47:40 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:47:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:47:40 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:47:40 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:47:40 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:47:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:40 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:47:40 INFO    opendrift.models.basemodel:2038: 2024-09-30 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
09:47:40 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:47:40 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:47:40 DEBUG   opendrift.models.basemodel:2057:               60.684164319098066 <- latitude  -> 60.69109885167312
09:47:40 DEBUG   opendrift.models.basemodel:2062:               4.53979214311178 <- longitude -> 4.556143833037818
09:47:40 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:47:40 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:47:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:47:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:47:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:47:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 19:00:00 (before)
                2024-09-30 20:00:00 (after)
09:47:52 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:47:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:47:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:47:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:47:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:47:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:47:52 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:47:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x7) for time before (2024-09-30 19:00:00)
09:47:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 19:00:00) in space  (linearNDFast)
09:47:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:47:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:47:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4602185537695 and -65.44386686106083 degrees.
09:47:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4602185537695 and -65.44386686106083 degrees.
09:47:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:47:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:47:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:47:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:47:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:47:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:47:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:47:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:47:52 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:47:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.156247 (min) -0.150946 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.534548 (min) 0.555169 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0361681 (min) 0.0393545 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.36129 (min) -4.33773 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.06525 (min) 3.1514 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.68358e-05 (min) 5.75037e-05 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 350.56 (min) 356.693 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:47:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:47:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.698330, mean: 0.703231, max: 0.707320
09:47:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:47:52 DEBUG   opendrift.models.physics_methods:1061:    min: 4.552605, mean: 4.568552, max: 4.581816
09:47:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.552605, mean: 4.568552, max: 4.581816
09:47:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:47:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:47:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:47:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.106560 m/s - 0.107243 m/s)
09:47:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:47:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:47:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:47:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:47:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:47:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:47:52 INFO    opendrift.models.basemodel:2038: 2024-09-30 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
09:47:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:47:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:47:52 DEBUG   opendrift.models.basemodel:2057:               60.704083046668 <- latitude  -> 60.71040473581978
09:47:52 DEBUG   opendrift.models.basemodel:2062:               4.523780636229309 <- longitude -> 4.54044769383871
09:47:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:47:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:47:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:47:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:47:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:47:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 20:00:00 (before)
                2024-09-30 21:00:00 (after)
09:48:03 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:48:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:03 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:48:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x7) for time before (2024-09-30 20:00:00)
09:48:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 20:00:00) in space  (linearNDFast)
09:48:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47623005626176 and -65.45956299415037 degrees.
09:48:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47623005626176 and -65.45956299415037 degrees.
09:48:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:03 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:48:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.146291 (min) -0.133384 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.405807 (min) 0.425527 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.201817 (min) 0.204436 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.26289 (min) -4.21989 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.68163 (min) 2.87944 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.82477e-05 (min) 2.87114e-05 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 348.733 (min) 355.483 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:03 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.614965, mean: 0.631381, max: 0.650998
09:48:03 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:03 DEBUG   opendrift.models.physics_methods:1061:    min: 4.272233, mean: 4.328829, max: 4.395613
09:48:03 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.272233, mean: 4.328829, max: 4.395613
09:48:03 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:03 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:03 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:03 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.099997 m/s - 0.102885 m/s)
09:48:03 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:03 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:03 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:03 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:03 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:03 INFO    opendrift.models.basemodel:2038: 2024-09-30 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
09:48:03 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:03 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:03 DEBUG   opendrift.models.basemodel:2057:               60.71956401702609 <- latitude  -> 60.72538229162373
09:48:03 DEBUG   opendrift.models.basemodel:2062:               4.508508286493877 <- longitude -> 4.526084327709152
09:48:03 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:03 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:48:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:48:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:48:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 21:00:00 (before)
                2024-09-30 22:00:00 (after)
09:48:15 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:48:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:15 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:15 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:48:15 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-30 21:00:00)
09:48:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 21:00:00) in space  (linearNDFast)
09:48:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:15 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49150239511258 and -65.47392635946375 degrees.
09:48:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49150239511258 and -65.47392635946375 degrees.
09:48:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:15 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:48:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.171544 (min) -0.156321 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.334338 (min) 0.346634 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.226616 (min) 0.230085 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.94256 (min) -3.90236 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.31393 (min) 2.45373 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.58389e-05 (min) -1.56865e-05 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 349.97 (min) 357.299 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:15 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.506334, mean: 0.518229, max: 0.530489
09:48:15 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:15 DEBUG   opendrift.models.physics_methods:1061:    min: 3.876573, mean: 3.921816, max: 3.967965
09:48:15 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.876573, mean: 3.921816, max: 3.967965
09:48:15 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:15 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:15 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:15 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.090736 m/s - 0.092875 m/s)
09:48:15 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:15 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:15 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:15 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:15 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:15 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:15 INFO    opendrift.models.basemodel:2038: 2024-09-30 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
09:48:15 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:15 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:15 DEBUG   opendrift.models.basemodel:2057:               60.732213387234 <- latitude  -> 60.73780942090235
09:48:15 DEBUG   opendrift.models.basemodel:2062:               4.4919865407359865 <- longitude -> 4.510617982927627
09:48:15 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:15 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['ocean_vertical_diffusivity', 'x_wind', 'y_wind', 'sea_floor_depth_below_sea_level', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:48:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:48:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:48:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 22:00:00 (before)
                2024-09-30 23:00:00 (after)
09:48:26 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:48:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:26 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:26 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:48:26 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-09-30 22:00:00)
09:48:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 22:00:00) in space  (linearNDFast)
09:48:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:26 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50802414024777 and -65.48939269447402 degrees.
09:48:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50802414024777 and -65.48939269447402 degrees.
09:48:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:26 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:48:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.189269 (min) -0.181901 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.304654 (min) 0.319012 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0950253 (min) 0.0978042 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.2862 (min) -4.27703 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.68494 (min) 2.74004 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.45907e-05 (min) -5.44045e-05 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 353.683 (min) 360.103 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:26 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.628830, mean: 0.631963, max: 0.634990
09:48:26 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:26 DEBUG   opendrift.models.physics_methods:1061:    min: 4.320125, mean: 4.330872, max: 4.341231
09:48:26 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.320125, mean: 4.330872, max: 4.341231
09:48:26 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:26 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:26 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:26 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101118 m/s - 0.101612 m/s)
09:48:26 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:26 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:26 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:26 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:26 DEBUG   opendrift.models.basemodel:2153: Cleaning up
09:48:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:26 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:26 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:26 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Run to Mode.Result
09:48:26 DEBUG   opendrift.models.oceandrift:115: No machine learning correction available.
09:48:26 DEBUG   opendrift.config:168: Adding 50 config items from environment
09:48:26 DEBUG   opendrift.config:168: Adding 5 config items from environment
09:48:26 DEBUG   opendrift.config:168: Adding 18 config items from __init__
09:48:26 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
09:48:26 DEBUG   opendrift.config:168: Adding 5 config items from __init__
09:48:26 INFO    opendrift.models.basemodel:515: OpenDriftSimulation initialised (version 1.11.13 / v1.11.13-48-g5bea84b)
09:48:26 DEBUG   opendrift.config:168: Adding 15 config items from oceandrift
09:48:26 DEBUG   opendrift.config:178:   Overwriting config item seed:z
09:48:26 DEBUG   opendrift.readers.reader_lazy:38: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:26 DEBUG   opendrift.models.basemodel.environment:328: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:26 INFO    opendrift.models.basemodel.environment:218: Adding a dynamical landmask with max. priority based on assumed maximum speed of 2.0 m/s. Adding a customised landmask may be faster...
09:48:26 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
09:48:26 DEBUG   opendrift.models.basemodel.environment:328: Added reader global_landmask
09:48:26 INFO    opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
09:48:26 INFO    opendrift.models.basemodel.environment:248:    x_sea_water_velocity: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    y_sea_water_velocity: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_height: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    x_wind: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    y_wind: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    upward_sea_water_velocity: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    ocean_vertical_diffusivity: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_significant_height: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_to_direction: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_significant_height: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_to_direction: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_mean_period: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_significant_height: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    surface_downward_x_stress: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    surface_downward_y_stress: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    turbulent_kinetic_energy: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    turbulent_generic_length_scale: 0.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    ocean_mixed_layer_thickness: 50.000000
09:48:26 INFO    opendrift.models.basemodel.environment:248:    sea_floor_depth_below_sea_level: 10000.000000
09:48:26 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Config to Mode.Ready
09:48:26 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Ready to Mode.Run
09:48:26 DEBUG   opendrift.models.basemodel:1778:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.13
  Platform: Linux, 5.15.0-1057-aws
  68.5677490234375 GB memory
  36 processors (x86_64)
  NumPy version 1.26.4
  SciPy version 1.14.1
  Matplotlib version 3.9.1
  NetCDF4 version 1.6.1
  Xarray version 2024.9.0
  ADIOS (adios_db) version 1.1.1
  Copernicusmarine version 1.3.3
  Python version 3.11.6 | packaged by conda-forge | (main, Oct  3 2023, 10:40:35) [GCC 12.3.0]
------------------------------------------------------

09:48:26 DEBUG   opendrift.models.basemodel:1792: No output file is specified, neglecting export_buffer_length
09:48:26 DEBUG   opendrift.models.basemodel:1910: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2024-09-28 00:00:00 to 2024-09-30 23:00:00)
09:48:26 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]
09:48:26 DEBUG   opendrift.models.basemodel.environment:180:    Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
09:48:26 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
09:48:26 INFO    opendrift.models.basemodel:936: Using existing reader for land_binary_mask
09:48:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:26 INFO    opendrift.models.basemodel:947: All points are in ocean
09:48:26 DEBUG   opendrift.models.basemodel:891: to be seeded: 1000, already seeded 0
09:48:26 DEBUG   opendrift.models.basemodel:909: Released 1000 new elements.
09:48:26 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:26 INFO    opendrift.models.basemodel:2038: 2024-09-28 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
09:48:26 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:26 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:26 DEBUG   opendrift.models.basemodel:2057:               59.99731 <- latitude  -> 60.002846
09:48:26 DEBUG   opendrift.models.basemodel:2062:               4.4945407 <- longitude -> 4.504945
09:48:26 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:26 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:26 DEBUG   opendrift.models.basemodel.environment:581: Variables not covered by any reader: ['y_wind', 'sea_surface_wave_significant_height', 'surface_downward_x_stress', 'x_sea_water_velocity', 'sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'turbulent_kinetic_energy', 'ocean_vertical_diffusivity', 'surface_downward_y_stress', 'x_wind', 'upward_sea_water_velocity', 'turbulent_generic_length_scale', 'sea_surface_wave_stokes_drift_x_velocity', 'sea_surface_height', 'ocean_mixed_layer_thickness', 'sea_surface_wave_stokes_drift_y_velocity', 'sea_floor_depth_below_sea_level', 'y_sea_water_velocity', 'sea_surface_wave_period_at_variance_spectral_density_maximum']
09:48:26 DEBUG   opendrift.readers.reader_lazy:57: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:26 DEBUG   opendrift.readers:84: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
09:48:26 INFO    opendrift.readers.reader_netCDF_CF_generic:102: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:32 DEBUG   opendrift.readers.reader_netCDF_CF_generic:119: Finding coordinate variables.
09:48:32 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'}
09:48:33 INFO    opendrift.readers.reader_netCDF_CF_generic:325: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
09:48:33 DEBUG   opendrift.readers.reader_netCDF_CF_generic:361: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
09:48:33 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
09:48:33 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
09:48:33 DEBUG   opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
09:48:33 DEBUG   opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
09:48:33 DEBUG   opendrift.readers.basereader.structured:153: Clearing cache for reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be before starting new simulation
09:48:33 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
09:48:33 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:33 DEBUG   opendrift.readers.reader_lazy:72: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:33 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
09:48:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 00:00:00 (before)
                2024-09-28 01:00:00 (after)
09:48:34 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:34 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-28 00:00:00)
09:48:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 00:00:00) in space  (linearNDFast)
09:48:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:34 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:48:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:48:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:34 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:34 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:34 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:34 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:34 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0709797 (min) -0.0611541 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.14892 (min) 0.1597 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.549814 (min) -0.546579 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.79791 (min) 7.81582 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.0082 (min) -9.99132 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.18288e-07 (min) -6.67602e-07 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:34 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:34 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.951648, mean: 3.959219, max: 3.966779
09:48:34 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:34 DEBUG   opendrift.models.physics_methods:1061:    min: 10.829757, mean: 10.840126, max: 10.850471
09:48:34 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.829757, mean: 10.840126, max: 10.850471
09:48:34 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:34 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:34 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:34 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.253485 m/s - 0.253969 m/s)
09:48:34 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:34 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:34 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:34 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:34 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:34 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:34 INFO    opendrift.models.basemodel:2038: 2024-09-28 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
09:48:34 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:34 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:34 DEBUG   opendrift.models.basemodel:2057:               59.99598682331655 <- latitude  -> 60.00120988963378
09:48:34 DEBUG   opendrift.models.basemodel:2062:               4.500090039948908 <- longitude -> 4.511017331860532
09:48:34 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:34 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:34 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:34 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 01:00:00 (before)
                2024-09-28 02:00:00 (after)
09:48:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-28 01:00:00)
09:48:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 01:00:00) in space  (linearNDFast)
09:48:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49992087865664 and -65.4889935948703 degrees.
09:48:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49992087865664 and -65.4889935948703 degrees.
09:48:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:35 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:35 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0543857 (min) -0.0448595 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.230996 (min) 0.234283 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.511471 (min) -0.507768 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.11589 (min) 7.14331 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.27841 (min) -9.24401 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.08055e-06 (min) 6.05313e-06 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.406 (min) 298.685 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:35 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.351456, mean: 3.360848, max: 3.370510
09:48:35 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:35 DEBUG   opendrift.models.physics_methods:1061:    min: 9.973471, mean: 9.987435, max: 10.001783
09:48:35 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.973471, mean: 9.987435, max: 10.001783
09:48:35 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:35 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:35 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:35 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.233442 m/s - 0.234105 m/s)
09:48:35 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:35 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:35 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:35 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:35 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:35 INFO    opendrift.models.basemodel:2038: 2024-09-28 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
09:48:35 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:35 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:35 DEBUG   opendrift.models.basemodel:2057:               59.9975462342305 <- latitude  -> 60.002710103697915
09:48:35 DEBUG   opendrift.models.basemodel:2062:               4.505843015007007 <- longitude -> 4.51721494419984
09:48:35 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:35 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 02:00:00 (before)
                2024-09-28 03:00:00 (after)
09:48:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 02:00:00)
09:48:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 02:00:00) in space  (linearNDFast)
09:48:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49416791440083 and -65.48279598527043 degrees.
09:48:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49416791440083 and -65.48279598527043 degrees.
09:48:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:36 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:36 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0295427 (min) -0.0163969 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.298677 (min) 0.313405 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.45612 (min) -0.452387 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 9.0571 (min) 9.11631 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -6.52719 (min) -6.42713 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.68174e-05 (min) 1.83283e-05 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.565 (min) 298.849 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:36 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.034386, mean: 3.063344, max: 3.085431
09:48:36 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:36 DEBUG   opendrift.models.physics_methods:1061:    min: 9.489974, mean: 9.535140, max: 9.569462
09:48:36 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.489974, mean: 9.535140, max: 9.569462
09:48:36 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:36 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:36 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:36 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.222125 m/s - 0.223986 m/s)
09:48:36 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:36 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:36 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:36 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:36 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:36 INFO    opendrift.models.basemodel:2038: 2024-09-28 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
09:48:36 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:36 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:36 DEBUG   opendrift.models.basemodel:2057:               60.00314973820235 <- latitude  -> 60.00856220683951
09:48:36 DEBUG   opendrift.models.basemodel:2062:               4.515983915932329 <- longitude -> 4.527498076019081
09:48:36 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:36 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 03:00:00 (before)
                2024-09-28 04:00:00 (after)
09:48:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 03:00:00)
09:48:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 03:00:00) in space  (linearNDFast)
09:48:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48402701045424 and -65.47251284755802 degrees.
09:48:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48402701045424 and -65.47251284755802 degrees.
09:48:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:37 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:37 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00382359 (min) 0.0207772 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.351423 (min) 0.373608 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.361615 (min) -0.358239 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 10.6764 (min) 10.8392 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -0.82946 (min) -0.802465 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.72373e-05 (min) 1.82752e-05 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.947 (min) 299.199 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:37 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.820854, mean: 2.862103, max: 2.906074
09:48:37 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:37 DEBUG   opendrift.models.physics_methods:1061:    min: 9.149975, mean: 9.216598, max: 9.287159
09:48:37 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.149975, mean: 9.216598, max: 9.287159
09:48:37 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:37 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:37 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:37 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.214167 m/s - 0.217378 m/s)
09:48:37 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:37 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:37 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:37 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:37 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:37 INFO    opendrift.models.basemodel:2038: 2024-09-28 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
09:48:37 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:37 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:37 DEBUG   opendrift.models.basemodel:2057:               60.01414740715076 <- latitude  -> 60.01989792789985
09:48:37 DEBUG   opendrift.models.basemodel:2062:               4.530931067668229 <- longitude -> 4.541962714167277
09:48:37 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:37 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 04:00:00 (before)
                2024-09-28 05:00:00 (after)
09:48:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 04:00:00)
09:48:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 04:00:00) in space  (linearNDFast)
09:48:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46907984375937 and -65.45804819802184 degrees.
09:48:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46907984375937 and -65.45804819802184 degrees.
09:48:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:38 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:38 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00581764 (min) 0.0149896 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.291083 (min) 0.312593 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.253597 (min) -0.250289 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.62571 (min) 2.8006 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -12.9422 (min) -12.901 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.98585e-05 (min) 3.0482e-05 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.457 (min) 299.64 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:38 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.276168, mean: 4.291166, max: 4.306809
09:48:38 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:38 DEBUG   opendrift.models.physics_methods:1061:    min: 11.265668, mean: 11.285406, max: 11.305958
09:48:38 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.265668, mean: 11.285406, max: 11.305958
09:48:38 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:38 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:38 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:38 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.263688 m/s - 0.264631 m/s)
09:48:38 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:38 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:38 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:38 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:38 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:38 INFO    opendrift.models.basemodel:2038: 2024-09-28 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
09:48:38 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:38 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:38 DEBUG   opendrift.models.basemodel:2057:               60.01532891306867 <- latitude  -> 60.02138074639194
09:48:38 DEBUG   opendrift.models.basemodel:2062:               4.535168751052295 <- longitude -> 4.545799935578727
09:48:38 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:38 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 05:00:00 (before)
                2024-09-28 06:00:00 (after)
09:48:39 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:39 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 05:00:00)
09:48:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 05:00:00) in space  (linearNDFast)
09:48:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:39 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46484216568875 and -65.45421099131599 degrees.
09:48:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46484216568875 and -65.45421099131599 degrees.
09:48:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:39 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:39 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:39 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:39 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:39 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0188386 (min) 0.00345169 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.203518 (min) 0.222964 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.153945 (min) -0.151576 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.62586 (min) 5.84098 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -13.398 (min) -13.2892 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.53117e-05 (min) 3.57348e-05 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.534 (min) 299.7 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:39 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:39 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.130181, mean: 5.191511, max: 5.255160
09:48:39 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:39 DEBUG   opendrift.models.physics_methods:1061:    min: 12.339453, mean: 12.412963, max: 12.488854
09:48:39 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.339453, mean: 12.412963, max: 12.488854
09:48:39 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:39 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:39 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:39 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:39 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.288821 m/s - 0.292318 m/s)
09:48:39 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:39 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:39 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:39 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:39 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:39 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:39 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:39 INFO    opendrift.models.basemodel:2038: 2024-09-28 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
09:48:39 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:39 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:39 DEBUG   opendrift.models.basemodel:2057:               60.01340481721519 <- latitude  -> 60.01969599489121
09:48:39 DEBUG   opendrift.models.basemodel:2062:               4.541857894267131 <- longitude -> 4.552973459808662
09:48:39 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:39 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:39 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:39 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 06:00:00 (before)
                2024-09-28 07:00:00 (after)
09:48:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 06:00:00)
09:48:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 06:00:00) in space  (linearNDFast)
09:48:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45815302075283 and -65.44703744896354 degrees.
09:48:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45815302075283 and -65.44703744896354 degrees.
09:48:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:40 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:40 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0146671 (min) 0.00823379 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.111992 (min) 0.136789 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0423056 (min) -0.0399339 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 9.08678 (min) 9.31416 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -12.1873 (min) -12.0598 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.12473e-05 (min) 2.15272e-05 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.587 (min) 299.746 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:40 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.685056, mean: 5.701689, max: 5.714938
09:48:40 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:40 DEBUG   opendrift.models.physics_methods:1061:    min: 12.989635, mean: 13.008623, max: 13.023728
09:48:40 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.989635, mean: 13.008623, max: 13.023728
09:48:40 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:40 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:40 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:40 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.304039 m/s - 0.304837 m/s)
09:48:40 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:40 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:40 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:40 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:40 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:40 INFO    opendrift.models.basemodel:2038: 2024-09-28 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
09:48:40 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:40 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:40 DEBUG   opendrift.models.basemodel:2057:               60.00929893222761 <- latitude  -> 60.01601306372431
09:48:40 DEBUG   opendrift.models.basemodel:2062:               4.553946000751301 <- longitude -> 4.564391369765924
09:48:40 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:40 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 07:00:00 (before)
                2024-09-28 08:00:00 (after)
09:48:41 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:41 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 07:00:00)
09:48:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 07:00:00) in space  (linearNDFast)
09:48:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:41 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44606491322621 and -65.43561955623291 degrees.
09:48:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44606491322621 and -65.43561955623291 degrees.
09:48:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:41 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:41 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:41 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:41 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:41 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0356566 (min) -0.0170596 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0182805 (min) 0.0286038 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0025568 (min) 0.00360141 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.47145 (min) 7.53318 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -13.7185 (min) -13.6813 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.15897e-06 (min) -1.79169e-06 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.65 (min) 299.806 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:41 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:41 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.994050, mean: 6.001595, max: 6.009352
09:48:41 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:41 DEBUG   opendrift.models.physics_methods:1061:    min: 13.337971, mean: 13.346363, max: 13.354986
09:48:41 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.337971, mean: 13.346363, max: 13.354986
09:48:41 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:41 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:41 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:41 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.312193 m/s - 0.312591 m/s)
09:48:41 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:41 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:41 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:41 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:41 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:41 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:41 INFO    opendrift.models.basemodel:2038: 2024-09-28 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
09:48:41 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:41 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:41 DEBUG   opendrift.models.basemodel:2057:               60.00102370770965 <- latitude  -> 60.00798147184775
09:48:41 DEBUG   opendrift.models.basemodel:2062:               4.5620672796823385 <- longitude -> 4.572334902421424
09:48:41 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:41 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 08:00:00 (before)
                2024-09-28 09:00:00 (after)
09:48:42 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:42 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 08:00:00)
09:48:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 08:00:00) in space  (linearNDFast)
09:48:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:42 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4379436230204 and -65.42767601672509 degrees.
09:48:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4379436230204 and -65.42767601672509 degrees.
09:48:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:42 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:42 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:42 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:42 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:42 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0449368 (min) -0.027608 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0347764 (min) -0.027822 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0512779 (min) -0.0502287 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.35508 (min) 7.49622 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -11.716 (min) -11.559 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.63556e-05 (min) -3.62655e-05 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.542 (min) 299.747 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:42 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:42 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.662257, mean: 4.686530, max: 4.711621
09:48:42 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:42 DEBUG   opendrift.models.physics_methods:1061:    min: 11.763260, mean: 11.793836, max: 11.825371
09:48:42 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.763260, mean: 11.793836, max: 11.825371
09:48:42 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:42 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:42 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:42 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.275334 m/s - 0.276788 m/s)
09:48:42 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:42 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:42 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:42 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:42 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:42 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:42 INFO    opendrift.models.basemodel:2038: 2024-09-28 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
09:48:42 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:42 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:42 DEBUG   opendrift.models.basemodel:2057:               59.99257021863859 <- latitude  -> 59.9994194690917
09:48:42 DEBUG   opendrift.models.basemodel:2062:               4.569147134940242 <- longitude -> 4.579868977695549
09:48:42 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:42 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:42 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:42 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 09:00:00 (before)
                2024-09-28 10:00:00 (after)
09:48:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 09:00:00)
09:48:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 09:00:00) in space  (linearNDFast)
09:48:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43086378704331 and -65.42014192365887 degrees.
09:48:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43086378704331 and -65.42014192365887 degrees.
09:48:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0715792 (min) -0.0542181 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0438261 (min) -0.0397252 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.182242 (min) -0.180915 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.58624 (min) 7.70227 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -10.7456 (min) -10.7298 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.83182e-05 (min) -4.79325e-05 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.356 (min) 299.639 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:43 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.252755, mean: 4.272141, max: 4.292553
09:48:43 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:43 DEBUG   opendrift.models.physics_methods:1061:    min: 11.234785, mean: 11.260360, max: 11.287232
09:48:43 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.234785, mean: 11.260360, max: 11.287232
09:48:43 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:43 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:43 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:43 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:43 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.262965 m/s - 0.264192 m/s)
09:48:43 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:43 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:43 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:43 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:43 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:43 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:43 INFO    opendrift.models.basemodel:2038: 2024-09-28 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
09:48:43 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:43 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:43 DEBUG   opendrift.models.basemodel:2057:               59.9842922015455 <- latitude  -> 59.99113404302739
09:48:43 DEBUG   opendrift.models.basemodel:2062:               4.574848985785719 <- longitude -> 4.58581484081167
09:48:43 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:43 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 10:00:00 (before)
                2024-09-28 11:00:00 (after)
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 10:00:00)
09:48:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 10:00:00) in space  (linearNDFast)
09:48:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42516194887678 and -65.41419607757445 degrees.
09:48:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42516194887678 and -65.41419607757445 degrees.
09:48:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.112884 (min) -0.0977928 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0553602 (min) -0.0529977 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.347228 (min) -0.345753 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.50285 (min) 6.71082 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -12.3976 (min) -12.2938 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.23923e-05 (min) -4.23062e-05 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.094 (min) 299.466 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:44 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.782928, mean: 4.826503, max: 4.870167
09:48:44 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:44 DEBUG   opendrift.models.physics_methods:1061:    min: 11.914520, mean: 11.968655, max: 12.022685
09:48:44 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.914520, mean: 11.968655, max: 12.022685
09:48:44 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:44 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:44 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:44 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.278875 m/s - 0.281407 m/s)
09:48:44 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:44 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:44 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:44 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:44 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:44 INFO    opendrift.models.basemodel:2038: 2024-09-28 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
09:48:44 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:44 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:44 DEBUG   opendrift.models.basemodel:2057:               59.97458709592594 <- latitude  -> 59.98143017410297
09:48:44 DEBUG   opendrift.models.basemodel:2062:               4.576524678938837 <- longitude -> 4.5875729834608165
09:48:44 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:44 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 11:00:00 (before)
                2024-09-28 12:00:00 (after)
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 11:00:00)
09:48:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 11:00:00) in space  (linearNDFast)
09:48:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42348623877781 and -65.41243793540315 degrees.
09:48:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42348623877781 and -65.41243793540315 degrees.
09:48:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.17801 (min) -0.165694 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.00180894 (min) 0.00829337 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.471207 (min) -0.469583 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.42101 (min) 4.8497 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.43724 (min) -9.03712 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.56338e-05 (min) -2.55825e-05 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.583 (min) 299.088 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:44 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.489887, mean: 2.632950, max: 2.767482
09:48:44 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:44 DEBUG   opendrift.models.physics_methods:1061:    min: 8.596456, mean: 8.839660, max: 9.062999
09:48:44 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.596456, mean: 8.839660, max: 9.062999
09:48:44 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:44 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:44 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:44 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.201211 m/s - 0.212131 m/s)
09:48:44 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:44 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:44 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:44 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:44 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:44 INFO    opendrift.models.basemodel:2038: 2024-09-28 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
09:48:44 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:44 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:44 DEBUG   opendrift.models.basemodel:2057:               59.96900757514857 <- latitude  -> 59.9754210338822
09:48:44 DEBUG   opendrift.models.basemodel:2062:               4.571410052214917 <- longitude -> 4.582408319662662
09:48:44 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:44 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 12:00:00 (before)
                2024-09-28 13:00:00 (after)
09:48:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 12:00:00)
09:48:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 12:00:00) in space  (linearNDFast)
09:48:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42860087428005 and -65.41760260334848 degrees.
09:48:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42860087428005 and -65.41760260334848 degrees.
09:48:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:45 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:45 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.1981 (min) -0.191603 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0753191 (min) 0.0782643 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.530195 (min) -0.528429 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 8.37328 (min) 8.58289 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.69398 (min) -9.67393 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.39079e-06 (min) -3.17633e-06 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.086 (min) 298.678 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.033469, mean: 4.074310, max: 4.114628
09:48:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:45 DEBUG   opendrift.models.physics_methods:1061:    min: 10.941301, mean: 10.996539, max: 11.050829
09:48:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.941301, mean: 10.996539, max: 11.050829
09:48:45 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:45 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:45 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.256095 m/s - 0.258659 m/s)
09:48:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:45 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:45 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:45 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:45 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:45 INFO    opendrift.models.basemodel:2038: 2024-09-28 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
09:48:45 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:45 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:45 DEBUG   opendrift.models.basemodel:2057:               59.96527068763908 <- latitude  -> 59.971601958793414
09:48:45 DEBUG   opendrift.models.basemodel:2062:               4.569484813881404 <- longitude -> 4.581013722421065
09:48:45 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:45 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 13:00:00 (before)
                2024-09-28 14:00:00 (after)
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 13:00:00)
09:48:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 13:00:00) in space  (linearNDFast)
09:48:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:47 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.430526113098 and -65.41899720263115 degrees.
09:48:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.430526113098 and -65.41899720263115 degrees.
09:48:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:47 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:47 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:47 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:47 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.205962 (min) -0.20405 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.154013 (min) 0.156636 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.51312 (min) -0.511477 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.43688 (min) 6.59079 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.01909 (min) -8.93252 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.0406e-05 (min) 1.06267e-05 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.76 (min) 298.41 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:47 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.004433, mean: 3.028253, max: 3.053666
09:48:47 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:47 DEBUG   opendrift.models.physics_methods:1061:    min: 9.443018, mean: 9.480368, max: 9.520075
09:48:47 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.443018, mean: 9.480368, max: 9.520075
09:48:47 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:47 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:47 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:47 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.221026 m/s - 0.222830 m/s)
09:48:47 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:47 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:47 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:47 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:47 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:47 INFO    opendrift.models.basemodel:2038: 2024-09-28 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
09:48:47 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:47 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:47 DEBUG   opendrift.models.basemodel:2057:               59.96449442241466 <- latitude  -> 59.970803289000095
09:48:47 DEBUG   opendrift.models.basemodel:2062:               4.564609444771728 <- longitude -> 4.576240198910232
09:48:47 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:47 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:48:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 14:00:00 (before)
                2024-09-28 15:00:00 (after)
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-09-28 14:00:00)
09:48:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 14:00:00) in space  (linearNDFast)
09:48:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:47 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4354014778414 and -65.42377073035837 degrees.
09:48:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4354014778414 and -65.42377073035837 degrees.
09:48:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:47 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:47 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:47 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:47 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.183989 (min) -0.181141 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.23096 (min) 0.237291 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.465338 (min) -0.463517 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.72428 (min) 6.84099 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.24231 (min) -8.94099 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.67866e-05 (min) 1.68804e-05 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.593 (min) 298.264 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:47 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:47 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.114347, mean: 3.165859, max: 3.220025
09:48:47 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:47 DEBUG   opendrift.models.physics_methods:1061:    min: 9.614198, mean: 9.693347, max: 9.775956
09:48:47 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.614198, mean: 9.693347, max: 9.775956
09:48:47 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:47 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:47 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:47 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.225033 m/s - 0.228819 m/s)
09:48:47 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:47 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:47 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:47 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:47 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:47 INFO    opendrift.models.basemodel:2038: 2024-09-28 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
09:48:47 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:47 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:47 DEBUG   opendrift.models.basemodel:2057:               59.96629263731455 <- latitude  -> 59.972328163203215
09:48:47 DEBUG   opendrift.models.basemodel:2062:               4.561585228737827 <- longitude -> 4.573236588564224
09:48:47 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:47 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:47 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:47 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:48:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 15:00:00 (before)
                2024-09-28 16:00:00 (after)
09:48:48 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:48 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-09-28 15:00:00)
09:48:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 15:00:00) in space  (linearNDFast)
09:48:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:48 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43842569917958 and -65.42677433288067 degrees.
09:48:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43842569917958 and -65.42677433288067 degrees.
09:48:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:48 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:48 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:48 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:48 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:48 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.146099 (min) -0.138259 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.283293 (min) 0.291625 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.398722 (min) -0.396273 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.13445 (min) 5.19684 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.97037 (min) -9.92675 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.07432e-05 (min) 2.08606e-05 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.685 (min) 298.307 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:48 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:48 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.072614, mean: 3.090601, max: 3.109819
09:48:48 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:48 DEBUG   opendrift.models.physics_methods:1061:    min: 9.549565, mean: 9.577472, max: 9.607206
09:48:48 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.549565, mean: 9.577472, max: 9.607206
09:48:48 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:48 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:48 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:48 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:48 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.223520 m/s - 0.224869 m/s)
09:48:48 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:48 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:48 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:48 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:48 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:48 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:48 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:48 INFO    opendrift.models.basemodel:2038: 2024-09-28 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
09:48:48 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:48 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:48 DEBUG   opendrift.models.basemodel:2057:               59.96912218008731 <- latitude  -> 59.975141143349646
09:48:48 DEBUG   opendrift.models.basemodel:2062:               4.5588347427532 <- longitude -> 4.570939633278482
09:48:48 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:48 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:48 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:48 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:48:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 16:00:00 (before)
                2024-09-28 17:00:00 (after)
09:48:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 16:00:00)
09:48:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 16:00:00) in space  (linearNDFast)
09:48:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44117618456863 and -65.42907129678548 degrees.
09:48:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44117618456863 and -65.42907129678548 degrees.
09:48:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:49 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:49 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0899179 (min) -0.0743416 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.283216 (min) 0.296022 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.319995 (min) -0.316939 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.63927 (min) 7.89062 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -9.66448 (min) -9.55588 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.45515e-05 (min) 2.47932e-05 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.85 (min) 298.439 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:49 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.681961, mean: 3.756148, max: 3.829335
09:48:49 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:49 DEBUG   opendrift.models.physics_methods:1061:    min: 10.453679, mean: 10.558413, max: 10.660836
09:48:49 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.453679, mean: 10.558413, max: 10.660836
09:48:49 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:49 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:49 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:49 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244682 m/s - 0.249531 m/s)
09:48:49 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:49 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:49 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:49 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:49 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:49 INFO    opendrift.models.basemodel:2038: 2024-09-28 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
09:48:49 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:49 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:49 DEBUG   opendrift.models.basemodel:2057:               59.97226081082776 <- latitude  -> 59.978213546503724
09:48:49 DEBUG   opendrift.models.basemodel:2062:               4.563048568348199 <- longitude -> 4.576176101417797
09:48:49 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:49 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:48:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 17:00:00 (before)
                2024-09-28 18:00:00 (after)
09:48:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 17:00:00)
09:48:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 17:00:00) in space  (linearNDFast)
09:48:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43696235577583 and -65.42383483028924 degrees.
09:48:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43696235577583 and -65.42383483028924 degrees.
09:48:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0511324 (min) -0.0340519 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.235387 (min) 0.249732 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.213568 (min) -0.210538 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.61812 (min) 6.6562 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -8.38329 (min) -8.3195 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.59169e-05 (min) 3.60283e-05 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.177 (min) 298.727 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.780135, mean: 2.799838, max: 2.818780
09:48:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:50 DEBUG   opendrift.models.physics_methods:1061:    min: 9.083694, mean: 9.115820, max: 9.146610
09:48:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.083694, mean: 9.115820, max: 9.146610
09:48:50 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:50 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:50 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.212616 m/s - 0.214088 m/s)
09:48:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:50 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:50 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:50 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:50 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:50 INFO    opendrift.models.basemodel:2038: 2024-09-28 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
09:48:50 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:50 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:50 DEBUG   opendrift.models.basemodel:2057:               59.974726049486236 <- latitude  -> 59.98052361175303
09:48:50 DEBUG   opendrift.models.basemodel:2062:               4.568485334255289 <- longitude -> 4.582427680363172
09:48:50 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:50 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 18:00:00 (before)
                2024-09-28 19:00:00 (after)
09:48:51 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:51 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 18:00:00)
09:48:51 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 18:00:00) in space  (linearNDFast)
09:48:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:51 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43152560414417 and -65.4175832458651 degrees.
09:48:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43152560414417 and -65.4175832458651 degrees.
09:48:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:51 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:51 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:51 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:51 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:51 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0325415 (min) -0.0156809 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.176577 (min) 0.192798 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0987683 (min) -0.0954907 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 7.34135 (min) 7.68776 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -5.43887 (min) -5.30449 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.8605e-05 (min) 2.86868e-05 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.448 (min) 298.96 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:51 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:51 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.038238, mean: 2.097468, max: 2.152377
09:48:51 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:51 DEBUG   opendrift.models.physics_methods:1061:    min: 7.777804, mean: 7.889918, max: 7.992613
09:48:51 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.777804, mean: 7.889918, max: 7.992613
09:48:51 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:51 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:51 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:51 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:51 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.182050 m/s - 0.187078 m/s)
09:48:51 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:51 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:51 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:51 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:51 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:51 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:51 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:51 INFO    opendrift.models.basemodel:2038: 2024-09-28 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
09:48:51 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:51 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:51 DEBUG   opendrift.models.basemodel:2057:               59.97727655544682 <- latitude  -> 59.982936484822446
09:48:51 DEBUG   opendrift.models.basemodel:2062:               4.576104813516438 <- longitude -> 4.591327031290382
09:48:51 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:51 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:51 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:51 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:51 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:51 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:51 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:51 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 19:00:00 (before)
                2024-09-28 20:00:00 (after)
09:48:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 19:00:00)
09:48:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 19:00:00) in space  (linearNDFast)
09:48:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42390610028572 and -65.40868389020746 degrees.
09:48:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42390610028572 and -65.40868389020746 degrees.
09:48:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:52 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:52 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0342498 (min) -0.0221776 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0996349 (min) 0.109123 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0143904 (min) -0.0111621 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.91567 (min) 5.95664 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -7.51249 (min) -7.40743 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.37344e-05 (min) 1.38676e-05 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.756 (min) 299.231 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.216877, mean: 2.235530, max: 2.251213
09:48:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:52 DEBUG   opendrift.models.physics_methods:1061:    min: 8.111485, mean: 8.145532, max: 8.174062
09:48:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.111485, mean: 8.145532, max: 8.174062
09:48:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.189860 m/s - 0.191325 m/s)
09:48:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:52 INFO    opendrift.models.basemodel:2038: 2024-09-28 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
09:48:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:52 DEBUG   opendrift.models.basemodel:2057:               59.97587100773424 <- latitude  -> 59.98138129378874
09:48:52 DEBUG   opendrift.models.basemodel:2062:               4.581794087958005 <- longitude -> 4.597482264961407
09:48:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 20:00:00 (before)
                2024-09-28 21:00:00 (after)
09:48:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 20:00:00)
09:48:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 20:00:00) in space  (linearNDFast)
09:48:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41821683629406 and -65.40252866264177 degrees.
09:48:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41821683629406 and -65.40252866264177 degrees.
09:48:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:53 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:53 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0803633 (min) -0.0720667 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0381448 (min) 0.043203 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0203292 (min) -0.0186645 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.263961 (min) 1.39737 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -8.23874 (min) -7.77564 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.74302e-05 (min) -1.70256e-05 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.78 (min) 299.259 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:53 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.526171, mean: 1.603215, max: 1.676354
09:48:53 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:53 DEBUG   opendrift.models.physics_methods:1061:    min: 6.730251, mean: 6.897843, max: 7.053627
09:48:53 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.730251, mean: 6.897843, max: 7.053627
09:48:53 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:53 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:53 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:53 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.157530 m/s - 0.165099 m/s)
09:48:53 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:53 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:53 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:53 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:53 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:53 INFO    opendrift.models.basemodel:2038: 2024-09-28 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
09:48:53 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:53 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:53 DEBUG   opendrift.models.basemodel:2057:               59.971980411231144 <- latitude  -> 59.97757989285322
09:48:53 DEBUG   opendrift.models.basemodel:2062:               4.57868928826279 <- longitude -> 4.592947654789099
09:48:53 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:53 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:48:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 21:00:00 (before)
                2024-09-28 22:00:00 (after)
09:48:54 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:54 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 21:00:00)
09:48:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 21:00:00) in space  (linearNDFast)
09:48:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:54 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42132164211537 and -65.40706326296541 degrees.
09:48:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42132164211537 and -65.40706326296541 degrees.
09:48:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:54 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:54 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:54 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:54 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:54 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.101506 (min) -0.0887739 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.03189 (min) 0.0344246 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.126437 (min) -0.124779 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.83944 (min) 5.86232 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -6.16113 (min) -6.11316 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.12661e-05 (min) -4.11207e-05 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.474 (min) 298.977 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:54 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:54 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.758157, mean: 1.769954, max: 1.778531
09:48:54 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:54 DEBUG   opendrift.models.physics_methods:1061:    min: 7.223678, mean: 7.247869, max: 7.265413
09:48:54 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.223678, mean: 7.247869, max: 7.265413
09:48:54 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:54 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:54 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:54 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:54 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.169080 m/s - 0.170056 m/s)
09:48:54 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:54 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:54 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:54 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:54 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:54 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:54 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:54 INFO    opendrift.models.basemodel:2038: 2024-09-28 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
09:48:54 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:54 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:54 DEBUG   opendrift.models.basemodel:2057:               59.96905984460675 <- latitude  -> 59.974671715650025
09:48:54 DEBUG   opendrift.models.basemodel:2062:               4.579956795652315 <- longitude -> 4.594635962930643
09:48:54 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:54 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:54 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:54 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:54 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:54 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 22:00:00 (before)
                2024-09-28 23:00:00 (after)
09:48:56 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:56 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 22:00:00)
09:48:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 22:00:00) in space  (linearNDFast)
09:48:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:56 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42005413579096 and -65.40537496369194 degrees.
09:48:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42005413579096 and -65.40537496369194 degrees.
09:48:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:56 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:56 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:56 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:56 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:56 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.118821 (min) -0.103156 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0676055 (min) 0.0696179 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.299897 (min) -0.298314 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.58881 (min) 4.62457 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -5.16637 (min) -5.12476 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.0841e-05 (min) -5.07452e-05 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.303 (min) 298.85 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:56 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:56 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.164301, mean: 1.172523, max: 1.181496
09:48:56 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:56 DEBUG   opendrift.models.physics_methods:1061:    min: 5.878442, mean: 5.899156, max: 5.921690
09:48:56 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.878442, mean: 5.899156, max: 5.921690
09:48:56 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:56 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:56 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:56 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:56 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.137593 m/s - 0.138605 m/s)
09:48:56 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:56 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:56 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:56 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:56 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:56 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:56 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:56 INFO    opendrift.models.basemodel:2038: 2024-09-28 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
09:48:56 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:56 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:56 DEBUG   opendrift.models.basemodel:2057:               59.967979028844624 <- latitude  -> 59.97353872394871
09:48:56 DEBUG   opendrift.models.basemodel:2062:               4.5783789061550495 <- longitude -> 4.593939985885976
09:48:56 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:56 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:56 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:56 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:56 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-28 23:00:00 (before)
                2024-09-29 00:00:00 (after)
09:48:57 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:57 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-28 23:00:00)
09:48:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-28 23:00:00) in space  (linearNDFast)
09:48:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:57 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42163203185294 and -65.40607093617788 degrees.
09:48:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42163203185294 and -65.40607093617788 degrees.
09:48:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:57 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:57 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:57 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:57 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:57 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.14063 (min) -0.12248 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.10827 (min) 0.115224 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.470273 (min) -0.467715 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.82326 (min) 4.0687 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.86444 (min) -3.58575 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.04953e-05 (min) -4.03123e-05 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.182 (min) 298.762 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:57 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:57 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.716628, mean: 0.721841, max: 0.727866
09:48:57 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:57 DEBUG   opendrift.models.physics_methods:1061:    min: 4.611864, mean: 4.628602, max: 4.647884
09:48:57 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.611864, mean: 4.628602, max: 4.647884
09:48:57 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:57 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:57 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:57 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:57 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107947 m/s - 0.108790 m/s)
09:48:57 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:57 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:57 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:57 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:57 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:57 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:57 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:57 INFO    opendrift.models.basemodel:2038: 2024-09-29 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
09:48:57 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:57 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:57 DEBUG   opendrift.models.basemodel:2057:               59.96933119604688 <- latitude  -> 59.97464257189934
09:48:57 DEBUG   opendrift.models.basemodel:2062:               4.574697501347767 <- longitude -> 4.590973033261331
09:48:57 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:57 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:57 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:57 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 00:00:00 (before)
                2024-09-29 01:00:00 (after)
09:48:58 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:58 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 00:00:00)
09:48:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 00:00:00) in space  (linearNDFast)
09:48:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:58 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42531343167187 and -65.4090378898768 degrees.
09:48:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42531343167187 and -65.4090378898768 degrees.
09:48:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:58 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:58 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:58 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:58 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.15185 (min) -0.138146 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.144371 (min) 0.155431 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.577733 (min) -0.575107 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.70228 (min) 5.71095 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.9443 (min) -3.93283 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.73773e-07 (min) -2.51116e-07 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.201 (min) 298.767 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:58 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.181464, mean: 1.182145, max: 1.183901
09:48:58 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:58 DEBUG   opendrift.models.physics_methods:1061:    min: 5.921611, mean: 5.923317, max: 5.927715
09:48:58 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.921611, mean: 5.923317, max: 5.927715
09:48:58 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:58 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:58 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:58 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:58 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.138603 m/s - 0.138746 m/s)
09:48:58 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:58 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:58 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:58 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:58 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:58 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:58 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:58 INFO    opendrift.models.basemodel:2038: 2024-09-29 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
09:48:58 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:58 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:58 DEBUG   opendrift.models.basemodel:2057:               59.97177955687157 <- latitude  -> 59.97689033146479
09:48:58 DEBUG   opendrift.models.basemodel:2062:               4.572304973308065 <- longitude -> 4.589424550962569
09:48:58 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:58 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:58 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:58 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:58 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 01:00:00 (before)
                2024-09-29 02:00:00 (after)
09:48:59 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:59 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 01:00:00)
09:48:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 01:00:00) in space  (linearNDFast)
09:48:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:59 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42770594699407 and -65.41058638165786 degrees.
09:48:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42770594699407 and -65.41058638165786 degrees.
09:48:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:59 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:59 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:59 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:48:59 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:48:59 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.145018 (min) -0.133669 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.194763 (min) 0.20886 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.60493 (min) -0.602321 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.27186 (min) 5.34464 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -3.15838 (min) -3.13072 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.71284e-06 (min) -2.37072e-06 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.331 (min) 298.87 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:59 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:59 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.929091, mean: 0.935677, max: 0.943829
09:48:59 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:59 DEBUG   opendrift.models.physics_methods:1061:    min: 5.251203, mean: 5.269777, max: 5.292689
09:48:59 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.251203, mean: 5.269777, max: 5.292689
09:48:59 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:59 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:59 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:59 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:59 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.122911 m/s - 0.123882 m/s)
09:48:59 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:59 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:59 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:59 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:59 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:59 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:59 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:59 INFO    opendrift.models.basemodel:2038: 2024-09-29 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
09:48:59 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:59 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:59 DEBUG   opendrift.models.basemodel:2057:               59.976443884135485 <- latitude  -> 59.981314864805306
09:48:59 DEBUG   opendrift.models.basemodel:2062:               4.569886826281449 <- longitude -> 4.5875774437126156
09:48:59 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:59 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:59 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:59 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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', 'sea_surface_height']
09:48:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:48:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:48:59 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 02:00:00 (before)
                2024-09-29 03:00:00 (after)
09:49:01 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:01 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 02:00:00)
09:49:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 02:00:00) in space  (linearNDFast)
09:49:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:01 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43012410203504 and -65.41243347495887 degrees.
09:49:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43012410203504 and -65.41243347495887 degrees.
09:49:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:01 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:01 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:01 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:01 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:01 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.132131 (min) -0.121991 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.243389 (min) 0.257576 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.574677 (min) -0.572064 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 5.09831 (min) 5.11793 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.52769 (min) -2.4921 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.86769e-05 (min) 3.16939e-05 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.579 (min) 299.054 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:01 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:01 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.792288, mean: 0.797170, max: 0.801527
09:49:01 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:01 DEBUG   opendrift.models.physics_methods:1061:    min: 4.849211, mean: 4.864125, max: 4.877404
09:49:01 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.849211, mean: 4.864125, max: 4.877404
09:49:01 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:01 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:01 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:01 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.113502 m/s - 0.114162 m/s)
09:49:01 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:01 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:01 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:01 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:01 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:01 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:01 INFO    opendrift.models.basemodel:2038: 2024-09-29 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
09:49:01 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:01 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:01 DEBUG   opendrift.models.basemodel:2057:               59.983041571096706 <- latitude  -> 59.98774941665955
09:49:01 DEBUG   opendrift.models.basemodel:2062:               4.567990925802051 <- longitude -> 4.586277221772797
09:49:01 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:01 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:01 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:01 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 03:00:00 (before)
                2024-09-29 04:00:00 (after)
09:49:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 03:00:00)
09:49:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 03:00:00) in space  (linearNDFast)
09:49:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43201999999039 and -65.41373369991311 degrees.
09:49:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43201999999039 and -65.41373369991311 degrees.
09:49:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:02 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:02 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.124363 (min) -0.115139 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.294234 (min) 0.309442 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.509348 (min) -0.505177 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.67342 (min) 4.74872 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -2.37806 (min) -2.3312 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.94696e-05 (min) 1.99878e-05 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.916 (min) 299.324 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.676403, mean: 0.682504, max: 0.688707
09:49:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:02 DEBUG   opendrift.models.physics_methods:1061:    min: 4.480559, mean: 4.500716, max: 4.521129
09:49:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.480559, mean: 4.500716, max: 4.521129
09:49:02 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:02 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:02 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.104873 m/s - 0.105823 m/s)
09:49:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:02 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:02 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:02 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:02 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:02 INFO    opendrift.models.basemodel:2038: 2024-09-29 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
09:49:02 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:02 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:02 DEBUG   opendrift.models.basemodel:2057:               59.99132036302399 <- latitude  -> 59.995948932791904
09:49:02 DEBUG   opendrift.models.basemodel:2062:               4.566154726246462 <- longitude -> 4.5845945619417225
09:49:02 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:02 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 04:00:00 (before)
                2024-09-29 05:00:00 (after)
09:49:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 04:00:00)
09:49:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 04:00:00) in space  (linearNDFast)
09:49:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43385618579838 and -65.41541635772603 degrees.
09:49:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43385618579838 and -65.41541635772603 degrees.
09:49:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:03 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:03 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.119436 (min) -0.110928 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.335804 (min) 0.350491 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.426402 (min) -0.421719 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.5577 (min) 4.58145 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -0.336845 (min) -0.318262 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.63732e-05 (min) 2.6596e-05 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.261 (min) 299.588 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:03 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.513682, mean: 0.516557, max: 0.519059
09:49:03 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:03 DEBUG   opendrift.models.physics_methods:1061:    min: 3.904602, mean: 3.915514, max: 3.924985
09:49:03 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.904602, mean: 3.915514, max: 3.924985
09:49:03 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:03 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:03 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:03 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.091392 m/s - 0.091869 m/s)
09:49:03 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:03 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:03 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:03 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:03 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:03 INFO    opendrift.models.basemodel:2038: 2024-09-29 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
09:49:03 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:03 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:03 DEBUG   opendrift.models.basemodel:2057:               60.00213770939324 <- latitude  -> 60.006798011869385
09:49:03 DEBUG   opendrift.models.basemodel:2062:               4.564701271895821 <- longitude -> 4.582851807363816
09:49:03 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:03 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 05:00:00 (before)
                2024-09-29 06:00:00 (after)
09:49:04 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:04 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 05:00:00)
09:49:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 05:00:00) in space  (linearNDFast)
09:49:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:05 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.435309650832 and -65.41715910187796 degrees.
09:49:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.435309650832 and -65.41715910187796 degrees.
09:49:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:05 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:05 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:05 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:05 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:05 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.109283 (min) -0.101593 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.362596 (min) 0.371503 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.296006 (min) -0.291422 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.21426 (min) 4.27107 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 0.51177 (min) 0.559983 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.12944e-05 (min) 4.15156e-05 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.596 (min) 299.832 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:05 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:05 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.444460, mean: 0.448521, max: 0.455293
09:49:05 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:05 DEBUG   opendrift.models.physics_methods:1061:    min: 3.631999, mean: 3.648548, max: 3.675998
09:49:05 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.631999, mean: 3.648548, max: 3.675998
09:49:05 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:05 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:05 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:05 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.085012 m/s - 0.086042 m/s)
09:49:05 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:05 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:05 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:05 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:05 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:05 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:05 INFO    opendrift.models.basemodel:2038: 2024-09-29 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
09:49:05 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:05 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:05 DEBUG   opendrift.models.basemodel:2057:               60.01431257298013 <- latitude  -> 60.0189902838177
09:49:05 DEBUG   opendrift.models.basemodel:2062:               4.563533147735612 <- longitude -> 4.581325466885066
09:49:05 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:05 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:05 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:05 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 06:00:00 (before)
                2024-09-29 07:00:00 (after)
09:49:06 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:06 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 06:00:00)
09:49:06 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 06:00:00) in space  (linearNDFast)
09:49:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:06 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43647776807082 and -65.41868544516898 degrees.
09:49:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43647776807082 and -65.41868544516898 degrees.
09:49:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:06 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:06 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:06 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:06 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:06 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0725357 (min) -0.0670034 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.348557 (min) 0.35718 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.139826 (min) -0.136174 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.81832 (min) 3.84496 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.12783 (min) 1.1544 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.64421e-05 (min) 4.67153e-05 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.827 (min) 300.008 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:06 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:06 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.391425, mean: 0.393806, max: 0.394986
09:49:06 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:06 DEBUG   opendrift.models.physics_methods:1061:    min: 3.408427, mean: 3.418776, max: 3.423894
09:49:06 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.408427, mean: 3.418776, max: 3.423894
09:49:06 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:06 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:06 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:06 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:06 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.079779 m/s - 0.080141 m/s)
09:49:06 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:06 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:06 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:06 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:06 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:06 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:06 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:06 INFO    opendrift.models.basemodel:2038: 2024-09-29 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
09:49:06 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:06 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:06 DEBUG   opendrift.models.basemodel:2057:               60.02646628672039 <- latitude  -> 60.03114991515889
09:49:06 DEBUG   opendrift.models.basemodel:2062:               4.563988797681802 <- longitude -> 4.581735898807433
09:49:06 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:06 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:06 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:06 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:06 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 07:00:00 (before)
                2024-09-29 08:00:00 (after)
09:49:07 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:07 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 07:00:00)
09:49:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 07:00:00) in space  (linearNDFast)
09:49:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:07 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43602210843024 and -65.41827500754464 degrees.
09:49:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43602210843024 and -65.41827500754464 degrees.
09:49:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:07 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:07 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:07 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:07 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:07 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0256518 (min) -0.0197537 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.301193 (min) 0.314749 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.00113774 (min) 0.00379841 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.84421 (min) 2.88559 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.62439 (min) 1.64479 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.79503e-05 (min) 2.80864e-05 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.966 (min) 300.121 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:07 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:07 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.265419, mean: 0.267696, max: 0.269955
09:49:07 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:07 DEBUG   opendrift.models.physics_methods:1061:    min: 2.806696, mean: 2.818707, max: 2.830578
09:49:07 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.806696, mean: 2.818707, max: 2.830578
09:49:07 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:07 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:07 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:07 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:07 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.065694 m/s - 0.066253 m/s)
09:49:07 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:07 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:07 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:07 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:07 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:07 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:07 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:07 INFO    opendrift.models.basemodel:2038: 2024-09-29 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
09:49:07 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:07 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:07 DEBUG   opendrift.models.basemodel:2057:               60.03747363441802 <- latitude  -> 60.04219091869843
09:49:07 DEBUG   opendrift.models.basemodel:2062:               4.566301239555004 <- longitude -> 4.58387928614784
09:49:07 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:07 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:07 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:07 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:07 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 08:00:00 (before)
                2024-09-29 09:00:00 (after)
09:49:09 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:09 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 08:00:00)
09:49:09 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 08:00:00) in space  (linearNDFast)
09:49:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:09 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43370966233958 and -65.41613162176658 degrees.
09:49:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43370966233958 and -65.41613162176658 degrees.
09:49:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:09 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:09 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:09 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:09 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:09 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0128525 (min) 0.0190607 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.2442 (min) 0.261436 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0589483 (min) 0.0614255 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.12364 (min) 2.16462 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.52114 (min) 2.56433 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.46842e-06 (min) 3.55387e-06 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.057 (min) 300.211 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:09 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:09 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.270540, mean: 0.271917, max: 0.273288
09:49:09 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:09 DEBUG   opendrift.models.physics_methods:1061:    min: 2.833642, mean: 2.840843, max: 2.848001
09:49:09 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.833642, mean: 2.840843, max: 2.848001
09:49:09 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:09 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:09 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:09 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:09 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.066325 m/s - 0.066661 m/s)
09:49:09 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:09 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:09 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:09 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:09 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:09 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:09 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:09 INFO    opendrift.models.basemodel:2038: 2024-09-29 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
09:49:09 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:09 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:09 DEBUG   opendrift.models.basemodel:2057:               60.04733351845033 <- latitude  -> 60.05207421822767
09:49:09 DEBUG   opendrift.models.basemodel:2062:               4.570187215565518 <- longitude -> 4.5875513058504565
09:49:09 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:09 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:09 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:09 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:09 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:09 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 09:00:00 (before)
                2024-09-29 10:00:00 (after)
09:49:10 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:10 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:10 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:10 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 09:00:00)
09:49:10 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 09:00:00) in space  (linearNDFast)
09:49:10 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:10 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42982368922588 and -65.41245960436777 degrees.
09:49:10 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42982368922588 and -65.41245960436777 degrees.
09:49:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:10 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:10 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:10 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:10 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:10 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0195211 (min) 0.0314173 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.192239 (min) 0.20551 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.00138378 (min) 0.00442688 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.886828 (min) 0.906496 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.828 (min) 3.86804 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.17188e-05 (min) -3.16226e-05 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.141 (min) 300.292 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:10 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:10 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.380606, mean: 0.383807, max: 0.387650
09:49:10 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:10 DEBUG   opendrift.models.physics_methods:1061:    min: 3.360990, mean: 3.375093, max: 3.391952
09:49:10 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.360990, mean: 3.375093, max: 3.391952
09:49:10 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:10 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:10 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:10 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:10 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.078668 m/s - 0.079393 m/s)
09:49:10 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:10 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:10 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:10 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:10 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:10 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:10 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:10 INFO    opendrift.models.basemodel:2038: 2024-09-29 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
09:49:10 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:10 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:10 DEBUG   opendrift.models.basemodel:2057:               60.05617056548127 <- latitude  -> 60.06114853738711
09:49:10 DEBUG   opendrift.models.basemodel:2062:               4.573289195766681 <- longitude -> 4.590003328982432
09:49:10 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:10 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:10 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:10 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:10 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:10 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:10 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:10 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:10 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:10 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:10 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:10 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:10 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:10 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 10:00:00 (before)
                2024-09-29 11:00:00 (after)
09:49:11 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:11 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 10:00:00)
09:49:11 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 10:00:00) in space  (linearNDFast)
09:49:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:11 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42672170304262 and -65.41000756354259 degrees.
09:49:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42672170304262 and -65.41000756354259 degrees.
09:49:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:11 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:11 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:11 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:11 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:11 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0103415 (min) 0.0245467 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.163833 (min) 0.175725 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.156898 (min) -0.154187 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.78976 (min) 1.8001 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.96807 (min) 5.97568 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.16547e-05 (min) -5.15898e-05 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.205 (min) 300.334 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:11 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:11 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.955913, mean: 0.956570, max: 0.957665
09:49:11 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:11 DEBUG   opendrift.models.physics_methods:1061:    min: 5.326461, mean: 5.328291, max: 5.331340
09:49:11 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.326461, mean: 5.328291, max: 5.331340
09:49:11 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:11 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:11 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:11 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:11 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.124673 m/s - 0.124787 m/s)
09:49:11 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:11 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:11 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:11 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:11 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:11 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:11 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:11 INFO    opendrift.models.basemodel:2038: 2024-09-29 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
09:49:11 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:11 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:11 DEBUG   opendrift.models.basemodel:2057:               60.065347997801666 <- latitude  -> 60.0706688835732
09:49:11 DEBUG   opendrift.models.basemodel:2062:               4.577124448184065 <- longitude -> 4.593076163401605
09:49:11 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:11 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:11 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:11 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:11 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:11 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 11:00:00 (before)
                2024-09-29 12:00:00 (after)
09:49:12 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:12 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-29 11:00:00)
09:49:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 11:00:00) in space  (linearNDFast)
09:49:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:12 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42288644880114 and -65.4069347312654 degrees.
09:49:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42288644880114 and -65.4069347312654 degrees.
09:49:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:12 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:12 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:12 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:12 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0100311 (min) -0.000520345 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.163583 (min) 0.178484 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.341242 (min) -0.338867 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.352998 (min) -0.288355 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.12151 (min) 7.15895 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.86524e-05 (min) -4.86225e-05 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.249 (min) 300.338 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:12 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.249711, mean: 1.256229, max: 1.263831
09:49:12 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:12 DEBUG   opendrift.models.physics_methods:1061:    min: 6.090240, mean: 6.106098, max: 6.124547
09:49:12 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.090240, mean: 6.106098, max: 6.124547
09:49:12 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:12 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:12 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:12 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.142550 m/s - 0.143353 m/s)
09:49:12 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:12 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:12 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:12 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:12 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:12 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:12 INFO    opendrift.models.basemodel:2038: 2024-09-29 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
09:49:12 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:12 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:12 DEBUG   opendrift.models.basemodel:2057:               60.075336786153215 <- latitude  -> 60.08099281951034
09:49:12 DEBUG   opendrift.models.basemodel:2062:               4.576556957888152 <- longitude -> 4.592140040647102
09:49:12 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:12 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:12 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:12 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 12:00:00 (before)
                2024-09-29 13:00:00 (after)
09:49:13 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:13 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 12:00:00)
09:49:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 12:00:00) in space  (linearNDFast)
09:49:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:13 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42345392981734 and -65.40787084077674 degrees.
09:49:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42345392981734 and -65.40787084077674 degrees.
09:49:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:13 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:13 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:13 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:13 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:13 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0451617 (min) -0.0309571 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.18367 (min) 0.198285 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.481218 (min) -0.478177 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.39452 (min) -2.32995 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.67328 (min) 7.68114 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.82609e-05 (min) -2.81191e-05 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.204 (min) 300.269 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:13 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:13 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.582161, mean: 1.587522, max: 1.592448
09:49:13 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:13 DEBUG   opendrift.models.physics_methods:1061:    min: 6.852593, mean: 6.864192, max: 6.874833
09:49:13 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.852593, mean: 6.864192, max: 6.874833
09:49:13 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:13 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:13 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:13 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:13 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.160394 m/s - 0.160914 m/s)
09:49:13 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:13 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:13 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:13 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:13 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:13 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:13 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:13 INFO    opendrift.models.basemodel:2038: 2024-09-29 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
09:49:13 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:13 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:13 DEBUG   opendrift.models.basemodel:2057:               60.08634230861358 <- latitude  -> 60.09229344261945
09:49:13 DEBUG   opendrift.models.basemodel:2062:               4.571429997862649 <- longitude -> 4.586158161318043
09:49:13 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:13 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:13 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:13 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 13:00:00 (before)
                2024-09-29 14:00:00 (after)
09:49:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 13:00:00)
09:49:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 13:00:00) in space  (linearNDFast)
09:49:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42858089015091 and -65.4138527302491 degrees.
09:49:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42858089015091 and -65.4138527302491 degrees.
09:49:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:14 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:14 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0829015 (min) -0.0630649 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.265348 (min) 0.271459 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.540338 (min) -0.537105 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.85277 (min) -3.76729 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.29721 (min) 9.33196 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.77766e-06 (min) -4.65513e-06 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.048 (min) 300.135 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:14 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.487222, mean: 2.491897, max: 2.494481
09:49:14 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:14 DEBUG   opendrift.models.physics_methods:1061:    min: 8.591854, mean: 8.599924, max: 8.604382
09:49:14 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.591854, mean: 8.599924, max: 8.604382
09:49:14 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:14 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:14 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:14 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.201104 m/s - 0.201397 m/s)
09:49:14 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:14 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:14 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:14 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:14 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:14 INFO    opendrift.models.basemodel:2038: 2024-09-29 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
09:49:14 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:14 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:14 DEBUG   opendrift.models.basemodel:2057:               60.10098340039946 <- latitude  -> 60.10706150638304
09:49:14 DEBUG   opendrift.models.basemodel:2062:               4.562418056188616 <- longitude -> 4.57580722942491
09:49:14 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:14 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 14:00:00 (before)
                2024-09-29 15:00:00 (after)
09:49:16 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:16 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-29 14:00:00)
09:49:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 14:00:00) in space  (linearNDFast)
09:49:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:16 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43759281853397 and -65.42420365474457 degrees.
09:49:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43759281853397 and -65.42420365474457 degrees.
09:49:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:16 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:16 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:16 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:16 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:16 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0962022 (min) -0.0810007 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.365491 (min) 0.368531 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.532483 (min) -0.528601 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.8788 (min) -4.82639 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.85754 (min) 7.91673 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.3067e-06 (min) 9.38196e-06 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.812 (min) 299.917 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:16 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:16 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.100325, mean: 2.108948, max: 2.118749
09:49:16 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:16 DEBUG   opendrift.models.physics_methods:1061:    min: 7.895377, mean: 7.911564, max: 7.929929
09:49:16 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.895377, mean: 7.911564, max: 7.929929
09:49:16 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:16 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:16 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:16 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.184802 m/s - 0.185610 m/s)
09:49:16 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:16 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:16 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:16 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:16 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:16 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:16 INFO    opendrift.models.basemodel:2038: 2024-09-29 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
09:49:16 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:16 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:16 DEBUG   opendrift.models.basemodel:2057:               60.11791585134097 <- latitude  -> 60.124032970112026
09:49:16 DEBUG   opendrift.models.basemodel:2062:               4.550719443987416 <- longitude -> 4.5633453071003
09:49:16 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:16 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:16 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:16 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:16 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:16 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 15:00:00 (before)
                2024-09-29 16:00:00 (after)
09:49:17 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:17 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-29 15:00:00)
09:49:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 15:00:00) in space  (linearNDFast)
09:49:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:17 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44929144524112 and -65.43666557223469 degrees.
09:49:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44929144524112 and -65.43666557223469 degrees.
09:49:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:17 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:17 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:17 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:17 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:17 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0820609 (min) -0.0725955 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.460771 (min) 0.465023 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.480569 (min) -0.477263 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.36342 (min) -4.3263 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.67807 (min) 7.74608 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.86874e-05 (min) 1.87975e-05 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.613 (min) 299.72 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:17 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:17 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.916802, mean: 1.928128, max: 1.940499
09:49:17 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:17 DEBUG   opendrift.models.physics_methods:1061:    min: 7.542550, mean: 7.564797, max: 7.589031
09:49:17 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.542550, mean: 7.564797, max: 7.589031
09:49:17 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:17 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:17 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:17 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:17 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.176543 m/s - 0.177631 m/s)
09:49:17 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:17 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:17 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:17 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:17 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:17 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:17 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:17 INFO    opendrift.models.basemodel:2038: 2024-09-29 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
09:49:17 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:17 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:17 DEBUG   opendrift.models.basemodel:2057:               60.137931729836204 <- latitude  -> 60.14391086373058
09:49:17 DEBUG   opendrift.models.basemodel:2062:               4.540032035299568 <- longitude -> 4.552627075449706
09:49:17 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:17 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:17 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:17 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:17 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:17 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 16:00:00 (before)
                2024-09-29 17:00:00 (after)
09:49:18 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:18 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 16:00:00)
09:49:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 16:00:00) in space  (linearNDFast)
09:49:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:18 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45997882705065 and -65.44738379039023 degrees.
09:49:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45997882705065 and -65.44738379039023 degrees.
09:49:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:18 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:18 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:18 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:18 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:18 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0401637 (min) -0.0280409 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.526581 (min) 0.531492 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.395819 (min) -0.392747 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.61974 (min) -4.56284 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.60021 (min) 7.63668 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.81333e-05 (min) 2.82506e-05 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.56 (min) 299.631 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:18 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:18 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.933135, mean: 1.945317, max: 1.959660
09:49:18 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:18 DEBUG   opendrift.models.physics_methods:1061:    min: 7.574618, mean: 7.598441, max: 7.626406
09:49:18 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.574618, mean: 7.598441, max: 7.626406
09:49:18 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:18 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:18 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:18 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:18 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.177294 m/s - 0.178506 m/s)
09:49:18 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:18 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:18 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:18 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:18 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:18 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:18 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:18 INFO    opendrift.models.basemodel:2038: 2024-09-29 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
09:49:18 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:18 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:18 DEBUG   opendrift.models.basemodel:2057:               60.16002710316037 <- latitude  -> 60.16584677717945
09:49:18 DEBUG   opendrift.models.basemodel:2062:               4.531525283571322 <- longitude -> 4.5446564998470445
09:49:18 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:18 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:18 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:18 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:18 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 17:00:00 (before)
                2024-09-29 18:00:00 (after)
09:49:19 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:19 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 17:00:00)
09:49:19 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 17:00:00) in space  (linearNDFast)
09:49:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:19 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46848558217152 and -65.45535436290558 degrees.
09:49:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46848558217152 and -65.45535436290558 degrees.
09:49:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:19 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:19 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:19 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:19 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:19 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0193395 (min) 0.0279675 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.556029 (min) 0.56368 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.272456 (min) -0.26952 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.10171 (min) -5.02738 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.05763 (min) 8.11638 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.10325e-05 (min) 4.12049e-05 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.782 (min) 299.91 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:19 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:19 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.228454, mean: 2.246091, max: 2.255209
09:49:19 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:19 DEBUG   opendrift.models.physics_methods:1061:    min: 8.132638, mean: 8.164753, max: 8.181313
09:49:19 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.132638, mean: 8.164753, max: 8.181313
09:49:19 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:19 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:19 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:19 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:19 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.190355 m/s - 0.191494 m/s)
09:49:19 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:19 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:19 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:19 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:19 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:19 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:19 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:19 INFO    opendrift.models.basemodel:2038: 2024-09-29 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated)
09:49:19 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:19 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:19 DEBUG   opendrift.models.basemodel:2057:               60.1834056620748 <- latitude  -> 60.189061738263426
09:49:19 DEBUG   opendrift.models.basemodel:2062:               4.526259518114039 <- longitude -> 4.539848447731445
09:49:19 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:19 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:19 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:19 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:19 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:19 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:19 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:19 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 18:00:00 (before)
                2024-09-29 19:00:00 (after)
09:49:20 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:20 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 18:00:00)
09:49:20 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 18:00:00) in space  (linearNDFast)
09:49:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:20 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47375133972723 and -65.46016241593291 degrees.
09:49:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47375133972723 and -65.46016241593291 degrees.
09:49:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:20 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:20 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:20 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:20 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:20 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.113231 (min) 0.119882 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.522387 (min) 0.537005 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.116694 (min) -0.112657 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.21012 (min) 4.28338 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 6.17216 (min) 6.21761 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.61489e-05 (min) 4.62537e-05 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.382 (min) 300.574 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:20 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:20 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.386534, mean: 1.387612, max: 1.388909
09:49:20 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:20 DEBUG   opendrift.models.physics_methods:1061:    min: 6.414973, mean: 6.417466, max: 6.420464
09:49:20 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.414973, mean: 6.417466, max: 6.420464
09:49:20 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:20 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:20 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:20 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:20 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.150151 m/s - 0.150279 m/s)
09:49:20 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:20 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:20 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:20 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:20 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:20 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:20 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:20 INFO    opendrift.models.basemodel:2038: 2024-09-29 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated)
09:49:20 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:20 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:20 DEBUG   opendrift.models.basemodel:2057:               60.20445633463827 <- latitude  -> 60.21017633348576
09:49:20 DEBUG   opendrift.models.basemodel:2062:               4.539125965810866 <- longitude -> 4.553090535522562
09:49:20 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:20 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:20 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:20 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:20 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:20 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 19:00:00 (before)
                2024-09-29 20:00:00 (after)
09:49:22 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:22 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 19:00:00)
09:49:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 19:00:00) in space  (linearNDFast)
09:49:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:22 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46088487834544 and -65.44692030775931 degrees.
09:49:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46088487834544 and -65.44692030775931 degrees.
09:49:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:22 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:22 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:22 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:22 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:22 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.202688 (min) 0.20784 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.455796 (min) 0.468566 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0360352 (min) 0.0393917 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.79134 (min) 4.83956 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.53475 (min) 7.54911 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.50115e-05 (min) 3.52338e-05 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.945 (min) 301.232 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:22 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:22 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.963185, mean: 1.970141, max: 1.977394
09:49:22 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:22 DEBUG   opendrift.models.physics_methods:1061:    min: 7.633263, mean: 7.646772, max: 7.660836
09:49:22 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.633263, mean: 7.646772, max: 7.660836
09:49:22 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:22 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:22 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:22 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:22 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.178666 m/s - 0.179312 m/s)
09:49:22 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:22 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:22 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:22 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:22 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:22 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:22 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:22 INFO    opendrift.models.basemodel:2038: 2024-09-29 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated)
09:49:22 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:22 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:22 DEBUG   opendrift.models.basemodel:2057:               60.22420140767229 <- latitude  -> 60.22994234912731
09:49:22 DEBUG   opendrift.models.basemodel:2062:               4.55871110229692 <- longitude -> 4.572577974567473
09:49:22 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:22 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:22 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:22 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:22 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 20:00:00 (before)
                2024-09-29 21:00:00 (after)
09:49:23 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:23 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 20:00:00)
09:49:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 20:00:00) in space  (linearNDFast)
09:49:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:23 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44129974413558 and -65.42743286873942 degrees.
09:49:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44129974413558 and -65.42743286873942 degrees.
09:49:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:23 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:23 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:23 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:23 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:23 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.258558 (min) 0.27174 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.350903 (min) 0.353216 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.118552 (min) 0.121033 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.95635 (min) 3.98995 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.2355 (min) 7.29624 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.1499e-06 (min) 6.25922e-06 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.92 (min) 301.206 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:23 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:23 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.672928, mean: 1.686239, max: 1.701210
09:49:23 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:23 DEBUG   opendrift.models.physics_methods:1061:    min: 7.046415, mean: 7.074384, max: 7.105727
09:49:23 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.046415, mean: 7.074384, max: 7.105727
09:49:23 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:23 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:23 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:23 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.164931 m/s - 0.166319 m/s)
09:49:23 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:23 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:23 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:23 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:23 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:23 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:23 INFO    opendrift.models.basemodel:2038: 2024-09-29 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated)
09:49:23 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:23 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:23 DEBUG   opendrift.models.basemodel:2057:               60.2402426536672 <- latitude  -> 60.24599275628441
09:49:23 DEBUG   opendrift.models.basemodel:2062:               4.581401469133109 <- longitude -> 4.594728525774555
09:49:23 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:23 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:23 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:23 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 21:00:00 (before)
                2024-09-29 22:00:00 (after)
09:49:24 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:24 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 21:00:00)
09:49:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 21:00:00) in space  (linearNDFast)
09:49:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:24 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41860936022655 and -65.40528230932284 degrees.
09:49:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41860936022655 and -65.40528230932284 degrees.
09:49:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:24 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:24 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:24 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:24 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.273921 (min) 0.282781 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.243837 (min) 0.250884 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0773111 (min) 0.0793576 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.73079 (min) 2.76491 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.98569 (min) 8.00869 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.97281e-05 (min) -2.96386e-05 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.512 (min) 300.608 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:24 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.756792, mean: 1.758528, max: 1.761269
09:49:24 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:24 DEBUG   opendrift.models.physics_methods:1061:    min: 7.220873, mean: 7.224440, max: 7.230070
09:49:24 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.220873, mean: 7.224440, max: 7.230070
09:49:24 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:24 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:24 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:24 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:24 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.169014 m/s - 0.169229 m/s)
09:49:24 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:24 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:24 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:24 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:24 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:24 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:24 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:24 INFO    opendrift.models.basemodel:2038: 2024-09-29 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated)
09:49:24 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:24 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:24 DEBUG   opendrift.models.basemodel:2057:               60.25346830146698 <- latitude  -> 60.2590530007071
09:49:24 DEBUG   opendrift.models.basemodel:2062:               4.60331654234653 <- longitude -> 4.6162714603657395
09:49:24 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:24 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:24 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:24 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:24 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 22:00:00 (before)
                2024-09-29 23:00:00 (after)
09:49:25 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:25 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 22:00:00)
09:49:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 22:00:00) in space  (linearNDFast)
09:49:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:25 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39669429091708 and -65.3837393707058 degrees.
09:49:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39669429091708 and -65.3837393707058 degrees.
09:49:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:25 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:25 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:25 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:25 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:25 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.248365 (min) 0.256003 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.161845 (min) 0.166448 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0851607 (min) -0.0831728 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.76364 (min) 2.78982 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.13722 (min) 8.15204 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.88863e-05 (min) -5.8765e-05 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.61 (min) 301.053 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:25 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:25 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.817415, mean: 1.821226, max: 1.825337
09:49:25 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:25 DEBUG   opendrift.models.physics_methods:1061:    min: 7.344405, mean: 7.352101, max: 7.360395
09:49:25 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.344405, mean: 7.352101, max: 7.360395
09:49:25 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:25 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:25 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:25 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.171905 m/s - 0.172280 m/s)
09:49:25 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:25 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:25 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:25 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:25 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:25 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:25 INFO    opendrift.models.basemodel:2038: 2024-09-29 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
09:49:25 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:25 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:25 DEBUG   opendrift.models.basemodel:2057:               60.264067148383205 <- latitude  -> 60.269577303326884
09:49:25 DEBUG   opendrift.models.basemodel:2062:               4.623095591123329 <- longitude -> 4.636511105643156
09:49:25 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:25 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:25 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:25 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:25 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:25 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', 'sea_surface_height']
09:49:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:25 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-29 23:00:00 (before)
                2024-09-30 00:00:00 (after)
09:49:26 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:26 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-29 23:00:00)
09:49:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-29 23:00:00) in space  (linearNDFast)
09:49:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:26 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3769152298845 and -65.36349971082441 degrees.
09:49:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3769152298845 and -65.36349971082441 degrees.
09:49:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:26 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:26 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.192933 (min) 0.201896 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.118422 (min) 0.121729 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.312355 (min) -0.309471 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 3.37248 (min) 3.39227 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.90301 (min) 7.93174 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.27616e-05 (min) -6.25655e-05 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 302.126 (min) 303.45 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:26 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.818082, mean: 1.822436, max: 1.829927
09:49:26 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:26 DEBUG   opendrift.models.physics_methods:1061:    min: 7.345753, mean: 7.354543, max: 7.369645
09:49:26 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.345753, mean: 7.354543, max: 7.369645
09:49:26 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:26 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:26 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:26 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.171937 m/s - 0.172496 m/s)
09:49:26 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:26 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:26 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:26 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:26 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:26 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:26 INFO    opendrift.models.basemodel:2038: 2024-09-30 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
09:49:26 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:26 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:26 DEBUG   opendrift.models.basemodel:2057:               60.273035767506016 <- latitude  -> 60.27861504326509
09:49:26 DEBUG   opendrift.models.basemodel:2062:               4.640087736305714 <- longitude -> 4.653969482518651
09:49:26 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:26 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 00:00:00 (before)
                2024-09-30 01:00:00 (after)
09:49:27 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:27 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-30 00:00:00)
09:49:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 00:00:00) in space  (linearNDFast)
09:49:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:27 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35992309207677 and -65.34604133632622 degrees.
09:49:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35992309207677 and -65.34604133632622 degrees.
09:49:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:27 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:27 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:27 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:27 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:27 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.121856 (min) 0.13309 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.129333 (min) 0.134668 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.513747 (min) -0.510731 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.05713 (min) 1.06284 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.70694 (min) 7.74356 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.78913e-07 (min) 2.23163e-07 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 305.335 (min) 307.661 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:27 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:27 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.488908, mean: 1.495413, max: 1.502721
09:49:27 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:27 DEBUG   opendrift.models.physics_methods:1061:    min: 6.647578, mean: 6.662082, max: 6.678344
09:49:27 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.647578, mean: 6.662082, max: 6.678344
09:49:27 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:27 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:27 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:27 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:27 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.155595 m/s - 0.156315 m/s)
09:49:27 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:27 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:27 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:27 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:27 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:27 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:27 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:27 INFO    opendrift.models.basemodel:2038: 2024-09-30 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
09:49:27 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:27 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:27 DEBUG   opendrift.models.basemodel:2057:               60.2821947483119 <- latitude  -> 60.28795519946943
09:49:27 DEBUG   opendrift.models.basemodel:2062:               4.6494122712783215 <- longitude -> 4.663958070231992
09:49:27 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:27 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:27 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:27 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 01:00:00 (before)
                2024-09-30 02:00:00 (after)
09:49:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 01:00:00)
09:49:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 01:00:00) in space  (linearNDFast)
09:49:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35059855264456 and -65.33605274597836 degrees.
09:49:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35059855264456 and -65.33605274597836 degrees.
09:49:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:28 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:28 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.02177 (min) 0.0253619 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.183309 (min) 0.188191 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.63462 (min) -0.631254 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.68038 (min) -1.03648 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.54515 (min) 7.99139 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.05328e-05 (min) -2.03802e-05 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 309.18 (min) 312.435 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:28 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.426963, mean: 1.538018, max: 1.640476
09:49:28 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:28 DEBUG   opendrift.models.physics_methods:1061:    min: 6.507827, mean: 6.755897, max: 6.977736
09:49:28 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.507827, mean: 6.755897, max: 6.977736
09:49:28 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:28 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:28 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:28 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:28 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.152324 m/s - 0.163323 m/s)
09:49:28 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:28 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:28 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:28 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:28 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:28 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:28 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:28 INFO    opendrift.models.basemodel:2038: 2024-09-30 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
09:49:28 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:28 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:28 DEBUG   opendrift.models.basemodel:2057:               60.29318005973914 <- latitude  -> 60.299039324884426
09:49:28 DEBUG   opendrift.models.basemodel:2062:               4.649662872844744 <- longitude -> 4.663271127225475
09:49:28 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:28 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 02:00:00 (before)
                2024-09-30 03:00:00 (after)
09:49:29 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:29 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-30 02:00:00)
09:49:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 02:00:00) in space  (linearNDFast)
09:49:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:29 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35034793663463 and -65.33673968759146 degrees.
09:49:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.35034793663463 and -65.33673968759146 degrees.
09:49:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:29 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:29 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:29 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:29 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:29 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0469232 (min) -0.0390068 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.29732 (min) 0.300227 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.669999 (min) -0.665974 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.75309 (min) -1.72341 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 7.86145 (min) 7.99863 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.63734e-06 (min) 4.91336e-06 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.434 (min) 315.962 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:29 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:29 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.603936, mean: 1.678778, max: 1.758818
09:49:29 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:29 DEBUG   opendrift.models.physics_methods:1061:    min: 6.899586, mean: 7.058535, max: 7.225035
09:49:29 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 6.899586, mean: 7.058535, max: 7.225035
09:49:29 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:29 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:29 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:29 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:29 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.161494 m/s - 0.169111 m/s)
09:49:29 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:29 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:29 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:29 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:29 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:29 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:29 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:29 INFO    opendrift.models.basemodel:2038: 2024-09-30 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
09:49:29 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:29 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:29 DEBUG   opendrift.models.basemodel:2057:               60.30786811838439 <- latitude  -> 60.31390108471548
09:49:29 DEBUG   opendrift.models.basemodel:2062:               4.644798373640469 <- longitude -> 4.656774742856657
09:49:29 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:29 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:29 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:29 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:29 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:29 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 03:00:00 (before)
                2024-09-30 04:00:00 (after)
09:49:30 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:30 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:30 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:30 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 03:00:00)
09:49:30 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 03:00:00) in space  (linearNDFast)
09:49:30 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:30 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.355212434435 and -65.34323606807308 degrees.
09:49:30 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.355212434435 and -65.34323606807308 degrees.
09:49:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:30 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:30 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:30 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:30 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:30 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0580508 (min) -0.0453104 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.417013 (min) 0.424616 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.606826 (min) -0.603911 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.25779 (min) -3.08126 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.78591 (min) 9.81437 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.24966e-05 (min) 2.3062e-05 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 315.152 (min) 318.419 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:30 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:30 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.593433, mean: 2.610824, max: 2.625139
09:49:30 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:30 DEBUG   opendrift.models.physics_methods:1061:    min: 8.773383, mean: 8.802746, max: 8.826850
09:49:30 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.773383, mean: 8.802746, max: 8.826850
09:49:30 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:30 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:30 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:30 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:30 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205352 m/s - 0.206604 m/s)
09:49:30 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:30 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:30 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:30 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:30 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:30 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:30 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:30 INFO    opendrift.models.basemodel:2038: 2024-09-30 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
09:49:30 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:30 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:30 DEBUG   opendrift.models.basemodel:2057:               60.327892758669336 <- latitude  -> 60.33378922246921
09:49:30 DEBUG   opendrift.models.basemodel:2062:               4.63779976309905 <- longitude -> 4.648746665907281
09:49:30 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:30 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:30 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:30 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:30 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 04:00:00 (before)
                2024-09-30 05:00:00 (after)
09:49:31 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:31 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-30 04:00:00)
09:49:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 04:00:00) in space  (linearNDFast)
09:49:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:31 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3622110486562 and -65.35126415049311 degrees.
09:49:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.3622110486562 and -65.35126415049311 degrees.
09:49:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:32 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:32 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:32 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:32 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:32 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0586057 (min) -0.0515096 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.531669 (min) 0.537157 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.511901 (min) -0.50766 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.64859 (min) -3.58191 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.96569 (min) 10.0036 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.65581e-05 (min) 2.68333e-05 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 315.441 (min) 318.561 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:32 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:32 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.764914, mean: 2.774511, max: 2.783138
09:49:32 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:32 DEBUG   opendrift.models.physics_methods:1061:    min: 9.058795, mean: 9.074501, max: 9.088599
09:49:32 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.058795, mean: 9.074501, max: 9.088599
09:49:32 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:32 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:32 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:32 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:32 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.212033 m/s - 0.212731 m/s)
09:49:32 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:32 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:32 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:32 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:32 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:32 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:32 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:32 INFO    opendrift.models.basemodel:2038: 2024-09-30 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
09:49:32 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:32 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:32 DEBUG   opendrift.models.basemodel:2057:               60.351535124318005 <- latitude  -> 60.35758450252035
09:49:32 DEBUG   opendrift.models.basemodel:2062:               4.629481080982885 <- longitude -> 4.640449152336838
09:49:32 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:32 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:32 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:32 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:32 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:32 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 05:00:00 (before)
                2024-09-30 06:00:00 (after)
09:49:33 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:33 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 05:00:00)
09:49:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 05:00:00) in space  (linearNDFast)
09:49:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:33 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37052970837236 and -65.35956164037734 degrees.
09:49:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37052970837236 and -65.35956164037734 degrees.
09:49:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:33 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:33 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:33 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:33 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:33 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0717378 (min) -0.0634155 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.662771 (min) 0.670549 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.3822 (min) -0.378305 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.5383 (min) -4.4521 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.3236 (min) 10.4015 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.44223e-05 (min) 4.48487e-05 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 311.71 (min) 314.733 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:33 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:33 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.127841, mean: 3.138625, max: 3.149962
09:49:33 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:33 DEBUG   opendrift.models.physics_methods:1061:    min: 9.635005, mean: 9.651598, max: 9.669016
09:49:33 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.635005, mean: 9.651598, max: 9.669016
09:49:33 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:33 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:33 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:33 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:33 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.225520 m/s - 0.226316 m/s)
09:49:33 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:33 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:33 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:33 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:33 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:33 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:33 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:33 INFO    opendrift.models.basemodel:2038: 2024-09-30 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
09:49:33 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:33 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:33 DEBUG   opendrift.models.basemodel:2057:               60.37964144021684 <- latitude  -> 60.38592705915812
09:49:33 DEBUG   opendrift.models.basemodel:2062:               4.619098457924141 <- longitude -> 4.630309181042936
09:49:33 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:33 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 06:00:00 (before)
                2024-09-30 07:00:00 (after)
09:49:34 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:34 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-30 06:00:00)
09:49:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 06:00:00) in space  (linearNDFast)
09:49:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:34 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38091233268597 and -65.36970160307064 degrees.
09:49:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38091233268597 and -65.36970160307064 degrees.
09:49:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:34 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:34 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:34 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:34 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:34 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00809572 (min) 0.0157541 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.714078 (min) 0.720319 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.195363 (min) -0.192757 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.43329 (min) -4.29114 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.76116 (min) 9.87841 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.77601e-05 (min) 5.79085e-05 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.584 (min) 316.086 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:34 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:34 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.826454, mean: 2.840371, max: 2.854507
09:49:34 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:34 DEBUG   opendrift.models.physics_methods:1061:    min: 9.159052, mean: 9.181571, max: 9.204394
09:49:34 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.159052, mean: 9.181571, max: 9.204394
09:49:34 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:34 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:34 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:34 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.214380 m/s - 0.215441 m/s)
09:49:34 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:34 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:34 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:34 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:34 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:34 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:34 INFO    opendrift.models.basemodel:2038: 2024-09-30 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
09:49:34 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:34 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:34 DEBUG   opendrift.models.basemodel:2057:               60.40905693138223 <- latitude  -> 60.41553193605671
09:49:34 DEBUG   opendrift.models.basemodel:2062:               4.614496358963948 <- longitude -> 4.6250456202040775
09:49:34 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:34 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:34 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:34 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 07:00:00 (before)
                2024-09-30 08:00:00 (after)
09:49:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 07:00:00)
09:49:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 07:00:00) in space  (linearNDFast)
09:49:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38551441701497 and -65.37496515369459 degrees.
09:49:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38551441701497 and -65.37496515369459 degrees.
09:49:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:35 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:35 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.114285 (min) 0.121716 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.672283 (min) 0.673797 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0167129 (min) 0.0195067 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.73183 (min) -4.59512 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.3278 (min) 10.5319 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.24185e-05 (min) 5.26006e-05 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 327.884 (min) 332.63 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:35 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.173499, mean: 3.211914, max: 3.250605
09:49:35 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:35 DEBUG   opendrift.models.physics_methods:1061:    min: 9.705071, mean: 9.763617, max: 9.822266
09:49:35 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.705071, mean: 9.763617, max: 9.822266
09:49:35 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:35 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:35 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:35 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.227160 m/s - 0.229903 m/s)
09:49:35 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:35 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:35 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:35 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:35 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:35 INFO    opendrift.models.basemodel:2038: 2024-09-30 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
09:49:35 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:35 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:35 DEBUG   opendrift.models.basemodel:2057:               60.437498029136144 <- latitude  -> 60.44403055857114
09:49:35 DEBUG   opendrift.models.basemodel:2062:               4.616345848903025 <- longitude -> 4.626359936199488
09:49:35 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:35 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 08:00:00 (before)
                2024-09-30 09:00:00 (after)
09:49:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 08:00:00)
09:49:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 08:00:00) in space  (linearNDFast)
09:49:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38366491154024 and -65.37365083280615 degrees.
09:49:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38366491154024 and -65.37365083280615 degrees.
09:49:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:36 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:36 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.162663 (min) 0.171734 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.570554 (min) 0.571511 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.158113 (min) 0.160691 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.96746 (min) -4.88921 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.90116 (min) 9.04745 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.21754e-05 (min) 2.23821e-05 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 340.114 (min) 342.929 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:36 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.554377, mean: 2.575423, max: 2.601849
09:49:36 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:36 DEBUG   opendrift.models.physics_methods:1061:    min: 8.707071, mean: 8.742858, max: 8.787608
09:49:36 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.707071, mean: 8.742858, max: 8.787608
09:49:36 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:36 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:36 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:36 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.203800 m/s - 0.205685 m/s)
09:49:36 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:36 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:36 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:36 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:36 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:36 INFO    opendrift.models.basemodel:2038: 2024-09-30 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
09:49:36 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:36 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:36 DEBUG   opendrift.models.basemodel:2057:               60.461720647078764 <- latitude  -> 60.46827793067547
09:49:36 DEBUG   opendrift.models.basemodel:2062:               4.6207630390588905 <- longitude -> 4.630979043480503
09:49:36 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:36 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 09:00:00 (before)
                2024-09-30 10:00:00 (after)
09:49:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 09:00:00)
09:49:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 09:00:00) in space  (linearNDFast)
09:49:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37924772754636 and -65.3690317183359 degrees.
09:49:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37924772754636 and -65.3690317183359 degrees.
09:49:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:37 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:37 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.159974 (min) 0.169625 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.475814 (min) 0.486187 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.172346 (min) 0.174889 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.21092 (min) -4.18446 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.4662 (min) 11.6117 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.4684e-05 (min) -1.46496e-05 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 341.858 (min) 342.824 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:37 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.670461, mean: 3.706561, max: 3.747667
09:49:37 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:37 DEBUG   opendrift.models.physics_methods:1061:    min: 10.437341, mean: 10.488529, max: 10.546542
09:49:37 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.437341, mean: 10.488529, max: 10.546542
09:49:37 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:37 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:37 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:37 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244300 m/s - 0.246856 m/s)
09:49:37 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:37 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:37 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:37 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:37 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:37 INFO    opendrift.models.basemodel:2038: 2024-09-30 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
09:49:37 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:37 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:37 DEBUG   opendrift.models.basemodel:2057:               60.48457055647492 <- latitude  -> 60.49139645775006
09:49:37 DEBUG   opendrift.models.basemodel:2062:               4.62591269915692 <- longitude -> 4.636469380361917
09:49:37 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:37 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 10:00:00 (before)
                2024-09-30 11:00:00 (after)
09:49:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 10:00:00)
09:49:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 10:00:00) in space  (linearNDFast)
09:49:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37409805304506 and -65.36354137617734 degrees.
09:49:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37409805304506 and -65.36354137617734 degrees.
09:49:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:38 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:38 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.10664 (min) 0.112411 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.395191 (min) 0.427466 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0484123 (min) 0.0523583 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.85999 (min) -3.79782 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.4137 (min) 10.4639 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.13153e-05 (min) -5.08849e-05 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 336.637 (min) 338.368 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:38 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.028653, mean: 3.042017, max: 3.052885
09:49:38 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:38 DEBUG   opendrift.models.physics_methods:1061:    min: 9.481004, mean: 9.501897, max: 9.518857
09:49:38 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.481004, mean: 9.501897, max: 9.518857
09:49:38 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:38 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:38 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:38 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.221915 m/s - 0.222801 m/s)
09:49:38 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:38 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:38 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:38 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:38 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:38 INFO    opendrift.models.basemodel:2038: 2024-09-30 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
09:49:38 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:38 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:38 DEBUG   opendrift.models.basemodel:2057:               60.50410174568696 <- latitude  -> 60.511939361484934
09:49:38 DEBUG   opendrift.models.basemodel:2062:               4.628049681761725 <- longitude -> 4.6385840003868015
09:49:38 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:38 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 11:00:00 (before)
                2024-09-30 12:00:00 (after)
09:49:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:40 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-30 11:00:00)
09:49:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 11:00:00) in space  (linearNDFast)
09:49:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37196106093356 and -65.36142674025513 degrees.
09:49:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37196106093356 and -65.36142674025513 degrees.
09:49:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:40 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:40 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0580175 (min) 0.0688854 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.402165 (min) 0.438352 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.177129 (min) -0.173647 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.27408 (min) -4.26162 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.72642 (min) 8.89953 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.40022e-05 (min) -6.37067e-05 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 331.649 (min) 333.737 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:40 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.320169, mean: 2.357086, max: 2.397040
09:49:40 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:40 DEBUG   opendrift.models.physics_methods:1061:    min: 8.298305, mean: 8.364034, max: 8.434653
09:49:40 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.298305, mean: 8.364034, max: 8.434653
09:49:40 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:40 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:40 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:40 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.194233 m/s - 0.197424 m/s)
09:49:40 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:40 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:40 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:40 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:40 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:40 INFO    opendrift.models.basemodel:2038: 2024-09-30 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
09:49:40 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:40 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:40 DEBUG   opendrift.models.basemodel:2057:               60.522746975764065 <- latitude  -> 60.53183677379879
09:49:40 DEBUG   opendrift.models.basemodel:2062:               4.626960712772958 <- longitude -> 4.636798602538328
09:49:40 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:40 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 12:00:00 (before)
                2024-09-30 13:00:00 (after)
09:49:41 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:41 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:41 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 12:00:00)
09:49:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 12:00:00) in space  (linearNDFast)
09:49:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:41 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37305001841696 and -65.36321213712347 degrees.
09:49:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37305001841696 and -65.36321213712347 degrees.
09:49:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:41 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:41 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:41 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:41 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:41 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0091391 (min) 0.0177448 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.407087 (min) 0.431329 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.398294 (min) -0.39485 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.95092 (min) -4.89761 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.85269 (min) 9.11 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.54447e-05 (min) -5.52845e-05 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 329.569 (min) 332.012 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:41 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:41 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.521456, mean: 2.581083, max: 2.644288
09:49:41 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:41 DEBUG   opendrift.models.physics_methods:1061:    min: 8.650781, mean: 8.752393, max: 8.858984
09:49:41 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.650781, mean: 8.752393, max: 8.858984
09:49:41 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:41 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:41 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:41 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.202483 m/s - 0.207356 m/s)
09:49:41 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:41 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:41 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:41 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:41 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:41 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:41 INFO    opendrift.models.basemodel:2038: 2024-09-30 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
09:49:41 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:41 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:41 DEBUG   opendrift.models.basemodel:2057:               60.54179329871497 <- latitude  -> 60.55149942974475
09:49:41 DEBUG   opendrift.models.basemodel:2062:               4.621620614571202 <- longitude -> 4.630913296066862
09:49:41 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:41 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 13:00:00 (before)
                2024-09-30 14:00:00 (after)
09:49:42 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:42 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:42 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 13:00:00)
09:49:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 13:00:00) in space  (linearNDFast)
09:49:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:42 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37839011061072 and -65.36909743229153 degrees.
09:49:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.37839011061072 and -65.36909743229153 degrees.
09:49:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:42 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:42 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:42 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:42 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:42 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0422862 (min) -0.0320042 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.480263 (min) 0.488435 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.561406 (min) -0.557664 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.36862 (min) -4.19627 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.6411 (min) 10.7416 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.13855e-05 (min) -3.1275e-05 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 331.105 (min) 333.972 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:42 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:42 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.239329, mean: 3.263526, max: 3.288466
09:49:42 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:42 DEBUG   opendrift.models.physics_methods:1061:    min: 9.805214, mean: 9.841762, max: 9.879303
09:49:42 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.805214, mean: 9.841762, max: 9.879303
09:49:42 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:42 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:42 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:42 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.229504 m/s - 0.231238 m/s)
09:49:42 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:42 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:42 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:42 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:42 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:42 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:42 INFO    opendrift.models.basemodel:2038: 2024-09-30 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
09:49:42 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:42 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:42 DEBUG   opendrift.models.basemodel:2057:               60.56424679426149 <- latitude  -> 60.57410487475833
09:49:42 DEBUG   opendrift.models.basemodel:2062:               4.613160995400334 <- longitude -> 4.623221306250644
09:49:42 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:42 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:42 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:42 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 14:00:00 (before)
                2024-09-30 15:00:00 (after)
09:49:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:43 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 14:00:00)
09:49:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 14:00:00) in space  (linearNDFast)
09:49:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38684973566585 and -65.3767894265493 degrees.
09:49:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.38684973566585 and -65.3767894265493 degrees.
09:49:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.106885 (min) -0.0803116 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.473371 (min) 0.497981 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.626351 (min) -0.622684 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.26098 (min) -4.2093 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.50876 (min) 5.65987 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.07595e-05 (min) -1.03141e-05 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 332.566 (min) 336.206 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:43 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.189950, mean: 1.208528, max: 1.228498
09:49:43 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:43 DEBUG   opendrift.models.physics_methods:1061:    min: 5.942839, mean: 5.989029, max: 6.038330
09:49:43 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.942839, mean: 5.989029, max: 6.038330
09:49:43 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:43 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:43 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:43 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:43 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.139100 m/s - 0.141335 m/s)
09:49:43 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:43 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:43 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:43 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:43 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:43 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:43 INFO    opendrift.models.basemodel:2038: 2024-09-30 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
09:49:43 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:43 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:43 DEBUG   opendrift.models.basemodel:2057:               60.58389584723487 <- latitude  -> 60.59305505939907
09:49:43 DEBUG   opendrift.models.basemodel:2062:               4.600582277915967 <- longitude -> 4.612378111962954
09:49:43 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:43 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 15:00:00 (before)
                2024-09-30 16:00:00 (after)
09:49:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:44 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 15:00:00)
09:49:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 15:00:00) in space  (linearNDFast)
09:49:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39942844970133 and -65.38763260561042 degrees.
09:49:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.39942844970133 and -65.38763260561042 degrees.
09:49:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.202052 (min) -0.16972 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.535855 (min) 0.551437 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.615782 (min) -0.609723 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.73961 (min) -2.69141 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.44039 (min) 9.67467 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.46691e-05 (min) 1.48471e-05 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 335.718 (min) 340.751 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:44 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.376890, mean: 2.429400, max: 2.480736
09:49:44 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:44 DEBUG   opendrift.models.physics_methods:1061:    min: 8.399126, mean: 8.491351, max: 8.580644
09:49:44 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.399126, mean: 8.491351, max: 8.580644
09:49:44 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:44 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:44 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:44 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.196593 m/s - 0.200841 m/s)
09:49:44 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:44 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:44 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:44 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:44 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:44 INFO    opendrift.models.basemodel:2038: 2024-09-30 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
09:49:44 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:44 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:44 DEBUG   opendrift.models.basemodel:2057:               60.607963669475865 <- latitude  -> 60.61647199443421
09:49:44 DEBUG   opendrift.models.basemodel:2062:               4.583766686823787 <- longitude -> 4.597619901793175
09:49:44 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:44 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 16:00:00 (before)
                2024-09-30 17:00:00 (after)
09:49:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:45 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x24x2) for time before (2024-09-30 16:00:00)
09:49:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 16:00:00) in space  (linearNDFast)
09:49:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41624403289626 and -65.40239080504789 degrees.
09:49:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.41624403289626 and -65.40239080504789 degrees.
09:49:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:45 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:45 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.211506 (min) -0.205992 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.600016 (min) 0.628339 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.535229 (min) -0.531067 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.80025 (min) -1.78061 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 9.54617 (min) 9.57583 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.27319e-05 (min) 3.32462e-05 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 343.557 (min) 350.093 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.319843, mean: 2.326843, max: 2.335349
09:49:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:45 DEBUG   opendrift.models.physics_methods:1061:    min: 8.297721, mean: 8.310229, max: 8.325407
09:49:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.297721, mean: 8.310229, max: 8.325407
09:49:45 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:45 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:45 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.194219 m/s - 0.194867 m/s)
09:49:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:45 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:45 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:45 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:45 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:45 INFO    opendrift.models.basemodel:2038: 2024-09-30 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
09:49:45 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:45 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:45 DEBUG   opendrift.models.basemodel:2057:               60.63443280777605 <- latitude  -> 60.642044940332354
09:49:45 DEBUG   opendrift.models.basemodel:2062:               4.5676517872010605 <- longitude -> 4.5815906829737285
09:49:45 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:45 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 17:00:00 (before)
                2024-09-30 18:00:00 (after)
09:49:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:46 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 17:00:00)
09:49:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 17:00:00) in space  (linearNDFast)
09:49:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43235891585935 and -65.41842001831789 degrees.
09:49:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43235891585935 and -65.41842001831789 degrees.
09:49:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:46 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:46 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.178616 (min) -0.161198 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.633113 (min) 0.652985 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.384727 (min) -0.380721 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.03439 (min) -1.02201 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.19712 (min) 8.30957 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.96865e-05 (min) 5.00797e-05 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 353.061 (min) 358.424 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.678723, mean: 1.701009, max: 1.724920
09:49:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:46 DEBUG   opendrift.models.physics_methods:1061:    min: 7.058608, mean: 7.105290, max: 7.155072
09:49:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.058608, mean: 7.105290, max: 7.155072
09:49:46 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:46 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:46 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:46 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.165216 m/s - 0.167474 m/s)
09:49:46 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:46 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:46 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:46 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:46 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:46 INFO    opendrift.models.basemodel:2038: 2024-09-30 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
09:49:46 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:46 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:46 DEBUG   opendrift.models.basemodel:2057:               60.66083163782922 <- latitude  -> 60.667874275262434
09:49:46 DEBUG   opendrift.models.basemodel:2062:               4.554530389044767 <- longitude -> 4.569631907860497
09:49:46 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:46 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 18:00:00 (before)
                2024-09-30 19:00:00 (after)
09:49:47 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:47 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-09-30 18:00:00)
09:49:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 18:00:00) in space  (linearNDFast)
09:49:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:47 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44548031404015 and -65.43037878885852 degrees.
09:49:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.44548031404015 and -65.43037878885852 degrees.
09:49:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:47 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:47 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:47 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:47 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.172899 (min) -0.148802 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.618564 (min) 0.627709 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.18529 (min) -0.181117 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.797 (min) -2.53038 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.61867 (min) 5.08396 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.1274e-05 (min) 6.13853e-05 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 354.508 (min) 359.826 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:47 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.717221, mean: 0.752631, max: 0.793336
09:49:47 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:47 DEBUG   opendrift.models.physics_methods:1061:    min: 4.613772, mean: 4.726144, max: 4.852417
09:49:47 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.613772, mean: 4.726144, max: 4.852417
09:49:47 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:47 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:47 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:47 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.107991 m/s - 0.113577 m/s)
09:49:47 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:47 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:47 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:47 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:47 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:47 INFO    opendrift.models.basemodel:2038: 2024-09-30 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
09:49:47 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:47 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:47 DEBUG   opendrift.models.basemodel:2057:               60.684164319098066 <- latitude  -> 60.69109885167312
09:49:47 DEBUG   opendrift.models.basemodel:2062:               4.53979214311178 <- longitude -> 4.556143833037818
09:49:47 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:47 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:47 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:47 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:49:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 19:00:00 (before)
                2024-09-30 20:00:00 (after)
09:49:48 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:48 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:48 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-09-30 19:00:00)
09:49:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 19:00:00) in space  (linearNDFast)
09:49:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:48 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4602185537695 and -65.44386686106083 degrees.
09:49:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4602185537695 and -65.44386686106083 degrees.
09:49:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:48 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:48 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:48 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:48 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:48 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.156247 (min) -0.150946 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.534548 (min) 0.555169 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0361681 (min) 0.0393545 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.36129 (min) -4.33773 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.06525 (min) 3.1514 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.68358e-05 (min) 5.75037e-05 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 350.56 (min) 356.693 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:48 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:48 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.698330, mean: 0.703231, max: 0.707320
09:49:48 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:48 DEBUG   opendrift.models.physics_methods:1061:    min: 4.552605, mean: 4.568552, max: 4.581816
09:49:48 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.552605, mean: 4.568552, max: 4.581816
09:49:48 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:48 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:48 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:48 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:48 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.106560 m/s - 0.107243 m/s)
09:49:48 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:48 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:48 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:48 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:48 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:48 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:48 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:48 INFO    opendrift.models.basemodel:2038: 2024-09-30 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
09:49:48 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:48 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:48 DEBUG   opendrift.models.basemodel:2057:               60.704083046668 <- latitude  -> 60.71040473581978
09:49:48 DEBUG   opendrift.models.basemodel:2062:               4.523780636229309 <- longitude -> 4.54044769383871
09:49:48 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:48 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:48 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:48 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:49:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 20:00:00 (before)
                2024-09-30 21:00:00 (after)
09:49:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:49 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-09-30 20:00:00)
09:49:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 20:00:00) in space  (linearNDFast)
09:49:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47623005626176 and -65.45956299415037 degrees.
09:49:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47623005626176 and -65.45956299415037 degrees.
09:49:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:49 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:49 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.146291 (min) -0.133384 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.405807 (min) 0.425527 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.201817 (min) 0.204436 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.26289 (min) -4.21989 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.68163 (min) 2.87944 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.82477e-05 (min) 2.87114e-05 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 348.733 (min) 355.483 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:49 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.614965, mean: 0.631381, max: 0.650998
09:49:49 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:49 DEBUG   opendrift.models.physics_methods:1061:    min: 4.272233, mean: 4.328829, max: 4.395613
09:49:49 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.272233, mean: 4.328829, max: 4.395613
09:49:49 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:49 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:49 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:49 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.099997 m/s - 0.102885 m/s)
09:49:49 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:49 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:49 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:49 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:49 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:49 INFO    opendrift.models.basemodel:2038: 2024-09-30 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
09:49:49 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:49 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:49 DEBUG   opendrift.models.basemodel:2057:               60.71956401702609 <- latitude  -> 60.72538229162373
09:49:49 DEBUG   opendrift.models.basemodel:2062:               4.508508286493877 <- longitude -> 4.526084327709152
09:49:49 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:49 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:49:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 21:00:00 (before)
                2024-09-30 22:00:00 (after)
09:49:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:50 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-30 21:00:00)
09:49:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 21:00:00) in space  (linearNDFast)
09:49:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49150239511258 and -65.47392635946375 degrees.
09:49:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49150239511258 and -65.47392635946375 degrees.
09:49:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.171544 (min) -0.156321 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.334338 (min) 0.346634 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.226616 (min) 0.230085 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.94256 (min) -3.90236 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.31393 (min) 2.45373 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.58389e-05 (min) -1.56865e-05 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 349.97 (min) 357.299 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.506334, mean: 0.518229, max: 0.530489
09:49:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:50 DEBUG   opendrift.models.physics_methods:1061:    min: 3.876573, mean: 3.921816, max: 3.967965
09:49:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.876573, mean: 3.921816, max: 3.967965
09:49:50 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:50 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:50 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.090736 m/s - 0.092875 m/s)
09:49:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:50 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:50 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:50 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:49:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:50 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:49:50 INFO    opendrift.models.basemodel:2038: 2024-09-30 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
09:49:50 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:49:50 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:49:50 DEBUG   opendrift.models.basemodel:2057:               60.732213387234 <- latitude  -> 60.73780942090235
09:49:50 DEBUG   opendrift.models.basemodel:2062:               4.4919865407359865 <- longitude -> 4.510617982927627
09:49:50 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:49:50 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:49:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49: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', 'sea_surface_height']
09:49:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:49:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:49:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-09-30 22:00:00 (before)
                2024-09-30 23:00:00 (after)
09:49:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:49:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:49:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:49:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:49:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:49:52 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['upward_sea_water_velocity', 'x_sea_water_velocity', 'y_sea_water_velocity']
09:49:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-09-30 22:00:00)
09:49:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-09-30 22:00:00) in space  (linearNDFast)
09:49:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:49:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:49:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50802414024777 and -65.48939269447402 degrees.
09:49:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50802414024777 and -65.48939269447402 degrees.
09:49:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:52 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:49:52 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:49:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.189269 (min) -0.181901 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.304654 (min) 0.319012 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0950253 (min) 0.0978042 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.2862 (min) -4.27703 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.68494 (min) 2.74004 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.45907e-05 (min) -5.44045e-05 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 353.683 (min) 360.103 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.628830, mean: 0.631963, max: 0.634990
09:49:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:49:52 DEBUG   opendrift.models.physics_methods:1061:    min: 4.320125, mean: 4.330872, max: 4.341231
09:49:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.320125, mean: 4.330872, max: 4.341231
09:49:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:49:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:49:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.101118 m/s - 0.101612 m/s)
09:49:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:49:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:49:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:49:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:49:52 DEBUG   opendrift.models.basemodel:2153: Cleaning up
09:49:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:49:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:49:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:49:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:49:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:49:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:49:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:49:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:49:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:49:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:49:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:49:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:49:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:49:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:49:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:49:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:49:52 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Run to Mode.Result
09:49:52 DEBUG   opendrift.models.basemodel:2365: Setting up map: corners=None, fast=False, lscale=None
09:49:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
/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)
09:50:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:15 DEBUG   opendrift.models.basemodel:3044: Saving animation..
09:50:15 INFO    opendrift.models.basemodel:4608: Saving animation to /root/project/docs/source/gallery/animations/example_manual_aggregate_0.gif...
09:50:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:17 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:18 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:22 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:24 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:27 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:30 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:31 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:33 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:37 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:40 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:46 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:49 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:55 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:50:58 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:01 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:04 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:06 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:08 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:10 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:11 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:13 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:18 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:22 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:24 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:29 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:31 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:35 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:46 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:49 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:50 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:53 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:55 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:56 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:58 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:51:59 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:01 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:02 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:04 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:05 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:09 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:11 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:13 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:14 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:17 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:20 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:22 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:23 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:27 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:30 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:31 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:33 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:35 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:36 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:39 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:42 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:45 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:46 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:48 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:50 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:52 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:54 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:56 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:57 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:52:59 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:00 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:02 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:03 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:04 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:06 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:07 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:09 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:10 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:12 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:13 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:15 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:16 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:18 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:19 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:21 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:23 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:25 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:26 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:28 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:29 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:31 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:32 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:34 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:35 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:37 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:38 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:40 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:41 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:43 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:44 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:46 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:47 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:49 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:50 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:51 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:53 DEBUG   opendrift.readers.reader_global_landmask:83: Adding GSHHG shapes from cartopy, scale: h, extent: (4.073851680755615, 5.063958072662354, 59.76449279785155, 60.949450683593746)..
09:53:55 DEBUG   opendrift.models.basemodel:4646: MPLBACKEND = agg
09:53:55 DEBUG   opendrift.models.basemodel:4647: DISPLAY = None
09:53:55 DEBUG   opendrift.models.basemodel:4648: Time to save animation: 0:03:39.983934
09:53:55 INFO    opendrift.models.basemodel:3037: Time to make animation: 0:04:03.525478
../_images/example_manual_aggregate_0.gif

Total running time of the script: (20 minutes 37.847 seconds)

Gallery generated by Sphinx-Gallery