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-10-18 00:00:00   end: 2024-10-20 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:39:08 DEBUG   opendrift.config:168: Adding 18 config items from __init__
09:39:08 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
09:39:08 DEBUG   opendrift.config:168: Adding 5 config items from __init__
09:39:08 INFO    opendrift.models.basemodel:515: OpenDriftSimulation initialised (version 1.11.13 / v1.11.13-82-gecf6952)
09:39:08 DEBUG   opendrift.config:168: Adding 15 config items from oceandrift
09:39:08 DEBUG   opendrift.config:178:   Overwriting config item seed:z
09:39:08 DEBUG   opendrift.models.basemodel.environment:328: Added reader NorKyst manual aggregate
09:39:08 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:39:08 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
09:39:12 DEBUG   opendrift.models.basemodel.environment:328: Added reader global_landmask
09:39:12 INFO    opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_significant_height: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_to_direction: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_significant_height: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_to_direction: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_mean_period: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_significant_height: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    surface_downward_x_stress: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    surface_downward_y_stress: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    turbulent_kinetic_energy: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    turbulent_generic_length_scale: 0.000000
09:39:12 INFO    opendrift.models.basemodel.environment:248:    ocean_mixed_layer_thickness: 50.000000
09:39:12 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Config to Mode.Ready
09:39:12 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Ready to Mode.Run
09:39:13 DEBUG   opendrift.models.basemodel:1778:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.13
  Platform: Linux, 5.15.0-1057-aws
  68.56774139404297 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:39:13 DEBUG   opendrift.models.basemodel:1792: No output file is specified, neglecting export_buffer_length
09:39:13 DEBUG   opendrift.models.basemodel:1910: Finalizing environment and preparing readers for simulation coverage ([-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]) and time (2024-10-18 00:00:00 to 2024-10-20 23:00:00)
09:39:13 DEBUG   opendrift.models.basemodel.environment:180:    Preparing NorKyst manual aggregate for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
09:39:13 DEBUG   opendrift.readers.basereader.structured:153: Clearing cache for reader NorKyst manual aggregate before starting new simulation
09:39:13 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:39:13 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for NorKyst manual aggregate
09:39:13 DEBUG   opendrift.models.basemodel.environment:180:    Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
09:39:13 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
09:39:13 INFO    opendrift.models.basemodel:936: Using existing reader for land_binary_mask
09:39:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:39:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:39:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:39:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:39:13 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:39:13 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:39:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:13 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:39:13 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:39:13 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:39:13 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:39:13 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:39:13 INFO    opendrift.models.basemodel:947: All points are in ocean
09:39:13 DEBUG   opendrift.models.basemodel:891: to be seeded: 1000, already seeded 0
09:39:13 DEBUG   opendrift.models.basemodel:909: Released 1000 new elements.
09:39:13 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:39:13 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:39:13 INFO    opendrift.models.basemodel:2038: 2024-10-18 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
09:39:13 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:39:13 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:39:13 DEBUG   opendrift.models.basemodel:2057:               59.99731 <- latitude  -> 60.002846
09:39:13 DEBUG   opendrift.models.basemodel:2062:               4.4945407 <- longitude -> 4.504945
09:39:13 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:39:13 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:39:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39: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:39:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:39:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:39:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 00:00:00 (before)
                2024-10-18 01:00:00 (after)
09:39:26 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:39:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:39:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:39:26 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:39:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:39:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:39:26 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-10-18 00:00:00)
09:39:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 00:00:00) in space  (linearNDFast)
09:39:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:39:26 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:39:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:39:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:39:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:39:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:39:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:39:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:39:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:39:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:39:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:39:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:39:26 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:39:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0748656 (min) 0.108923 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0547176 (min) 0.0677906 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.182703 (min) -0.181619 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.381936 (min) -0.363105 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.0056 (min) 13.0223 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.80571e-08 (min) -7.09261e-09 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:39:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:39:26 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.164233, mean: 4.169771, max: 4.175236
09:39:26 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:39:26 DEBUG   opendrift.models.physics_methods:1061:    min: 11.117243, mean: 11.124632, max: 11.131921
09:39:26 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.117243, mean: 11.124632, max: 11.131921
09:39:26 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:39:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:26 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:39:26 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:39:26 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.260214 m/s - 0.260557 m/s)
09:39:26 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:39:26 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:39:26 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:39:26 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:39:26 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:39:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:26 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:39:26 INFO    opendrift.models.basemodel:2038: 2024-10-18 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
09:39:26 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:39:26 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:39:26 DEBUG   opendrift.models.basemodel:2057:               60.00791320667672 <- latitude  -> 60.01302692420178
09:39:26 DEBUG   opendrift.models.basemodel:2062:               4.500917187819889 <- longitude -> 4.509793749689372
09:39:26 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:39:26 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:39:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39: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:39:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:39:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:39:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 01:00:00 (before)
                2024-10-18 02: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-10-18 01:00:00)
09:39:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 01: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.49909373285195 and -65.49021717792041 degrees.
09:39:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49909373285195 and -65.49021717792041 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.395971 (min) -0.0908522 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0320602 (min) 0.281109 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.530444 (min) -0.526137 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.675629 (min) -0.647358 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.6257 (min) 12.6335 (max)
09:39:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.46147e-05 (min) -8.92533e-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: 298.815 (min) 299.032 (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: 3.932692, mean: 3.934181, max: 3.936627
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: 10.803751, mean: 10.805796, max: 10.809154
09:39:38 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.803751, mean: 10.805796, max: 10.809154
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.252876 m/s - 0.253002 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-10-18 02:00:00 - step 3 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.01752659897102 <- latitude  -> 60.030050608850814
09:39:38 DEBUG   opendrift.models.basemodel:2062:               4.479232238865322 <- longitude -> 4.502466021501618
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-10-18 02:00:00 (before)
                2024-10-18 03:00:00 (after)
09:39:50 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:39:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:39:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:39:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:39:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:39:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:39:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x7) for time before (2024-10-18 02:00:00)
09:39:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 02:00:00) in space  (linearNDFast)
09:39:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:39:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:39:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52077867301016 and -65.49754489054446 degrees.
09:39:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52077867301016 and -65.49754489054446 degrees.
09:39:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:39:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:39:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:39:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:39:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:39:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:39:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:39:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:39:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:39:50 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:39:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0390812 (min) 0.118431 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0735938 (min) 0.19088 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.80297 (min) -0.79632 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.410074 (min) -0.355329 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.6474 (min) 11.6805 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -8.09647e-05 (min) -7.45236e-05 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.638 (min) 299.013 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:39:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:39:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.340400, mean: 3.343036, max: 3.360401
09:39:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:39:50 DEBUG   opendrift.models.physics_methods:1061:    min: 9.957007, mean: 9.960934, max: 9.986773
09:39:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.957007, mean: 9.960934, max: 9.986773
09:39:50 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:39:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:50 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:39:50 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:39:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.233057 m/s - 0.233753 m/s)
09:39:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:39:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:39:50 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:39:50 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:39:50 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:39:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:39:50 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:39:50 INFO    opendrift.models.basemodel:2038: 2024-10-18 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
09:39:50 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:39:50 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:39:50 DEBUG   opendrift.models.basemodel:2057:               60.02777163420198 <- latitude  -> 60.043628131162805
09:39:50 DEBUG   opendrift.models.basemodel:2062:               4.482563349642656 <- longitude -> 4.504459360860995
09:39:50 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:39:50 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:39:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:39:50 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:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:39:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:39:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:39:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:39:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:39:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 03:00:00 (before)
                2024-10-18 04:00:00 (after)
09:40:03 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:40:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:40:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:40:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:40:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:40:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:40:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x7) for time before (2024-10-18 03:00:00)
09:40:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 03:00:00) in space  (linearNDFast)
09:40:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:40:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:40:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51744756572408 and -65.49555157111892 degrees.
09:40:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51744756572408 and -65.49555157111892 degrees.
09:40:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:40:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:40:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:40:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:40:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:40:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:40:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:40:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:40:03 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:40:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0802128 (min) 0.109651 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.154928 (min) 0.231384 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.959099 (min) -0.951388 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.225043 (min) 0.262652 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.0249 (min) 11.0806 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.35596e-05 (min) -2.55823e-05 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.644 (min) 299.156 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:40:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:40:03 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.991385, mean: 2.999226, max: 3.022075
09:40:03 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:40:03 DEBUG   opendrift.models.physics_methods:1061:    min: 9.422490, mean: 9.434827, max: 9.470703
09:40:03 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.422490, mean: 9.434827, max: 9.470703
09:40:03 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:40:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:03 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:40:03 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:40:03 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.220546 m/s - 0.221674 m/s)
09:40:03 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:40:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:40:03 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:40:03 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:40:03 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:40:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:03 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:40:03 INFO    opendrift.models.basemodel:2038: 2024-10-18 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
09:40:03 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:40:03 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:40:03 DEBUG   opendrift.models.basemodel:2057:               60.04213245729872 <- latitude  -> 60.058241264054104
09:40:03 DEBUG   opendrift.models.basemodel:2062:               4.487230727612597 <- longitude -> 4.502453613617908
09:40:03 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:40:03 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:40:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40: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:40:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:40:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:40:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 04:00:00 (before)
                2024-10-18 05:00:00 (after)
09:40:16 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:40:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:40:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:40:16 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:40:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:40:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:40:16 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-18 04:00:00)
09:40:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 04:00:00) in space  (linearNDFast)
09:40:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:40:16 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:40:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51278017397475 and -65.49755729185762 degrees.
09:40:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51278017397475 and -65.49755729185762 degrees.
09:40:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:16 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:40:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:40:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:40:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:40:16 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:40:16 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:40:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:16 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:40:16 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:40:16 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:40:16 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.128557 (min) -0.0459052 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.370512 (min) 0.440936 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.96233 (min) -0.96066 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.567397 (min) -0.548839 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.1079 (min) 10.1593 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.93241e-05 (min) 2.67763e-05 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.52 (min) 299.094 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:40:16 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:40:16 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.520851, mean: 2.528353, max: 2.546885
09:40:16 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:40:16 DEBUG   opendrift.models.physics_methods:1061:    min: 8.649742, mean: 8.662600, max: 8.694293
09:40:16 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.649742, mean: 8.662600, max: 8.694293
09:40:16 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:40:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:16 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:40:16 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:40:16 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.202459 m/s - 0.203501 m/s)
09:40:16 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:40:16 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:40:16 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:40:16 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:40:16 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:40:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:16 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:40:16 INFO    opendrift.models.basemodel:2038: 2024-10-18 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
09:40:16 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:40:16 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:40:16 DEBUG   opendrift.models.basemodel:2057:               60.06144381027853 <- latitude  -> 60.07779986021542
09:40:16 DEBUG   opendrift.models.basemodel:2062:               4.483552549967579 <- longitude -> 4.493413844114827
09:40:16 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:40:16 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:40:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40: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:40:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:40:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:40:16 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 05:00:00 (before)
                2024-10-18 06:00:00 (after)
09:40:28 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:40:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:40:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:40:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:40:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:40:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:40:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x7) for time before (2024-10-18 05:00:00)
09:40:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 05:00:00) in space  (linearNDFast)
09:40:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:40:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:40:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51645834892761 and -65.50659706407889 degrees.
09:40:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51645834892761 and -65.50659706407889 degrees.
09:40:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:40:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:40:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:40:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:40:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:40:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:40:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:40:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:40:28 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:40:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0913979 (min) 0.0260639 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.483017 (min) 0.502585 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.850278 (min) -0.846435 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.32354 (min) -1.28333 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.1659 (min) 10.1942 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.81756e-05 (min) 4.20309e-05 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.066 (min) 298.64 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:40:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:40:28 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.585263, mean: 2.588865, max: 2.596977
09:40:28 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:40:28 DEBUG   opendrift.models.physics_methods:1061:    min: 8.759553, mean: 8.765651, max: 8.779376
09:40:28 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.759553, mean: 8.765651, max: 8.779376
09:40:28 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:40:28 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:28 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:40:28 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:40:28 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205029 m/s - 0.205493 m/s)
09:40:28 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:40:28 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:40:28 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:40:28 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:40:28 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:40:28 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:28 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:40:28 INFO    opendrift.models.basemodel:2038: 2024-10-18 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
09:40:28 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:40:28 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:40:28 DEBUG   opendrift.models.basemodel:2057:               60.08407212320898 <- latitude  -> 60.10057389629179
09:40:28 DEBUG   opendrift.models.basemodel:2062:               4.48350997420709 <- longitude -> 4.485843251717403
09:40:28 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:40:28 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:40:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:28 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:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:40:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:40:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 06:00:00 (before)
                2024-10-18 07:00:00 (after)
09:40:41 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:40:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:40:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:40:41 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:40:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:40:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:40:41 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-18 06:00:00)
09:40:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 06:00:00) in space  (linearNDFast)
09:40:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:40:41 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:40:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51650090748666 and -65.5141676421083 degrees.
09:40:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51650090748666 and -65.5141676421083 degrees.
09:40:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:40:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:40:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:40:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:40:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:40:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:40:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:41 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:40:41 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:40:41 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:40:41 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00151912 (min) 0.112967 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.500425 (min) 0.58685 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.666918 (min) -0.66486 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.73646 (min) -2.72794 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.396 (min) 11.4087 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.84631e-05 (min) 5.96459e-05 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.82 (min) 298.068 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:40:41 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:40:41 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.378985, mean: 3.381691, max: 3.384966
09:40:41 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:40:41 DEBUG   opendrift.models.physics_methods:1061:    min: 10.014349, mean: 10.018358, max: 10.023209
09:40:41 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.014349, mean: 10.018358, max: 10.023209
09:40:41 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:40:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:41 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:40:41 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:40:41 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.234399 m/s - 0.234606 m/s)
09:40:41 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:40:41 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:40:41 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:40:41 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:40:41 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:40:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:41 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:40:41 INFO    opendrift.models.basemodel:2038: 2024-10-18 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
09:40:41 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:40:41 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:40:41 DEBUG   opendrift.models.basemodel:2057:               60.11039889516899 <- latitude  -> 60.12411603019616
09:40:41 DEBUG   opendrift.models.basemodel:2062:               4.482088541307401 <- longitude -> 4.487319843823262
09:40:41 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:40:41 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:40:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40: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:40:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:40:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:40:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 07:00:00 (before)
                2024-10-18 08:00:00 (after)
09:40:56 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:40:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:40:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:40:56 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:40:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:40:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:40:56 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-18 07:00:00)
09:40:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 07:00:00) in space  (linearNDFast)
09:40:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:40:56 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:40:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51792235208465 and -65.51269103464301 degrees.
09:40:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51792235208465 and -65.51269103464301 degrees.
09:40:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:40:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:40:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:40:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:40:56 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:40:56 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:40:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:40:56 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:40:56 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:40:56 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:40:56 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0553559 (min) 0.0748468 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.437775 (min) 0.530756 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.432838 (min) -0.429605 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.72407 (min) -2.67583 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.4571 (min) 11.4582 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.33733e-05 (min) 7.38856e-05 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.72 (min) 298.065 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:40:56 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:40:56 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.405262, mean: 3.408413, max: 3.412281
09:40:56 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:40:56 DEBUG   opendrift.models.physics_methods:1061:    min: 10.053212, mean: 10.057863, max: 10.063567
09:40:56 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.053212, mean: 10.057863, max: 10.063567
09:40:56 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:40:56 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:56 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:40:56 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:40:56 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.235309 m/s - 0.235551 m/s)
09:40:56 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:40:56 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:40:56 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:40:56 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:40:56 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:40:56 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:40:56 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:40:56 INFO    opendrift.models.basemodel:2038: 2024-10-18 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
09:40:56 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:40:56 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:40:56 DEBUG   opendrift.models.basemodel:2057:               60.1349524848779 <- latitude  -> 60.1456658625649
09:40:56 DEBUG   opendrift.models.basemodel:2062:               4.482211762416801 <- longitude -> 4.488638455418414
09:40:56 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:40:56 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:40:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:40:56 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:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:40:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:40:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:40:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:40:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:40:56 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 08:00:00 (before)
                2024-10-18 09:00:00 (after)
09:41:08 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:41:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:41:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:41:08 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:41:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:41:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:41:08 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-10-18 08:00:00)
09:41:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 08:00:00) in space  (linearNDFast)
09:41:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:41:08 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:41:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51779912479118 and -65.51137242114618 degrees.
09:41:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51779912479118 and -65.51137242114618 degrees.
09:41:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:41:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:41:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:41:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:41:08 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:41:08 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:41:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:08 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:41:08 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:41:08 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:41:08 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0547649 (min) 0.0614777 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.366618 (min) 0.388239 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.149564 (min) -0.146705 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.97257 (min) -3.95332 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.5623 (min) 11.6015 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.13197e-05 (min) 8.19648e-05 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.902 (min) 298.424 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:41:08 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:41:08 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.676925, mean: 3.686380, max: 3.695508
09:41:08 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:41:08 DEBUG   opendrift.models.physics_methods:1061:    min: 10.446528, mean: 10.459949, max: 10.472893
09:41:08 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.446528, mean: 10.459949, max: 10.472893
09:41:08 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:41:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:08 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:41:08 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:41:08 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244515 m/s - 0.245132 m/s)
09:41:08 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:41:08 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:41:08 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:41:08 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:41:08 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:41:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:08 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:41:08 INFO    opendrift.models.basemodel:2038: 2024-10-18 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
09:41:08 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:41:08 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:41:08 DEBUG   opendrift.models.basemodel:2057:               60.154968956020745 <- latitude  -> 60.16500901740765
09:41:08 DEBUG   opendrift.models.basemodel:2062:               4.48063070578102 <- longitude -> 4.48749711071303
09:41:08 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:41:08 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:41:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41: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:41:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:41:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:41:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 09:00:00 (before)
                2024-10-18 10:00:00 (after)
09:41:21 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:41:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:41:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:41:21 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:41:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:41:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:41:21 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-18 09:00:00)
09:41:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 09:00:00) in space  (linearNDFast)
09:41:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:41:21 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:41:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.519380173871 and -65.51251375436202 degrees.
09:41:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.519380173871 and -65.51251375436202 degrees.
09:41:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:21 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:41:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:41:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:41:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:41:21 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:41:21 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:41:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:21 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:41:21 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:41:21 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:41:21 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0517401 (min) 0.0548993 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.236274 (min) 0.24468 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.112222 (min) 0.117968 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.49691 (min) -4.48555 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.3386 (min) 12.3512 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.06957e-05 (min) 6.1053e-05 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.253 (min) 298.908 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:41:21 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:41:21 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.240075, mean: 4.248095, max: 4.250043
09:41:21 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:41:21 DEBUG   opendrift.models.physics_methods:1061:    min: 11.218024, mean: 11.228628, max: 11.231202
09:41:21 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.218024, mean: 11.228628, max: 11.231202
09:41:21 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:41:21 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:21 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:41:21 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:41:21 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.262572 m/s - 0.262881 m/s)
09:41:21 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:41:21 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:41:21 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:41:21 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:41:21 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:41:21 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:21 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:41:21 INFO    opendrift.models.basemodel:2038: 2024-10-18 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
09:41:21 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:41:21 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:41:21 DEBUG   opendrift.models.basemodel:2057:               60.17063514210534 <- latitude  -> 60.18089653749909
09:41:21 DEBUG   opendrift.models.basemodel:2062:               4.478350869081836 <- longitude -> 4.485019399579013
09:41:21 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:41:21 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:41:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41: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:41:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:41:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:41:21 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 10:00:00 (before)
                2024-10-18 11:00:00 (after)
09:41:33 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:41:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:41:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:41:33 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:41:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:41:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:41:33 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-18 10:00:00)
09:41:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 10:00:00) in space  (linearNDFast)
09:41:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:41:33 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:41:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5216599999695 and -65.5149914768682 degrees.
09:41:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5216599999695 and -65.5149914768682 degrees.
09:41:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:41:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:41:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:41:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:41:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:41:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:41:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:33 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:41:33 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:41:33 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:41:33 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0578216 (min) 0.0629116 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.15126 (min) 0.153048 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.261273 (min) 0.265806 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.80746 (min) -2.76153 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.8906 (min) 12.9359 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.87915e-05 (min) 1.91165e-05 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.735 (min) 299.496 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:41:33 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:41:33 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.275336, mean: 4.297831, max: 4.310418
09:41:33 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:41:33 DEBUG   opendrift.models.physics_methods:1061:    min: 11.264573, mean: 11.294164, max: 11.310694
09:41:33 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.264573, mean: 11.294164, max: 11.310694
09:41:33 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:41:33 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:33 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:41:33 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:41:33 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.263662 m/s - 0.264742 m/s)
09:41:33 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:41:33 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:41:33 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:41:33 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:41:33 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:41:33 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:33 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:41:33 INFO    opendrift.models.basemodel:2038: 2024-10-18 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
09:41:33 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:41:33 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:41:33 DEBUG   opendrift.models.basemodel:2057:               60.183887813332305 <- latitude  -> 60.19417196181327
09:41:33 DEBUG   opendrift.models.basemodel:2062:               4.478704381320701 <- longitude -> 4.485186602205467
09:41:33 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:41:33 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:41:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:33 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:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:41:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:41:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 11:00:00 (before)
                2024-10-18 12:00:00 (after)
09:41:44 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:41:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:41:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:41:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:41:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:41:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:41:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-10-18 11:00:00)
09:41:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 11:00:00) in space  (linearNDFast)
09:41:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:41:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:41:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52130648243659 and -65.51482425303735 degrees.
09:41:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52130648243659 and -65.51482425303735 degrees.
09:41:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:41:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:41:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:41:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:41:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:41:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:41:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:41:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:41:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:41:45 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:41:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00121872 (min) 0.0069196 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0949408 (min) 0.120879 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.228177 (min) 0.230287 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.30681 (min) -2.27676 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.075 (min) 13.0827 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.93742e-05 (min) -3.89672e-05 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.42 (min) 300.258 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:41:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:41:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.335836, mean: 4.336206, max: 4.338004
09:41:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:41:45 DEBUG   opendrift.models.physics_methods:1061:    min: 11.343995, mean: 11.344478, max: 11.346830
09:41:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.343995, mean: 11.344478, max: 11.346830
09:41:45 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:41:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:45 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:41:45 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:41:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.265521 m/s - 0.265587 m/s)
09:41:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:41:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:41:45 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:41:45 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:41:45 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:41:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:41:45 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:41:45 INFO    opendrift.models.basemodel:2038: 2024-10-18 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
09:41:45 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:41:45 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:41:45 DEBUG   opendrift.models.basemodel:2057:               60.19540488829918 <- latitude  -> 60.20653214836987
09:41:45 DEBUG   opendrift.models.basemodel:2062:               4.476129792941022 <- longitude -> 4.482309506022656
09:41:45 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:41:45 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:41:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:41: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:41:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:41:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:41:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:41:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:41:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:41:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 12:00:00 (before)
                2024-10-18 13:00:00 (after)
09:42:02 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:42:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:42:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:42:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:42:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:42:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:42:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-18 12:00:00)
09:42:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 12:00:00) in space  (linearNDFast)
09:42:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:42:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:42:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52388106550211 and -65.51770135535162 degrees.
09:42:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52388106550211 and -65.51770135535162 degrees.
09:42:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:42:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:42:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:42:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:42:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:42:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:42:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:42:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:42:02 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:42:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0363601 (min) -0.0331651 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.130011 (min) 0.148995 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.00450273 (min) 0.00507749 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.34223 (min) -2.33165 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.7944 (min) 12.8108 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -8.32685e-05 (min) -8.30527e-05 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.061 (min) 301.094 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:42:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:42:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.160683, mean: 4.165231, max: 4.172237
09:42:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:42:02 DEBUG   opendrift.models.physics_methods:1061:    min: 11.112502, mean: 11.118575, max: 11.127922
09:42:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.112502, mean: 11.118575, max: 11.127922
09:42:02 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:42:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:02 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:42:02 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:42:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.260103 m/s - 0.260464 m/s)
09:42:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:42:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:42:02 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:42:02 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:42:02 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:42:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:02 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:42:02 INFO    opendrift.models.basemodel:2038: 2024-10-18 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
09:42:02 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:42:02 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:42:02 DEBUG   opendrift.models.basemodel:2057:               60.20788435784307 <- latitude  -> 60.21961440896342
09:42:02 DEBUG   opendrift.models.basemodel:2062:               4.470728396195643 <- longitude -> 4.477127203794329
09:42:02 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:42:02 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:42:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:02 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:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:42:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:42:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 13:00:00 (before)
                2024-10-18 14:00:00 (after)
09:42:19 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:42:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:42:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:42:19 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:42:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:42:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:42:19 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-18 13:00:00)
09:42:19 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 13:00:00) in space  (linearNDFast)
09:42:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:42:19 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:42:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52928246046969 and -65.52288365534181 degrees.
09:42:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52928246046969 and -65.52288365534181 degrees.
09:42:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:19 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:42:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:42:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:19 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:42:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:42:19 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:42:19 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:42:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:19 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:42:19 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:42:19 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:42:19 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00561952 (min) 0.007222 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.156281 (min) 0.164633 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.322907 (min) -0.3207 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.99702 (min) -2.99596 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.8364 (min) 13.8657 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.46338e-05 (min) -9.38594e-05 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.913 (min) 302.169 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:42:19 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:42:19 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.930435, mean: 4.941925, max: 4.950509
09:42:19 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:42:19 DEBUG   opendrift.models.physics_methods:1061:    min: 12.096847, mean: 12.110933, max: 12.121448
09:42:19 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.096847, mean: 12.110933, max: 12.121448
09:42:19 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:42:19 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:19 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:42:19 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:42:19 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.283142 m/s - 0.283718 m/s)
09:42:19 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:42:19 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:42:19 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:42:19 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:42:19 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:42:19 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:19 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:42:19 INFO    opendrift.models.basemodel:2038: 2024-10-18 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
09:42:19 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:42:19 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:42:19 DEBUG   opendrift.models.basemodel:2057:               60.22214401724748 <- latitude  -> 60.233624373607825
09:42:19 DEBUG   opendrift.models.basemodel:2062:               4.467221579388725 <- longitude -> 4.473701705120331
09:42:19 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:42:19 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:42:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42: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:42:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:42:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:19 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:42:19 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 14:00:00 (before)
                2024-10-18 15:00:00 (after)
09:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:42:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-18 14:00:00)
09:42:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 14:00:00) in space  (linearNDFast)
09:42:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:42:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:42:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53278926708194 and -65.52630914866937 degrees.
09:42:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53278926708194 and -65.52630914866937 degrees.
09:42:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:42:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:42:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:42:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:42:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:42:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:42:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:42:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:42:36 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:42:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0326405 (min) 0.0567507 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0416299 (min) 0.0965019 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.630788 (min) -0.627445 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.42217 (min) -2.41994 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.9152 (min) 13.9235 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.34615e-05 (min) -7.22759e-05 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 302.213 (min) 303.307 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:42:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:42:36 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.907502, mean: 4.909573, max: 4.913370
09:42:36 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:42:36 DEBUG   opendrift.models.physics_methods:1061:    min: 12.068683, mean: 12.071228, max: 12.075894
09:42:36 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.068683, mean: 12.071228, max: 12.075894
09:42:36 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:42:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:36 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:42:36 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:42:36 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.282483 m/s - 0.282652 m/s)
09:42:36 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:42:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:42:36 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:42:36 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:42:36 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:42:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:36 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:42:36 INFO    opendrift.models.basemodel:2038: 2024-10-18 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
09:42:36 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:42:36 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:42:36 DEBUG   opendrift.models.basemodel:2057:               60.23425974979531 <- latitude  -> 60.243962331861255
09:42:36 DEBUG   opendrift.models.basemodel:2062:               4.467745944059121 <- longitude -> 4.47267570250898
09:42:36 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:42:36 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:42:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42: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:42:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:42:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:42:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 15:00:00 (before)
                2024-10-18 16:00:00 (after)
09:42:51 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:42:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:42:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:42:51 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:42:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:42:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:42:51 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-10-18 15:00:00)
09:42:51 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 15:00:00) in space  (linearNDFast)
09:42:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:42:51 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:42:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53226490884451 and -65.52733514801615 degrees.
09:42:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53226490884451 and -65.52733514801615 degrees.
09:42:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:42:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:42:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:42:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:42:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:42:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:42:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:42:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:42:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:42:52 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:42:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0635383 (min) -0.0467263 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0379168 (min) 0.0558443 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.840795 (min) -0.839686 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.84478 (min) -1.83449 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.7073 (min) 13.7246 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.26731e-05 (min) -4.13333e-05 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 303.284 (min) 303.721 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:42:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:42:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.705808, mean: 4.707707, max: 4.716554
09:42:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:42:52 DEBUG   opendrift.models.physics_methods:1061:    min: 11.818074, mean: 11.820457, max: 11.831558
09:42:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.818074, mean: 11.820457, max: 11.831558
09:42:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:42:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:42:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:42:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.276617 m/s - 0.276933 m/s)
09:42:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:42:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:42:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:42:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:42:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:42:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:42:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:42:52 INFO    opendrift.models.basemodel:2038: 2024-10-18 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
09:42:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:42:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:42:52 DEBUG   opendrift.models.basemodel:2057:               60.244342928908836 <- latitude  -> 60.25463580034143
09:42:52 DEBUG   opendrift.models.basemodel:2062:               4.462242024647845 <- longitude -> 4.466160355121389
09:42:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:42:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:42:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:42: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:42:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:42:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:42:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:42:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:42:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:42:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 16:00:00 (before)
                2024-10-18 17:00:00 (after)
09:43:03 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-10-18 16:00:00)
09:43:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 16:00:00) in space  (linearNDFast)
09:43:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53776882758275 and -65.53385048285813 degrees.
09:43:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53776882758275 and -65.53385048285813 degrees.
09:43:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:03 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.13274 (min) -0.127041 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.157107 (min) 0.170666 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.907959 (min) -0.907193 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.87191 (min) -1.86949 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.795 (min) 13.8197 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.33229e-06 (min) 5.44469e-06 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 303.596 (min) 303.768 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:03 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.767450, mean: 4.776346, max: 4.784332
09:43:03 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:03 DEBUG   opendrift.models.physics_methods:1061:    min: 11.895225, mean: 11.906316, max: 11.916267
09:43:03 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.895225, mean: 11.906316, max: 11.916267
09:43:03 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:03 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:03 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:03 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.278423 m/s - 0.278916 m/s)
09:43:03 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:03 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:03 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:03 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:03 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:03 INFO    opendrift.models.basemodel:2038: 2024-10-18 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
09:43:03 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:03 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:03 DEBUG   opendrift.models.basemodel:2057:               60.258336709424896 <- latitude  -> 60.26908048541745
09:43:03 DEBUG   opendrift.models.basemodel:2062:               4.451502232284176 <- longitude -> 4.45509432820143
09:43:03 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:03 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43: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:43:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 17:00:00 (before)
                2024-10-18 18:00:00 (after)
09:43:14 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-18 17:00:00)
09:43:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 17:00:00) in space  (linearNDFast)
09:43:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.54850860197173 and -65.54491651292952 degrees.
09:43:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.54850860197173 and -65.54491651292952 degrees.
09:43:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:14 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.152786 (min) -0.129083 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.276354 (min) 0.292023 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.819999 (min) -0.81893 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.70237 (min) -2.69541 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.6237 (min) 13.6937 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.25394e-05 (min) 4.2764e-05 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 302.53 (min) 303.294 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:14 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.744608, mean: 4.769551, max: 4.792453
09:43:14 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:14 DEBUG   opendrift.models.physics_methods:1061:    min: 11.866694, mean: 11.897839, max: 11.926375
09:43:14 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.866694, mean: 11.897839, max: 11.926375
09:43:14 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:14 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:14 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:14 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.277755 m/s - 0.279152 m/s)
09:43:14 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:14 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:14 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:14 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:14 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:14 INFO    opendrift.models.basemodel:2038: 2024-10-18 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
09:43:14 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:14 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:14 DEBUG   opendrift.models.basemodel:2057:               60.27657592612029 <- latitude  -> 60.28685853364986
09:43:14 DEBUG   opendrift.models.basemodel:2062:               4.439541317632304 <- longitude -> 4.441637670931959
09:43:14 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:14 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43: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:43:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 18:00:00 (before)
                2024-10-18 19:00:00 (after)
09:43:27 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:27 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:27 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-18 18:00:00)
09:43:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 18:00:00) in space  (linearNDFast)
09:43:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:27 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56046952431907 and -65.55837316475656 degrees.
09:43:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56046952431907 and -65.55837316475656 degrees.
09:43:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:27 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:27 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:27 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:27 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:27 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:27 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.136608 (min) -0.101265 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.40152 (min) 0.40628 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.625012 (min) -0.624155 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.14074 (min) -3.12572 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.6165 (min) 13.6527 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.19187e-05 (min) 6.20659e-05 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.543 (min) 301.695 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:27 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:27 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.803741, mean: 4.814690, max: 4.825701
09:43:27 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:27 DEBUG   opendrift.models.physics_methods:1061:    min: 11.940414, mean: 11.954012, max: 11.967675
09:43:27 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.940414, mean: 11.954012, max: 11.967675
09:43:27 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:27 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:27 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:27 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:27 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.279481 m/s - 0.280119 m/s)
09:43:27 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:27 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:27 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:27 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:27 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:27 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:27 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:27 INFO    opendrift.models.basemodel:2038: 2024-10-18 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
09:43:27 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:27 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:27 DEBUG   opendrift.models.basemodel:2057:               60.29834847635935 <- latitude  -> 60.3088081083329
09:43:27 DEBUG   opendrift.models.basemodel:2062:               4.4285902016645196 <- longitude -> 4.42936411008342
09:43:27 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:27 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43: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:43:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 19:00:00 (before)
                2024-10-18 20:00:00 (after)
09:43:38 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-18 19:00:00)
09:43:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 19:00:00) in space  (linearNDFast)
09:43:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57142064147304 and -65.57064671332648 degrees.
09:43:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57142064147304 and -65.57064671332648 degrees.
09:43:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:38 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.069679 (min) -0.0647911 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.499868 (min) 0.508284 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.375988 (min) -0.373449 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.06185 (min) -4.05145 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.2772 (min) 13.3031 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.72107e-05 (min) 7.86865e-05 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.429 (min) 299.498 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:38 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.742225, mean: 4.747527, max: 4.757298
09:43:38 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:38 DEBUG   opendrift.models.physics_methods:1061:    min: 11.863714, mean: 11.870344, max: 11.882554
09:43:38 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.863714, mean: 11.870344, max: 11.882554
09:43:38 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:38 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:38 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:39 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.277686 m/s - 0.278127 m/s)
09:43:39 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:39 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:39 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:39 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:39 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:39 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:39 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:39 INFO    opendrift.models.basemodel:2038: 2024-10-18 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
09:43:39 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:39 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:39 DEBUG   opendrift.models.basemodel:2057:               60.32308152358949 <- latitude  -> 60.33362660773649
09:43:39 DEBUG   opendrift.models.basemodel:2062:               4.418848508223561 <- longitude -> 4.419774570762893
09:43:39 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:39 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:39 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:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 20:00:00 (before)
                2024-10-18 21:00:00 (after)
09:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:43:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-18 20:00:00)
09:43:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 20:00:00) in space  (linearNDFast)
09:43:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:43:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:43:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58116231200592 and -65.58023625728006 degrees.
09:43:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58116231200592 and -65.58023625728006 degrees.
09:43:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:43:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:43:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:43:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:43:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:43:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:43:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:43:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:43:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:43:50 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:43:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.000856244 (min) 0.00814644 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.435058 (min) 0.453619 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0768797 (min) -0.0738552 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.26751 (min) -4.22559 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.5613 (min) 13.6283 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.42678e-05 (min) 8.4455e-05 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.658 (min) 297.953 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:43:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:43:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.972129, mean: 4.989905, max: 5.008227
09:43:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:43:50 DEBUG   opendrift.models.physics_methods:1061:    min: 12.147890, mean: 12.169580, max: 12.191905
09:43:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.147890, mean: 12.169580, max: 12.191905
09:43:50 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:43:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:50 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:43:50 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:43:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.284337 m/s - 0.285367 m/s)
09:43:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:43:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:43:50 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:43:50 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:43:50 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:43:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:43:50 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:43:50 INFO    opendrift.models.basemodel:2038: 2024-10-18 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
09:43:50 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:43:50 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:43:50 DEBUG   opendrift.models.basemodel:2057:               60.345901985530546 <- latitude  -> 60.35709005136441
09:43:50 DEBUG   opendrift.models.basemodel:2062:               4.413374961292927 <- longitude -> 4.414566063948151
09:43:50 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:43:50 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:43:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:43:50 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:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:43:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:43:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:43:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:43:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:43:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 21:00:00 (before)
                2024-10-18 22:00:00 (after)
09:44:02 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-18 21:00:00)
09:44:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 21:00:00) in space  (linearNDFast)
09:44:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58663585160201 and -65.58544474690476 degrees.
09:44:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58663585160201 and -65.58544474690476 degrees.
09:44:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:02 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0555148 (min) 0.0663558 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.342739 (min) 0.344897 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.209675 (min) 0.214367 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.23244 (min) -4.18965 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.3513 (min) 13.4139 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.92957e-05 (min) 6.93316e-05 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.937 (min) 298.167 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.816908, mean: 4.839786, max: 4.866962
09:44:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:02 DEBUG   opendrift.models.physics_methods:1061:    min: 11.956767, mean: 11.985122, max: 12.018729
09:44:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.956767, mean: 11.985122, max: 12.018729
09:44:02 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:02 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:02 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.279864 m/s - 0.281314 m/s)
09:44:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:02 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:02 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:02 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:02 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:02 INFO    opendrift.models.basemodel:2038: 2024-10-18 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
09:44:02 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:02 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:02 DEBUG   opendrift.models.basemodel:2057:               60.36570536047769 <- latitude  -> 60.37680493519581
09:44:02 DEBUG   opendrift.models.basemodel:2062:               4.412067459468245 <- longitude -> 4.41303660292071
09:44:02 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:02 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:02 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:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 22:00:00 (before)
                2024-10-18 23:00:00 (after)
09:44:13 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:13 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:13 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-10-18 22:00:00)
09:44:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 22:00:00) in space  (linearNDFast)
09:44:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:13 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5879433574098 and -65.58697420495164 degrees.
09:44:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5879433574098 and -65.58697420495164 degrees.
09:44:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:13 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:13 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:13 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:13 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:13 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:13 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0738021 (min) 0.077344 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.235844 (min) 0.243364 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.394101 (min) 0.398946 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.63489 (min) -5.59809 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.965 (min) 13.9881 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.68813e-05 (min) 2.72542e-05 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.477 (min) 298.865 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:13 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:13 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.578636, mean: 5.583651, max: 5.585950
09:44:13 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:13 DEBUG   opendrift.models.physics_methods:1061:    min: 12.867483, mean: 12.873265, max: 12.875915
09:44:13 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.867483, mean: 12.873265, max: 12.875915
09:44:13 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:13 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:13 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:13 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:13 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.301180 m/s - 0.301378 m/s)
09:44:13 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:13 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:13 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:13 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:13 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:13 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:13 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:13 INFO    opendrift.models.basemodel:2038: 2024-10-18 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
09:44:13 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:13 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:13 DEBUG   opendrift.models.basemodel:2057:               60.38234967173217 <- latitude  -> 60.393706989541755
09:44:13 DEBUG   opendrift.models.basemodel:2062:               4.409659804784619 <- longitude -> 4.410543345590683
09:44:13 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:13 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44: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:44:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 23:00:00 (before)
                2024-10-19 00:00:00 (after)
09:44:24 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:24 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:24 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-18 23:00:00)
09:44:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 23:00:00) in space  (linearNDFast)
09:44:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:24 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59035100301426 and -65.58946745832732 degrees.
09:44:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59035100301426 and -65.58946745832732 degrees.
09:44:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:24 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:24 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:24 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:24 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:24 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.148262 (min) 0.185373 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0196477 (min) 0.0560853 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.406723 (min) 0.412701 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.08756 (min) -5.06919 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.2977 (min) 14.3023 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.61373e-05 (min) -2.54449e-05 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.046 (min) 299.381 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:24 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:24 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.662288, mean: 5.664697, max: 5.667365
09:44:24 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:24 DEBUG   opendrift.models.physics_methods:1061:    min: 12.963598, mean: 12.966356, max: 12.969408
09:44:24 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.963598, mean: 12.966356, max: 12.969408
09:44:24 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:24 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:24 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:24 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:24 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.303430 m/s - 0.303566 m/s)
09:44:24 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:24 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:24 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:24 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:24 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:24 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:24 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:24 INFO    opendrift.models.basemodel:2038: 2024-10-19 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
09:44:24 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:24 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:24 DEBUG   opendrift.models.basemodel:2057:               60.39340060446254 <- latitude  -> 60.403581610914024
09:44:24 DEBUG   opendrift.models.basemodel:2062:               4.4129841631032445 <- longitude -> 4.415563319426173
09:44:24 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:24 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:24 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:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:24 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 00:00:00 (before)
                2024-10-19 01:00:00 (after)
09:44:36 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:36 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:36 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:36 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-19 00:00:00)
09:44:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 00:00:00) in space  (linearNDFast)
09:44:36 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:36 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58702664284178 and -65.58444748223141 degrees.
09:44:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58702664284178 and -65.58444748223141 degrees.
09:44:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:36 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.151757 (min) 0.176718 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.123265 (min) -0.110295 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.222492 (min) 0.224799 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.79202 (min) -4.76465 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.293 (min) 15.3032 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.68705e-07 (min) -3.88134e-07 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.376 (min) 299.645 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:36 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.312840, mean: 6.318843, max: 6.325583
09:44:36 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:36 DEBUG   opendrift.models.physics_methods:1061:    min: 13.688062, mean: 13.694568, max: 13.701872
09:44:36 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.688062, mean: 13.694568, max: 13.701872
09:44:36 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:36 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:36 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:36 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.320387 m/s - 0.320710 m/s)
09:44:36 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:36 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:36 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:36 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:36 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:36 INFO    opendrift.models.basemodel:2038: 2024-10-19 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
09:44:36 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:36 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:36 DEBUG   opendrift.models.basemodel:2057:               60.39971937367983 <- latitude  -> 60.4094869570594
09:44:36 DEBUG   opendrift.models.basemodel:2062:               4.416757766416863 <- longitude -> 4.420843121063035
09:44:36 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:36 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44: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:44:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 01:00:00 (before)
                2024-10-19 02:00:00 (after)
09:44:50 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:44:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:44:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:44:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:44:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:44:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:44:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-19 01:00:00)
09:44:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 01:00:00) in space  (linearNDFast)
09:44:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:44:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:44:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58325302569597 and -65.57916767607333 degrees.
09:44:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58325302569597 and -65.57916767607333 degrees.
09:44:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:44:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:44:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:44:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:44:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:44:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:44:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:44:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:44:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:44:50 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:44:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0685263 (min) 0.0843736 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.157099 (min) -0.133384 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.101036 (min) -0.100703 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.58236 (min) -3.49111 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.7812 (min) 15.819 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -0.000102447 (min) -0.000102255 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.558 (min) 299.806 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:44:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:44:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.442219, mean: 6.449106, max: 6.455961
09:44:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:44:50 DEBUG   opendrift.models.physics_methods:1061:    min: 13.827616, mean: 13.835006, max: 13.842357
09:44:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.827616, mean: 13.835006, max: 13.842357
09:44:50 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:44:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:50 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:44:50 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:44:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.323653 m/s - 0.323998 m/s)
09:44:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:44:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:44:50 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:44:50 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:44:50 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:44:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:44:50 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:44:50 INFO    opendrift.models.basemodel:2038: 2024-10-19 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
09:44:50 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:44:50 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:44:50 DEBUG   opendrift.models.basemodel:2057:               60.404865176856305 <- latitude  -> 60.415375003038726
09:44:50 DEBUG   opendrift.models.basemodel:2062:               4.416733794063619 <- longitude -> 4.421672894282941
09:44:50 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:44:50 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:44:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:44:50 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:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:44:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:44:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:44:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:44:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:44:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 02:00:00 (before)
                2024-10-19 03:00:00 (after)
09:45:02 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:45:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:45:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:45:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:45:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:45:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:45:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-10-19 02:00:00)
09:45:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 02:00:00) in space  (linearNDFast)
09:45:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:45:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:45:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5832769954038 and -65.57833790583544 degrees.
09:45:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5832769954038 and -65.57833790583544 degrees.
09:45:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:45:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:45:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:45:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:45:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:45:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:45:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:45:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:45:02 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:45:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0260982 (min) 0.0726328 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0620436 (min) -0.0317714 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.468426 (min) -0.466099 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.63773 (min) -5.62485 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.2889 (min) 14.2981 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.53856e-05 (min) -9.27606e-05 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.682 (min) 299.935 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:45:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:45:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.801951, mean: 5.806398, max: 5.810997
09:45:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:45:02 DEBUG   opendrift.models.physics_methods:1061:    min: 13.122501, mean: 13.127529, max: 13.132728
09:45:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.122501, mean: 13.127529, max: 13.132728
09:45:02 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:45:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:02 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:45:02 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:45:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.307149 m/s - 0.307389 m/s)
09:45:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:45:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:45:02 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:45:02 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:45:02 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:45:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:02 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:45:02 INFO    opendrift.models.basemodel:2038: 2024-10-19 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
09:45:02 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:45:02 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:45:02 DEBUG   opendrift.models.basemodel:2057:               60.412093915011624 <- latitude  -> 60.4235876964439
09:45:02 DEBUG   opendrift.models.basemodel:2062:               4.411152480767638 <- longitude -> 4.419049446403545
09:45:02 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:45:02 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:45:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:02 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:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:45:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:45:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 03:00:00 (before)
                2024-10-19 04:00:00 (after)
09:45:17 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:45:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:45:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:45:17 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:45:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:45:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:45:17 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x7) for time before (2024-10-19 03:00:00)
09:45:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 03:00:00) in space  (linearNDFast)
09:45:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:45:17 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:45:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5888583157874 and -65.58096134629207 degrees.
09:45:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5888583157874 and -65.58096134629207 degrees.
09:45:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:17 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:45:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:45:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:45:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:45:17 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:45:17 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:45:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:17 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:45:17 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:45:17 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:45:17 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0669716 (min) 0.104515 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0551933 (min) 0.0617919 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.759547 (min) -0.757049 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.33393 (min) -3.32372 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.2947 (min) 14.3852 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.8705e-05 (min) -5.73914e-05 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.809 (min) 300.074 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:45:17 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:45:17 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.298507, mean: 5.333791, max: 5.363983
09:45:17 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:45:17 DEBUG   opendrift.models.physics_methods:1061:    min: 12.540254, mean: 12.581931, max: 12.617498
09:45:17 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.540254, mean: 12.581931, max: 12.617498
09:45:17 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:45:17 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:17 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:45:17 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:45:17 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.293521 m/s - 0.295329 m/s)
09:45:17 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:45:17 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:45:17 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:45:17 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:45:17 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:45:17 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:17 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:45:17 INFO    opendrift.models.basemodel:2038: 2024-10-19 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
09:45:17 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:45:17 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:45:17 DEBUG   opendrift.models.basemodel:2057:               60.42317158658416 <- latitude  -> 60.434756956375466
09:45:17 DEBUG   opendrift.models.basemodel:2062:               4.41119746814608 <- longitude -> 4.421534462306734
09:45:17 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:45:17 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:45:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:17 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:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:45:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:45:17 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 04:00:00 (before)
                2024-10-19 05:00:00 (after)
09:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:45:33 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-19 04:00:00)
09:45:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 04:00:00) in space  (linearNDFast)
09:45:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:45:33 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:45:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58881332394867 and -65.5784763201361 degrees.
09:45:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58881332394867 and -65.5784763201361 degrees.
09:45:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:45:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:45:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:45:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:45:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:45:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:45:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:33 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:45:33 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:45:33 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:45:33 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.111758 (min) 0.14905 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.20008 (min) 0.224427 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.898136 (min) -0.892884 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.85221 (min) -1.80002 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.7378 (min) 14.7714 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.98016e-05 (min) -1.90485e-05 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.002 (min) 300.295 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:45:33 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:45:33 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.422935, mean: 5.439528, max: 5.451969
09:45:33 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:45:33 DEBUG   opendrift.models.physics_methods:1061:    min: 12.686645, mean: 12.706036, max: 12.720561
09:45:33 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.686645, mean: 12.706036, max: 12.720561
09:45:33 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:45:33 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:33 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:45:33 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:45:33 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.296947 m/s - 0.297741 m/s)
09:45:33 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:45:33 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:45:33 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:45:33 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:45:33 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:45:33 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:33 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:45:33 INFO    opendrift.models.basemodel:2038: 2024-10-19 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
09:45:33 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:45:33 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:45:33 DEBUG   opendrift.models.basemodel:2057:               60.43915967313565 <- latitude  -> 60.45155321359995
09:45:33 DEBUG   opendrift.models.basemodel:2062:               4.4162227102546945 <- longitude -> 4.42885787902748
09:45:33 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:45:33 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:45:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:33 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:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:45:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:45:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 05:00:00 (before)
                2024-10-19 06:00:00 (after)
09:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:45:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-19 05:00:00)
09:45:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 05:00:00) in space  (linearNDFast)
09:45:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:45:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:45:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58378806945792 and -65.57115289464124 degrees.
09:45:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58378806945792 and -65.57115289464124 degrees.
09:45:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:45:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:45:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:45:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:45:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:45:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:45:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:45:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:45:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:45:49 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:45:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.157184 (min) 0.197524 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.350527 (min) 0.35527 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.871859 (min) -0.869026 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.4835 (min) -1.41561 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.0797 (min) 14.1476 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.97813e-05 (min) 2.99172e-05 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.317 (min) 300.706 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:45:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:45:49 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.930747, mean: 4.947132, max: 4.973111
09:45:49 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:45:49 DEBUG   opendrift.models.physics_methods:1061:    min: 12.097230, mean: 12.117310, max: 12.149087
09:45:49 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.097230, mean: 12.117310, max: 12.149087
09:45:49 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:45:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:49 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:45:49 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:45:49 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.283151 m/s - 0.284365 m/s)
09:45:49 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:45:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:45:49 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:45:49 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:45:49 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:45:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:45:49 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:45:49 INFO    opendrift.models.basemodel:2038: 2024-10-19 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
09:45:49 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:45:49 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:45:49 DEBUG   opendrift.models.basemodel:2057:               60.459583205100294 <- latitude  -> 60.47217361802272
09:45:49 DEBUG   opendrift.models.basemodel:2062:               4.42462136660215 <- longitude -> 4.439929360691727
09:45:49 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:45:49 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:45:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:45: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:45:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:45:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:45:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:45:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:45:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:45:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 06:00:00 (before)
                2024-10-19 07:00:00 (after)
09:46:05 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:46:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:46:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:46:05 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:46:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:46:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:46:05 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-19 06:00:00)
09:46:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 06:00:00) in space  (linearNDFast)
09:46:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:46:05 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:46:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5753894182096 and -65.56008141699427 degrees.
09:46:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5753894182096 and -65.56008141699427 degrees.
09:46:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:46:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:46:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:46:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:46:05 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:46:05 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:46:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:05 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:46:05 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:46:05 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:46:05 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.210938 (min) 0.260832 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.417039 (min) 0.427219 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.707323 (min) -0.705385 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.86868 (min) -4.73763 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.0252 (min) 14.0752 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.04693e-05 (min) 6.05967e-05 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.817 (min) 301.471 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:46:05 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:46:05 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.420802, mean: 5.424822, max: 5.428374
09:46:05 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:46:05 DEBUG   opendrift.models.physics_methods:1061:    min: 12.684149, mean: 12.688852, max: 12.693005
09:46:05 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.684149, mean: 12.688852, max: 12.693005
09:46:05 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:46:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:05 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:46:05 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:46:05 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.296889 m/s - 0.297096 m/s)
09:46:05 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:46:05 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:46:05 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:46:05 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:46:05 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:46:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:05 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:46:05 INFO    opendrift.models.basemodel:2038: 2024-10-19 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
09:46:05 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:46:05 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:46:05 DEBUG   opendrift.models.basemodel:2057:               60.48212006447429 <- latitude  -> 60.495071255912436
09:46:05 DEBUG   opendrift.models.basemodel:2062:               4.432105634238068 <- longitude -> 4.4508023045361975
09:46:05 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:46:05 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:46:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46: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:46:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:46:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:46:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 07:00:00 (before)
                2024-10-19 08:00:00 (after)
09:46:20 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:46:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:46:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:46:20 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:46:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:46:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:46:20 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-19 07:00:00)
09:46:20 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 07:00:00) in space  (linearNDFast)
09:46:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:46:20 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:46:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56790513571818 and -65.5492084486547 degrees.
09:46:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56790513571818 and -65.5492084486547 degrees.
09:46:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:20 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:46:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:46:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:46:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:46:20 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:46:20 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:46:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:20 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:46:20 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:46:20 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:46:20 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.265371 (min) 0.323449 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.454526 (min) 0.46934 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.451791 (min) -0.450889 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -6.1189 (min) -6.01907 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.4296 (min) 13.4831 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.10739e-05 (min) 8.14228e-05 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 301.561 (min) 303.271 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:46:20 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:46:20 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.357612, mean: 5.359668, max: 5.363356
09:46:20 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:46:20 DEBUG   opendrift.models.physics_methods:1061:    min: 12.610004, mean: 12.612423, max: 12.616761
09:46:20 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.610004, mean: 12.612423, max: 12.616761
09:46:20 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:46:20 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:20 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:46:20 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:46:20 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.295154 m/s - 0.295312 m/s)
09:46:20 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:46:20 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:46:20 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:46:20 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:46:20 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:46:20 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:20 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:46:20 INFO    opendrift.models.basemodel:2038: 2024-10-19 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
09:46:20 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:46:20 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:46:20 DEBUG   opendrift.models.basemodel:2057:               60.50548260752048 <- latitude  -> 60.51894644254945
09:46:20 DEBUG   opendrift.models.basemodel:2062:               4.441470124756144 <- longitude -> 4.46410677947483
09:46:20 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:46:20 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:46:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:20 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:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:46:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:46:20 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 08:00:00 (before)
                2024-10-19 09: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.basereader.structured:291: Fetched env-block (size 25x23x7) for time before (2024-10-19 08:00:00)
09:46:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 08: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.55854063845668 and -65.53590397920907 degrees.
09:46:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.55854063845668 and -65.53590397920907 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.330967 (min) 0.387307 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.474139 (min) 0.484117 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.144642 (min) -0.143805 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.53692 (min) -5.47776 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.9595 (min) 14.0992 (max)
09:46:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.18376e-05 (min) 9.21222e-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: 303.402 (min) 308.521 (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: 5.547913, mean: 5.601478, max: 5.628288
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: 12.832001, mean: 12.893786, max: 12.924618
09:46:36 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.832001, mean: 12.893786, max: 12.924618
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.300350 m/s - 0.302518 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-10-19 09:00:00 - step 34 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.5298206009756 <- latitude  -> 60.54369637755629
09:46:36 DEBUG   opendrift.models.basemodel:2062:               4.455903898415843 <- longitude -> 4.482318870426898
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-10-19 09:00:00 (before)
                2024-10-19 10:00:00 (after)
09:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:46:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-19 09:00:00)
09:46:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 09:00:00) in space  (linearNDFast)
09:46:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:46:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:46:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.54410685320116 and -65.51769188138677 degrees.
09:46:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.54410685320116 and -65.51769188138677 degrees.
09:46:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:46:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:46:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:46:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:46:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:46:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:46:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:46:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:46:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:46:52 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:46:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.438071 (min) 0.49108 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.440015 (min) 0.446672 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.167403 (min) 0.167675 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.30898 (min) -3.252 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.2874 (min) 14.3084 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.12928e-05 (min) 8.18805e-05 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 309.401 (min) 320.243 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:46:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:46:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.281723, mean: 5.291834, max: 5.305739
09:46:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:46:52 DEBUG   opendrift.models.physics_methods:1061:    min: 12.520376, mean: 12.532354, max: 12.548810
09:46:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.520376, mean: 12.532354, max: 12.548810
09:46:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:46:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:46:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:46:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.293056 m/s - 0.293721 m/s)
09:46:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:46:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:46:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:46:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:46:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:46:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:46:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:46:52 INFO    opendrift.models.basemodel:2038: 2024-10-19 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
09:46:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:46:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:46:52 DEBUG   opendrift.models.basemodel:2057:               60.55328024553802 <- latitude  -> 60.56735665458294
09:46:52 DEBUG   opendrift.models.basemodel:2062:               4.480297311199116 <- longitude -> 4.510276343295599
09:46:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:46:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:46:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:46: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:46:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:46:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:46:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:46:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:46:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:46:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 10:00:00 (before)
                2024-10-19 11:00:00 (after)
09:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:47:08 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x23x7) for time before (2024-10-19 10:00:00)
09:47:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 10:00:00) in space  (linearNDFast)
09:47:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:47:08 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:47:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5197134367117 and -65.48973439612614 degrees.
09:47:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5197134367117 and -65.48973439612614 degrees.
09:47:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:47:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:47:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:47:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:47:08 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:47:08 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:47:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:08 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:47:08 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:47:08 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:47:08 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.483975 (min) 0.529701 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.287306 (min) 0.348585 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.392396 (min) 0.396271 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.66995 (min) -2.60274 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.2973 (min) 14.2561 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.07766e-05 (min) 4.1548e-05 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 322.881 (min) 334.841 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:47:08 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:47:08 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.516391, mean: 4.876809, max: 5.174993
09:47:08 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:47:08 DEBUG   opendrift.models.physics_methods:1061:    min: 11.577783, mean: 12.029761, max: 12.393228
09:47:08 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.577783, mean: 12.029761, max: 12.393228
09:47:08 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:47:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:08 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:47:08 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:47:08 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.270993 m/s - 0.290080 m/s)
09:47:08 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:47:08 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:47:08 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:47:08 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:47:08 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:47:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:08 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:47:08 INFO    opendrift.models.basemodel:2038: 2024-10-19 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
09:47:08 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:47:08 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:47:08 DEBUG   opendrift.models.basemodel:2057:               60.5737505825158 <- latitude  -> 60.585228192347394
09:47:08 DEBUG   opendrift.models.basemodel:2062:               4.511370785632019 <- longitude -> 4.538636234805122
09:47:08 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:47:08 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:47:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47: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:47:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:47:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:47:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 11:00:00 (before)
                2024-10-19 12:00:00 (after)
09:47:25 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:47:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:47:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:47:25 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:47:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:47:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:47:25 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-19 11:00:00)
09:47:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 11:00:00) in space  (linearNDFast)
09:47:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:47:25 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:47:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48863994814045 and -65.46137450381786 degrees.
09:47:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48863994814045 and -65.46137450381786 degrees.
09:47:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:25 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:47:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:47:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:47:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:47:25 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:47:25 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:47:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:25 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:47:25 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:47:25 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:47:25 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.307788 (min) 0.519545 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.18652 (min) 0.221556 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.44623 (min) 0.446887 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.338784 (min) -0.142871 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.9988 (min) 13.8659 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.41721e-05 (min) -1.38102e-05 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 336.853 (min) 343.513 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:47:25 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:47:25 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.159468, mean: 4.387535, max: 4.730182
09:47:25 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:47:25 DEBUG   opendrift.models.physics_methods:1061:    min: 11.110881, mean: 11.410591, max: 11.848641
09:47:25 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.110881, mean: 11.410591, max: 11.848641
09:47:25 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:47:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:25 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:47:25 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:47:25 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.260065 m/s - 0.277333 m/s)
09:47:25 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:47:25 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:47:25 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:47:25 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:47:25 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:47:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:25 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:47:25 INFO    opendrift.models.basemodel:2038: 2024-10-19 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
09:47:25 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:47:25 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:47:25 DEBUG   opendrift.models.basemodel:2057:               60.58986464078266 <- latitude  -> 60.60014460826761
09:47:25 DEBUG   opendrift.models.basemodel:2062:               4.545302000072942 <- longitude -> 4.558410484417
09:47:25 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:47:25 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:47:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47: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:47:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:47:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:47:25 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 12:00:00 (before)
                2024-10-19 13:00:00 (after)
09:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:47:42 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:47:42 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-19 12:00:00)
09:47:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 12:00:00) in space  (linearNDFast)
09:47:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:47:42 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:47:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4547087250078 and -65.44160023500552 degrees.
09:47:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4547087250078 and -65.44160023500552 degrees.
09:47:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:47:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:47:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:47:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:47:42 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:47:42 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:47:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:42 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:47:42 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:47:42 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:47:42 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.210409 (min) 0.342811 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.193017 (min) 0.243893 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.299594 (min) 0.300723 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.350475 (min) -0.235805 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.8785 (min) 13.9624 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.8091e-05 (min) -6.79188e-05 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 345.231 (min) 348.549 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:47:42 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:47:42 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.741292, mean: 4.777083, max: 4.797114
09:47:42 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:47:42 DEBUG   opendrift.models.physics_methods:1061:    min: 11.862546, mean: 11.907230, max: 11.932175
09:47:42 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.862546, mean: 11.907230, max: 11.932175
09:47:42 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:47:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:42 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:47:42 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:47:42 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.277658 m/s - 0.279288 m/s)
09:47:42 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:47:42 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:47:42 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:47:42 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:47:42 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:47:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:42 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:47:42 INFO    opendrift.models.basemodel:2038: 2024-10-19 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
09:47:42 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:47:42 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:47:42 DEBUG   opendrift.models.basemodel:2057:               60.605067148641545 <- latitude  -> 60.617046291582184
09:47:42 DEBUG   opendrift.models.basemodel:2062:               4.56731663890196 <- longitude -> 4.571929716795836
09:47:42 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:47:42 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:47:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47: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:47:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:47:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:47:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 13:00:00 (before)
                2024-10-19 14:00:00 (after)
09:47:59 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:47:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:47:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:47:59 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:47:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:47:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:47:59 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:47:59 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x7) for time before (2024-10-19 13:00:00)
09:47:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 13:00:00) in space  (linearNDFast)
09:47:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:47:59 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:47:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43269409153038 and -65.42808100794338 degrees.
09:47:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43269409153038 and -65.42808100794338 degrees.
09:47:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:47:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:47:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:47:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:47:59 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:47:59 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:47:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:47:59 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:47:59 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:47:59 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:47:59 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.119228 (min) 0.186071 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.210294 (min) 0.229104 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.000508057 (min) 0.00166186 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.16351 (min) -3.0368 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.4893 (min) 13.5473 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.93653e-05 (min) -9.92015e-05 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 349.799 (min) 352.869 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:47:59 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:47:59 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.719200, mean: 4.721422, max: 4.741710
09:47:59 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:47:59 DEBUG   opendrift.models.physics_methods:1061:    min: 11.834876, mean: 11.837663, max: 11.863069
09:47:59 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.834876, mean: 11.837663, max: 11.863069
09:47:59 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:47:59 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:59 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:47:59 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:47:59 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.277011 m/s - 0.277671 m/s)
09:47:59 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:47:59 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:47:59 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:47:59 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:47:59 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:47:59 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:47:59 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:47:59 INFO    opendrift.models.basemodel:2038: 2024-10-19 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
09:47:59 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:47:59 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:47:59 DEBUG   opendrift.models.basemodel:2057:               60.62057762713303 <- latitude  -> 60.63320231209319
09:47:59 DEBUG   opendrift.models.basemodel:2062:               4.575251296466246 <- longitude -> 4.576531213221915
09:47:59 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:47:59 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:47:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:47: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:47:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:47:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:47:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:47:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:47:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:47:59 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 14:00:00 (before)
                2024-10-19 15:00:00 (after)
09:48:14 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:48:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:14 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:48:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-19 14:00:00)
09:48:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 14:00:00) in space  (linearNDFast)
09:48:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42475941502076 and -65.42347948948155 degrees.
09:48:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42475941502076 and -65.42347948948155 degrees.
09:48:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:14 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:48:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.04761 (min) 0.0833333 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.23521 (min) 0.270227 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.380212 (min) -0.37967 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.44372 (min) -3.42161 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.5592 (min) 12.6351 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -0.000105581 (min) -0.000105394 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 353.218 (min) 355.234 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:14 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.168234, mean: 4.199178, max: 4.219010
09:48:14 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:14 DEBUG   opendrift.models.physics_methods:1061:    min: 11.122583, mean: 11.163785, max: 11.190123
09:48:14 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.122583, mean: 11.163785, max: 11.190123
09:48:14 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:14 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:14 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:14 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.260339 m/s - 0.261919 m/s)
09:48:14 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:14 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:14 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:14 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:14 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:14 INFO    opendrift.models.basemodel:2038: 2024-10-19 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
09:48:14 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:14 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:14 DEBUG   opendrift.models.basemodel:2057:               60.63629845403797 <- latitude  -> 60.6500976533912
09:48:14 DEBUG   opendrift.models.basemodel:2062:               4.574374773446247 <- longitude -> 4.576791471659818
09:48:14 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:14 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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:48:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:48:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:48:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 15:00:00 (before)
                2024-10-19 16:00:00 (after)
09:48:29 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:48:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:29 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:29 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:48:29 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-19 15:00:00)
09:48:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 15:00:00) in space  (linearNDFast)
09:48:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:29 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42563592773459 and -65.42321922994337 degrees.
09:48:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42563592773459 and -65.42321922994337 degrees.
09:48:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:29 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:29 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:29 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:29 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:29 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:29 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:48:29 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00402652 (min) 0.030604 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.306695 (min) 0.348868 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.712393 (min) -0.711322 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.52093 (min) -2.46236 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.1294 (min) 13.1508 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.35059e-05 (min) -7.34102e-05 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 355.212 (min) 355.832 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:29 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:29 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.389744, mean: 4.401955, max: 4.410728
09:48:29 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:29 DEBUG   opendrift.models.physics_methods:1061:    min: 11.414297, mean: 11.430161, max: 11.441547
09:48:29 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.414297, mean: 11.430161, max: 11.441547
09:48:29 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:29 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:29 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:29 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:29 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.267167 m/s - 0.267804 m/s)
09:48:29 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:29 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:29 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:29 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:29 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:29 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:29 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:29 INFO    opendrift.models.basemodel:2038: 2024-10-19 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
09:48:29 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:29 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:29 DEBUG   opendrift.models.basemodel:2057:               60.65470591229884 <- latitude  -> 60.66985328561506
09:48:29 DEBUG   opendrift.models.basemodel:2062:               4.570866669900512 <- longitude -> 4.575108649057141
09:48:29 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:29 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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:48:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:48:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:48:29 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 16:00:00 (before)
                2024-10-19 17:00:00 (after)
09:48:46 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:48:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:48:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:48:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:48:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:48:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:48:46 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:48:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-19 16:00:00)
09:48:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 16:00:00) in space  (linearNDFast)
09:48:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:48:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:48:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42914402030618 and -65.42490204969158 degrees.
09:48:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42914402030618 and -65.42490204969158 degrees.
09:48:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:48:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:48:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:48:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:48:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:48:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:48:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:48:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:48:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:46 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:48:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.076303 (min) -0.023667 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.407377 (min) 0.463475 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.904384 (min) -0.902911 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.24289 (min) -3.20998 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.1226 (min) 13.1807 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.9425e-05 (min) -2.90472e-05 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 350.078 (min) 353.826 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:48:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:48:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.489914, mean: 4.506879, max: 4.532456
09:48:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:48:46 DEBUG   opendrift.models.physics_methods:1061:    min: 11.543795, mean: 11.565577, max: 11.598354
09:48:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.543795, mean: 11.565577, max: 11.598354
09:48:46 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:48:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:46 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:48:46 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:48:46 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.270198 m/s - 0.271475 m/s)
09:48:46 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:48:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:48:46 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:48:46 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:48:46 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:48:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:48:46 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:48:46 INFO    opendrift.models.basemodel:2038: 2024-10-19 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
09:48:46 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:48:46 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:48:46 DEBUG   opendrift.models.basemodel:2057:               60.67638007771842 <- latitude  -> 60.69334467509892
09:48:46 DEBUG   opendrift.models.basemodel:2062:               4.561565522235628 <- longitude -> 4.569319632591028
09:48:46 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:48:46 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:48:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:48: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:48:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:48:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:48:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:48:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:48:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 17:00:00 (before)
                2024-10-19 18:00:00 (after)
09:48:58 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity 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 sea_floor_depth_below_sea_level 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.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:48:58 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-19 17:00:00)
09:48:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 17: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.43844516403269 and -65.43069105912664 degrees.
09:48:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43844516403269 and -65.43069105912664 degrees.
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 ['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:777: ---------------------------------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:48:58 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 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.112991 (min) -0.084581 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.561583 (min) 0.615633 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.925737 (min) -0.924656 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.29218 (min) -3.19185 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.5787 (min) 12.6986 (max)
09:48:58 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.76438e-05 (min) 1.79266e-05 (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: 340.693 (min) 347.129 (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: 4.142952, mean: 4.179364, max: 4.233459
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: 11.088799, mean: 11.137390, max: 11.209268
09:48:58 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.088799, mean: 11.137390, max: 11.209268
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.259548 m/s - 0.262368 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-10-19 18:00:00 - step 43 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:               60.70268344006918 <- latitude  -> 60.72126548233103
09:48:58 DEBUG   opendrift.models.basemodel:2062:               4.549786094108733 <- longitude -> 4.559537470976072
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 ['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:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:48:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
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 NorKyst manual aggregate covering 1000 elements
09:48:58 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 18:00:00 (before)
                2024-10-19 19:00:00 (after)
09:49:12 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity 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 sea_floor_depth_below_sea_level 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.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:49:12 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x7) for time before (2024-10-19 18:00:00)
09:49:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 18: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.45022459407542 and -65.44047322691458 degrees.
09:49:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45022459407542 and -65.44047322691458 degrees.
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 ['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:777: ---------------------------------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:12 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 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.129396 (min) -0.124057 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.709593 (min) 0.735627 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.787111 (min) -0.783215 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.65194 (min) -2.62168 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.9573 (min) 13.0044 (max)
09:49:12 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.7128e-05 (min) 5.94455e-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: 330.198 (min) 334.952 (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: 4.303126, mean: 4.315073, max: 4.329266
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: 11.301124, mean: 11.316797, max: 11.335396
09:49:12 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.301124, mean: 11.316797, max: 11.335396
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.264518 m/s - 0.265320 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-10-19 19:00:00 - step 44 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.73406658340819 <- latitude  -> 60.753226452829
09:49:12 DEBUG   opendrift.models.basemodel:2062:               4.537932072169698 <- longitude -> 4.54750203771892
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 ['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:49:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
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 NorKyst manual aggregate covering 1000 elements
09:49:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 19:00:00 (before)
                2024-10-19 20:00:00 (after)
09:49:24 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity 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 sea_floor_depth_below_sea_level 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.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:49:24 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x7) for time before (2024-10-19 19:00:00)
09:49:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 19: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.46207859566529 and -65.45250863891305 degrees.
09:49:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46207859566529 and -65.45250863891305 degrees.
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 ['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:777: ---------------------------------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:24 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 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.129147 (min) -0.105575 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.770618 (min) 0.860754 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.530683 (min) -0.529813 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.73334 (min) -1.71643 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.4871 (min) 12.4983 (max)
09:49:24 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.35874e-05 (min) 8.511e-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: 319.298 (min) 323.399 (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: 3.909271, mean: 3.912451, max: 3.915184
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: 10.771531, mean: 10.775912, max: 10.779674
09:49:24 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.771531, mean: 10.775912, max: 10.779674
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.252122 m/s - 0.252312 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-10-19 20:00:00 - step 45 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.769921272241035 <- latitude  -> 60.786199909088275
09:49:24 DEBUG   opendrift.models.basemodel:2062:               4.528057674854698 <- longitude -> 4.53668432358306
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 ['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:49:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
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 NorKyst manual aggregate covering 1000 elements
09:49:24 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 20:00:00 (before)
                2024-10-19 21:00:00 (after)
09:49:36 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity 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 sea_floor_depth_below_sea_level 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.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:49:36 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x7) for time before (2024-10-19 20:00:00)
09:49:36 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 20: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.47195299274824 and -65.4633263458238 degrees.
09:49:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47195299274824 and -65.4633263458238 degrees.
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 ['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:777: ---------------------------------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:36 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 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.1358 (min) -0.0926667 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.733248 (min) 0.853339 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.194693 (min) -0.193387 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.53501 (min) -1.48518 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.5808 (min) 11.6573 (max)
09:49:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.819e-05 (min) 9.89589e-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: 308.082 (min) 311.075 (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: 3.355831, mean: 3.369361, max: 3.397408
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: 9.979979, mean: 10.000068, max: 10.041612
09:49:36 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.979979, mean: 10.000068, max: 10.041612
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.233594 m/s - 0.235037 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-10-19 21:00:00 - step 46 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.80490474980145 <- latitude  -> 60.817422296967486
09:49:36 DEBUG   opendrift.models.basemodel:2062:               4.517107215967865 <- longitude -> 4.528325424197187
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 ['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:49:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
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 NorKyst manual aggregate covering 1000 elements
09:49:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 21:00:00 (before)
                2024-10-19 22:00:00 (after)
09:49:47 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity 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 sea_floor_depth_below_sea_level 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 :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:49:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-19 21:00:00)
09:49:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 21: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.48290342682853 and -65.4716852280792 degrees.
09:49:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48290342682853 and -65.4716852280792 degrees.
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 ['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:777: ---------------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:49:47 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 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.137329 (min) -0.0845581 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.680266 (min) 0.779773 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.148738 (min) 0.15064 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.357263 (min) -0.285439 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.7727 (min) 12.8197 (max)
09:49:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.9409e-05 (min) 8.98355e-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: 296.802 (min) 305.363 (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: 4.016419, mean: 4.029781, max: 4.044891
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: 10.918151, mean: 10.936295, max: 10.956782
09:49:47 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.918151, mean: 10.936295, max: 10.956782
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.255554 m/s - 0.256458 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-10-19 22:00:00 - step 47 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.83830439751951 <- latitude  -> 60.84768391885477
09:49:47 DEBUG   opendrift.models.basemodel:2062:               4.507638003162735 <- longitude -> 4.52225626135379
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 ['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:49:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:49:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
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 NorKyst manual aggregate covering 1000 elements
09:49:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 22:00:00 (before)
                2024-10-19 23:00:00 (after)
09:50:03 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:50:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:50:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:50:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:50:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:50:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:50:03 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:50:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x24x7) for time before (2024-10-19 22:00:00)
09:50:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 22:00:00) in space  (linearNDFast)
09:50:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:50:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:50:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49237264443934 and -65.4777543843959 degrees.
09:50:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49237264443934 and -65.4777543843959 degrees.
09:50:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:50:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:50:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:50:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:50:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:50:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:50:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:50:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:50:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:50:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:50:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:50:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:50:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:50:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:50:03 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:50:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.126866 (min) -0.0851057 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.551716 (min) 0.582565 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.428517 (min) 0.430243 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.10274 (min) 2.52489 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.5758 (min) 10.9935 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.73665e-05 (min) 5.75696e-05 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 284.414 (min) 293.495 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:50:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:50:03 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.908285, mean: 3.011859, max: 3.081838
09:50:03 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:50:03 DEBUG   opendrift.models.physics_methods:1061:    min: 9.290692, mean: 9.454502, max: 9.563888
09:50:03 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.290692, mean: 9.454502, max: 9.563888
09:50:03 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:50:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:50:03 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:50:03 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:50:03 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.217461 m/s - 0.223855 m/s)
09:50:03 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:50:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:50:03 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:50:03 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:50:03 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:50:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:50:03 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:50:03 INFO    opendrift.models.basemodel:2038: 2024-10-19 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
09:50:03 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:50:03 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:50:03 DEBUG   opendrift.models.basemodel:2057:               60.86421463658271 <- latitude  -> 60.87299996069447
09:50:03 DEBUG   opendrift.models.basemodel:2062:               4.502998469536449 <- longitude -> 4.51940530435488
09:50:03 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:50:03 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:50:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:50: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:50:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:50:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:50:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:50:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:50:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:50:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 23:00:00 (before)
                2024-10-20 00:00:00 (after)
09:50:18 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:50:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:50:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:50:18 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:50:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:50:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:50:18 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:50:18 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x7) for time before (2024-10-19 23:00:00)
09:50:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 23:00:00) in space  (linearNDFast)
09:50:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:50:18 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:50:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49701217347736 and -65.48060532735265 degrees.
09:50:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49701217347736 and -65.48060532735265 degrees.
09:50:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:50:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:50:18 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:50:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:50:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:50:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:50:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:50:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:50:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:50:18 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:50:18 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:50:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:50:18 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:50:18 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:50:18 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:50:18 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.245809 (min) -0.0812762 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.236152 (min) 0.300791 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.543375 (min) 0.545741 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.19886 (min) 6.25674 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.15071 (min) 1.16076 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.59286e-05 (min) -1.16416e-05 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0.00434723 (min) 0.00624844 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 258.211 (min) 264.053 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:50:18 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:50:18 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.977999, mean: 0.986838, max: 0.995604
09:50:18 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:50:18 DEBUG   opendrift.models.physics_methods:1061:    min: 5.387642, mean: 5.411925, max: 5.435918
09:50:18 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.387642, mean: 5.411925, max: 5.435918
09:50:18 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:50:18 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:50:18 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:50:18 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:50:18 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.126105 m/s - 0.127235 m/s)
09:50:18 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:50:18 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:50:18 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:50:18 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:50:18 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:50:18 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:50:18 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:50:18 INFO    opendrift.models.basemodel:2038: 2024-10-20 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
09:50:18 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:50:18 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:50:18 DEBUG   opendrift.models.basemodel:2057:               60.87467717610155 <- latitude  -> 60.881539934175024
09:50:18 DEBUG   opendrift.models.basemodel:2062:               4.49499963370939 <- longitude -> 4.5221539838726885
09:50:18 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:50:18 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:50:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:50:18 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:50:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:50:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:50:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:50:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:50:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:50:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 00:00:00 (before)
                2024-10-20 01:00:00 (after)
09:50:35 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:50:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:50:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:50:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:50:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:50:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:50:35 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:50:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x24x7) for time before (2024-10-20 00:00:00)
09:50:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 00:00:00) in space  (linearNDFast)
09:50:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:50:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:50:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5050109911236 and -65.47785664476926 degrees.
09:50:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5050109911236 and -65.47785664476926 degrees.
09:50:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:50:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:50:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:50:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:50:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:50:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:50:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:50:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:50:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:50:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:50:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:50:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:50:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:50:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:50:35 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:50:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.453949 (min) -0.251982 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0327051 (min) 0.107393 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.449757 (min) 0.452352 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.16246 (min) 4.36336 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -0.810997 (min) -0.700748 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.50461e-06 (min) -1.83398e-07 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 242.399 (min) 260.881 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:50:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:50:35 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.438300, mean: 0.461318, max: 0.484537
09:50:35 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:50:35 DEBUG   opendrift.models.physics_methods:1061:    min: 3.606745, mean: 3.700047, max: 3.792216
09:50:35 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.606745, mean: 3.700047, max: 3.792216
09:50:35 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:50:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:50:35 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:50:35 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:50:35 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.084421 m/s - 0.088762 m/s)
09:50:35 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:50:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:50:35 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:50:35 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:50:35 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:50:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:50:35 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:50:35 INFO    opendrift.models.basemodel:2038: 2024-10-20 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
09:50:35 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:50:35 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:50:35 DEBUG   opendrift.models.basemodel:2057:               60.875795300122725 <- latitude  -> 60.88455333883783
09:50:35 DEBUG   opendrift.models.basemodel:2062:               4.47042410377603 <- longitude -> 4.511206614343822
09:50:35 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:50:35 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:50:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:50: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:50:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:50:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:50:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:50:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:50:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:50:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 01:00:00 (before)
                2024-10-20 02:00:00 (after)
09:50:52 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:50:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:50:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:50:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:50:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:50:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:50:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x25x7) for time before (2024-10-20 01:00:00)
09:50:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 01:00:00) in space  (linearNDFast)
09:50:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:50:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:50:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5295865317426 and -65.48880402201397 degrees.
09:50:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5295865317426 and -65.48880402201397 degrees.
09:50:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:50:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:50:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:50:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:50:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:50:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:50:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:50:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:50:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:50:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:50:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:50:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:50:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:50:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:50:52 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:50:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.483881 (min) -0.333497 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0135014 (min) 0.0508197 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.172596 (min) 0.179379 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.15892 (min) 1.44572 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -0.0416397 (min) 0.231257 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.83433e-05 (min) -9.41972e-05 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 252.567 (min) 275.655 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:50:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:50:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.034356, mean: 0.041382, max: 0.051459
09:50:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:50:52 DEBUG   opendrift.models.physics_methods:1061:    min: 1.009788, mean: 1.107263, max: 1.235835
09:50:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.009788, mean: 1.107263, max: 1.235835
09:50:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:50:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:50:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:50:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:50:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.023635 m/s - 0.028926 m/s)
09:50:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:50:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:50:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:50:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:50:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:50:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:50:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:50:52 INFO    opendrift.models.basemodel:2038: 2024-10-20 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
09:50:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:50:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:50:52 DEBUG   opendrift.models.basemodel:2057:               60.87583942541501 <- latitude  -> 60.88634082334466
09:50:52 DEBUG   opendrift.models.basemodel:2062:               4.439880841580655 <- longitude -> 4.491014704151191
09:50:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:50:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:50:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:50: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:50:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:50:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:50:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:50:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:50:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:50:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 02:00:00 (before)
                2024-10-20 03:00:00 (after)
09:51:03 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:51:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:51:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:51:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:51:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:51:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:51:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x26x7) for time before (2024-10-20 02:00:00)
09:51:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 02:00:00) in space  (linearNDFast)
09:51:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:51:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:51:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56012979830402 and -65.50899592253268 degrees.
09:51:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56012979830402 and -65.50899592253268 degrees.
09:51:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:51:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:51:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:51:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:51:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:51:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:51:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:51:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:51:03 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:51:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.510839 (min) -0.382901 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0387898 (min) 0.076445 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.208077 (min) -0.196329 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.978614 (min) -0.848577 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.00064 (min) 2.23807 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -0.000105633 (min) -0.000104217 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 270.602 (min) 296.962 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:51:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:51:03 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.119793, mean: 0.132423, max: 0.140934
09:51:03 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:51:03 DEBUG   opendrift.models.physics_methods:1061:    min: 1.885580, mean: 1.982333, max: 2.045208
09:51:03 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.885580, mean: 1.982333, max: 2.045208
09:51:03 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:51:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:03 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:51:03 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:51:03 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.044134 m/s - 0.047871 m/s)
09:51:03 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:51:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:51:03 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:51:03 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:51:03 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:51:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:03 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:51:03 INFO    opendrift.models.basemodel:2038: 2024-10-20 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
09:51:03 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:51:03 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:51:03 DEBUG   opendrift.models.basemodel:2057:               60.87921129852343 <- latitude  -> 60.889392981454904
09:51:03 DEBUG   opendrift.models.basemodel:2062:               4.406980521950972 <- longitude -> 4.463176170735934
09:51:03 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:51:03 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:51:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51: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:51:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:51:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:51:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 03:00:00 (before)
                2024-10-20 04:00:00 (after)
09:51:15 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:51:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:51:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:51:15 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:51:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:51:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:51:15 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x26x7) for time before (2024-10-20 03:00:00)
09:51:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 03:00:00) in space  (linearNDFast)
09:51:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:51:15 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:51:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59303011403988 and -65.53683445546662 degrees.
09:51:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59303011403988 and -65.53683445546662 degrees.
09:51:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:51:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:51:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:51:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:51:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:51:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:51:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:51:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:51:15 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:51:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.403936 (min) -0.307951 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.12776 (min) 0.241182 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.571561 (min) -0.561643 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.175213 (min) 0.331915 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.17903 (min) 2.48943 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -8.95833e-05 (min) -8.7778e-05 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 287.391 (min) 329.738 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:51:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:51:15 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.119515, mean: 0.134611, max: 0.153208
09:51:15 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:51:15 DEBUG   opendrift.models.physics_methods:1061:    min: 1.883394, mean: 1.998026, max: 2.132408
09:51:15 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.883394, mean: 1.998026, max: 2.132408
09:51:15 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:51:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:15 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:51:15 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:51:15 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.044083 m/s - 0.049912 m/s)
09:51:15 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:51:15 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:51:15 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:51:15 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:51:15 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:51:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:15 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:51:15 INFO    opendrift.models.basemodel:2038: 2024-10-20 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
09:51:15 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:51:15 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:51:15 DEBUG   opendrift.models.basemodel:2057:               60.8866430158444 <- latitude  -> 60.895685223627645
09:51:15 DEBUG   opendrift.models.basemodel:2062:               4.38541193326071 <- longitude -> 4.436835271522888
09:51:15 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:51:15 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:51:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51: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:51:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:51:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:51:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 04:00:00 (before)
                2024-10-20 05:00:00 (after)
09:51:26 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:51:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:51:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:51:26 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:51:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:51:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:51:26 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x26x7) for time before (2024-10-20 04:00:00)
09:51:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 04:00:00) in space  (linearNDFast)
09:51:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:51:26 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:51:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61459869979292 and -65.5631753688545 degrees.
09:51:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61459869979292 and -65.5631753688545 degrees.
09:51:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:51:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:51:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:51:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:51:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:51:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:51:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:51:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:51:26 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:51:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.450295 (min) -0.3542 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.246619 (min) 0.360858 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.845232 (min) -0.832208 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.37721 (min) 1.43045 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.22168 (min) 2.86418 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.47614e-05 (min) -5.41137e-05 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.47 (min) 350.565 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:51:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:51:26 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.168082, mean: 0.205048, max: 0.249545
09:51:26 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:51:26 DEBUG   opendrift.models.physics_methods:1061:    min: 2.233520, mean: 2.464542, max: 2.721471
09:51:26 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.233520, mean: 2.464542, max: 2.721471
09:51:26 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:51:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:26 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:51:26 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:51:26 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.052278 m/s - 0.063700 m/s)
09:51:26 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:51:26 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:51:26 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:51:26 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:51:26 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:51:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:26 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:51:26 INFO    opendrift.models.basemodel:2038: 2024-10-20 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
09:51:26 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:51:26 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:51:26 DEBUG   opendrift.models.basemodel:2057:               60.89699580916877 <- latitude  -> 60.907546977291204
09:51:26 DEBUG   opendrift.models.basemodel:2062:               4.360851436580295 <- longitude -> 4.408908682818272
09:51:26 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:51:26 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:51:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51: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:51:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:51:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:51:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 05:00:00 (before)
                2024-10-20 06:00:00 (after)
09:51:37 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:51:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:51:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:51:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:51:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:51:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:51:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x7) for time before (2024-10-20 05:00:00)
09:51:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 05:00:00) in space  (linearNDFast)
09:51:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:51:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:51:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.63915920015629 and -65.59110194915027 degrees.
09:51:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.63915920015629 and -65.59110194915027 degrees.
09:51:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:51:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:51:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:51:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:51:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:51:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:51:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:51:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:51:37 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:51:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.406859 (min) -0.346437 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.431921 (min) 0.540197 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.951847 (min) -0.942307 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.52231 (min) 1.61197 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.26839 (min) 3.38574 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.63764e-06 (min) -1.96074e-06 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 306.425 (min) 369.387 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:51:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:51:37 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.319796, mean: 0.330695, max: 0.345917
09:51:37 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:51:37 DEBUG   opendrift.models.physics_methods:1061:    min: 3.080817, mean: 3.132781, max: 3.204171
09:51:37 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.080817, mean: 3.132781, max: 3.204171
09:51:37 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:51:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:37 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:51:37 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:51:37 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.072111 m/s - 0.074998 m/s)
09:51:37 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:51:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:51:37 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:51:37 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:51:37 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:51:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:37 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:51:37 INFO    opendrift.models.basemodel:2038: 2024-10-20 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
09:51:37 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:51:37 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:51:37 DEBUG   opendrift.models.basemodel:2057:               60.91313938856742 <- latitude  -> 60.92623793061317
09:51:37 DEBUG   opendrift.models.basemodel:2062:               4.33999648855155 <- longitude -> 4.383927590448379
09:51:37 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:51:37 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:51:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51: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:51:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:51:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:51:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 06:00:00 (before)
                2024-10-20 07:00:00 (after)
09:51:50 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:51:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:51:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:51:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:51:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:51:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:51:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x7) for time before (2024-10-20 06:00:00)
09:51:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 06:00:00) in space  (linearNDFast)
09:51:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:51:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:51:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.66001413773571 and -65.61608304313837 degrees.
09:51:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.66001413773571 and -65.61608304313837 degrees.
09:51:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:51:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:51:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:51:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:51:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:51:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:51:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:51:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:51:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:51:50 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:51:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.404472 (min) -0.175361 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.545258 (min) 0.665508 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.887644 (min) -0.876614 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.0347208 (min) 0.147602 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.58194 (min) 3.92718 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.07979e-05 (min) 4.18238e-05 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.62 (min) 374.529 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:51:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:51:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.316161, mean: 0.334608, max: 0.379429
09:51:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:51:50 DEBUG   opendrift.models.physics_methods:1061:    min: 3.063260, mean: 3.150731, max: 3.355791
09:51:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.063260, mean: 3.150731, max: 3.355791
09:51:50 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:51:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:50 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:51:50 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:51:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.071700 m/s - 0.078547 m/s)
09:51:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:51:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:51:50 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:51:50 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:51:50 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:51:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:51:50 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:51:50 INFO    opendrift.models.basemodel:2038: 2024-10-20 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
09:51:50 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:51:50 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:51:50 DEBUG   opendrift.models.basemodel:2057:               60.93557786937041 <- latitude  -> 60.950276103781334
09:51:50 DEBUG   opendrift.models.basemodel:2062:               4.32793948368754 <- longitude -> 4.360751812733447
09:51:50 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:51:50 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:51:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:51:50 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:51:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:51:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:51:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:51:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:51:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:51:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 07:00:00 (before)
                2024-10-20 08:00:00 (after)
09:52:06 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:52:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:52:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:52:06 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:52:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:52:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:52:06 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x7) for time before (2024-10-20 07:00:00)
09:52:06 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 07:00:00) in space  (linearNDFast)
09:52:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:52:06 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:52:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.67207114346431 and -65.63925881428597 degrees.
09:52:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.67207114346431 and -65.63925881428597 degrees.
09:52:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:52:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:52:06 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:52:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:52:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:52:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:52:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:52:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:52:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:52:06 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:52:06 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:52:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:52:06 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:52:06 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:52:06 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:52:06 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.308044 (min) -0.0794155 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.62026 (min) 0.651326 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.659941 (min) -0.650924 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.48311 (min) -1.41472 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.98133 (min) 4.18491 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.9204e-05 (min) 7.96706e-05 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 327.165 (min) 368.055 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:52:06 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:52:06 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.443977, mean: 0.454312, max: 0.480067
09:52:06 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:52:06 DEBUG   opendrift.models.physics_methods:1061:    min: 3.630027, mean: 3.671884, max: 3.774683
09:52:06 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.630027, mean: 3.671884, max: 3.774683
09:52:06 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:52:06 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:52:06 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:52:06 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:52:06 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.084966 m/s - 0.088351 m/s)
09:52:06 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:52:06 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:52:06 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:52:06 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:52:06 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:52:06 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:52:06 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:52:06 INFO    opendrift.models.basemodel:2038: 2024-10-20 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
09:52:06 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:52:06 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:52:06 DEBUG   opendrift.models.basemodel:2057:               60.95875963236096 <- latitude  -> 60.97399357185199
09:52:06 DEBUG   opendrift.models.basemodel:2062:               4.31683528899153 <- longitude -> 4.342653993564325
09:52:06 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:52:06 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:52:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:52:06 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:52:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:52:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:52:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:52:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:52:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:52:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 08:00:00 (before)
                2024-10-20 09:00:00 (after)
09:52:22 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:52:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:52:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:52:22 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:52:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:52:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:52:22 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:52:22 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x7) for time before (2024-10-20 08:00:00)
09:52:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 08:00:00) in space  (linearNDFast)
09:52:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:52:22 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:52:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.68317533433553 and -65.65735663310372 degrees.
09:52:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.68317533433553 and -65.65735663310372 degrees.
09:52:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:52:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:52:22 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:52:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:52:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:52:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:52:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:52:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:52:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:52:22 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:52:22 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:52:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:52:22 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:52:22 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:52:22 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:52:22 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.230926 (min) -0.117549 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.651847 (min) 0.705333 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.332881 (min) -0.329263 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.20035 (min) -2.97952 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.60308 (min) 4.76092 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.90605e-05 (min) 9.97345e-05 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 337.438 (min) 366.013 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:52:22 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:52:22 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.770296, mean: 0.771870, max: 0.776309
09:52:22 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:52:22 DEBUG   opendrift.models.physics_methods:1061:    min: 4.781435, mean: 4.786316, max: 4.800063
09:52:22 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.781435, mean: 4.786316, max: 4.800063
09:52:22 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:52:22 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:52:22 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:52:22 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:52:22 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.111916 m/s - 0.112352 m/s)
09:52:22 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:52:22 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:52:22 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:52:22 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:52:22 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:52:22 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:52:22 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:52:22 INFO    opendrift.models.basemodel:2038: 2024-10-20 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
09:52:22 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:52:22 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:52:22 DEBUG   opendrift.models.basemodel:2057:               60.98319340913032 <- latitude  -> 60.99985658848868
09:52:22 DEBUG   opendrift.models.basemodel:2062:               4.29811054476869 <- longitude -> 4.328787595536495
09:52:22 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:52:22 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:52:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:52:22 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:52:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:52:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:52:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:52:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:52:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:52:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 09:00:00 (before)
                2024-10-20 10:00:00 (after)
09:52:38 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:52:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:52:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:52:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:52:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:52:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:52:38 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:52:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x7) for time before (2024-10-20 09:00:00)
09:52:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 09:00:00) in space  (linearNDFast)
09:52:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:52:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:52:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7019000624532 and -65.67122301993622 degrees.
09:52:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7019000624532 and -65.67122301993622 degrees.
09:52:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:52:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:52:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:52:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:52:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:52:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:52:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:52:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:52:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:52:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:52:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:52:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:52:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:52:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:52:38 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:52:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.219388 (min) -0.156162 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.650755 (min) 0.711319 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0423466 (min) 0.0447731 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.79225 (min) -2.74944 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.33045 (min) 5.56549 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 0.000103874 (min) 0.000104807 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 342.776 (min) 373.157 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:52:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:52:38 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.884976, mean: 0.896024, max: 0.953774
09:52:38 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:52:38 DEBUG   opendrift.models.physics_methods:1061:    min: 5.125018, mean: 5.156784, max: 5.320499
09:52:38 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.125018, mean: 5.156784, max: 5.320499
09:52:38 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:52:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:52:38 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:52:38 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:52:38 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.119958 m/s - 0.124533 m/s)
09:52:38 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:52:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:52:38 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:52:38 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:52:38 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:52:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:52:38 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:52:38 INFO    opendrift.models.basemodel:2038: 2024-10-20 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
09:52:38 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:52:38 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:52:38 DEBUG   opendrift.models.basemodel:2057:               61.00781198763809 <- latitude  -> 61.026432787922374
09:52:38 DEBUG   opendrift.models.basemodel:2062:               4.279784557394001 <- longitude -> 4.3138730297455306
09:52:38 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:52:38 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:52:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:52: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:52:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:52:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:52:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:52:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:52:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:52:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 10:00:00 (before)
                2024-10-20 11:00:00 (after)
09:52:50 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:52:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:52:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:52:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:52:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:52:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:52:50 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['ocean_vertical_diffusivity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'x_sea_water_velocity']
09:52:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x7) for time before (2024-10-20 10:00:00)
09:52:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 10:00:00) in space  (linearNDFast)
09:52:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:52:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:52:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7202260306133 and -65.68613757612022 degrees.
09:52:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7202260306133 and -65.68613757612022 degrees.
09:52:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:52:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:52:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:52:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:52:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:52:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:52:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:52:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:52:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:52:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:52:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:52:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:52:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:52:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:52:50 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:52:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.23047 (min) -0.194279 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.591629 (min) 0.685961 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.364272 (min) 0.366688 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.55218 (min) -1.2674 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.87143 (min) 6.13081 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.33636e-05 (min) 7.38654e-05 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 352.052 (min) 379.785 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:52:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:52:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.907320, mean: 0.916589, max: 0.964150
09:52:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:52:50 DEBUG   opendrift.models.physics_methods:1061:    min: 5.189313, mean: 5.215668, max: 5.349361
09:52:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.189313, mean: 5.215668, max: 5.349361
09:52:50 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:52:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:52:50 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:52:50 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:52:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.121463 m/s - 0.125209 m/s)
09:52:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:52:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:52:50 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:52:50 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:52:50 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:52:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:52:50 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:52:50 INFO    opendrift.models.basemodel:2038: 2024-10-20 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
09:52:50 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:52:50 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:52:50 DEBUG   opendrift.models.basemodel:2057:               61.03074221405009 <- latitude  -> 61.05255512368008
09:52:50 DEBUG   opendrift.models.basemodel:2062:               4.265149240964735 <- longitude -> 4.297880182119736
09:52:50 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:52:50 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:52:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:52:50 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:52:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:52:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:52:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:52:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:52:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:52:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 11:00:00 (before)
                2024-10-20 12:00:00 (after)
09:53:04 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:53:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:53:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:53:04 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:53:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:53:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:53:04 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x7) for time before (2024-10-20 11:00:00)
09:53:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 11:00:00) in space  (linearNDFast)
09:53:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:53:04 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:53:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73486135642986 and -65.70213041860964 degrees.
09:53:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73486135642986 and -65.70213041860964 degrees.
09:53:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:53:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:53:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:53:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:53:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:53:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:53:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:53:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:53:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:53:04 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:53:04 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:53:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:53:04 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:53:04 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:53:04 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:53:04 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.208124 (min) -0.124967 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.563449 (min) 0.666418 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.543479 (min) 0.546801 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.82881 (min) -1.68153 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.13367 (min) 8.22795 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.48744e-05 (min) 2.63035e-05 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 366.478 (min) 382.734 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:53:04 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:53:04 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.709727, mean: 1.732884, max: 1.735281
09:53:04 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:53:04 DEBUG   opendrift.models.physics_methods:1061:    min: 7.123492, mean: 7.171568, max: 7.176530
09:53:04 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.123492, mean: 7.171568, max: 7.176530
09:53:04 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:53:04 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:53:04 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:53:04 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:53:04 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.166735 m/s - 0.167976 m/s)
09:53:04 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:53:04 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:53:04 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:53:04 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:53:04 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:53:04 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:53:04 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:53:04 INFO    opendrift.models.basemodel:2038: 2024-10-20 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
09:53:04 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:53:04 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:53:04 DEBUG   opendrift.models.basemodel:2057:               61.0542594419841 <- latitude  -> 61.079340477245026
09:53:04 DEBUG   opendrift.models.basemodel:2062:               4.254375562489048 <- longitude -> 4.281811086617739
09:53:04 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:53:04 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:53:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:53: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:53:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:53:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:53:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:53:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:53:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:53:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 12:00:00 (before)
                2024-10-20 13:00:00 (after)
09:53:16 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:53:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:53:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:53:16 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:53:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:53:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:53:16 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x25x7) for time before (2024-10-20 12:00:00)
09:53:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 12:00:00) in space  (linearNDFast)
09:53:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:53:16 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:53:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74563502258992 and -65.71819950443899 degrees.
09:53:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74563502258992 and -65.71819950443899 degrees.
09:53:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:53:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:53:16 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:53:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:53:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:53:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:53:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:53:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:53:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:53:16 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:53:16 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:53:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:53:16 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:53:16 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:53:16 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:53:16 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.179972 (min) -0.0495821 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.545324 (min) 0.596846 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.536254 (min) 0.542614 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.68309 (min) -1.6013 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.0045 (min) 10.0177 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.13275e-05 (min) -3.05477e-05 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 373.344 (min) 380.647 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:53:16 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:53:16 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.526014, mean: 2.527514, max: 2.538410
09:53:16 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:53:16 DEBUG   opendrift.models.physics_methods:1061:    min: 8.658596, mean: 8.661165, max: 8.679816
09:53:16 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.658596, mean: 8.661165, max: 8.679816
09:53:16 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:53:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:53:16 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:53:16 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:53:16 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.202666 m/s - 0.203162 m/s)
09:53:16 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:53:16 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:53:16 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:53:16 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:53:16 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:53:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:53:16 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:53:16 INFO    opendrift.models.basemodel:2038: 2024-10-20 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
09:53:16 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:53:16 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:53:16 DEBUG   opendrift.models.basemodel:2057:               61.07834269747302 <- latitude  -> 61.10506419873968
09:53:16 DEBUG   opendrift.models.basemodel:2062:               4.2488193083222825 <- longitude -> 4.2676735741671745
09:53:16 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:53:16 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:53:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:53: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:53:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:53:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:53:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:53:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:53:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:53:16 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 13:00:00 (before)
                2024-10-20 14:00:00 (after)
09:53:29 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:53:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:53:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:53:29 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:53:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:53:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:53:29 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x7) for time before (2024-10-20 13:00:00)
09:53:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 13:00:00) in space  (linearNDFast)
09:53:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:53:29 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:53:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7511912655752 and -65.73233701404719 degrees.
09:53:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7511912655752 and -65.73233701404719 degrees.
09:53:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:53:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:53:29 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:53:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:53:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:53:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:53:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:53:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:53:29 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:53:29 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:53:29 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:53:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:53:29 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:53:29 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:53:29 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:53:29 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.150147 (min) -0.0387108 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.528108 (min) 0.55237 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.337398 (min) 0.341771 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.74673 (min) -2.73217 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.2389 (min) 12.2614 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.85566e-05 (min) -7.77725e-05 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 348.429 (min) 373.097 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:53:29 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:53:29 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.868515, mean: 3.879291, max: 3.882221
09:53:29 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:53:29 DEBUG   opendrift.models.physics_methods:1061:    min: 10.715236, mean: 10.730149, max: 10.734199
09:53:29 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.715236, mean: 10.730149, max: 10.734199
09:53:29 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:53:29 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:53:29 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:53:29 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:53:29 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.250804 m/s - 0.251248 m/s)
09:53:29 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:53:29 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:53:29 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:53:29 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:53:29 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:53:29 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:53:29 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:53:29 INFO    opendrift.models.basemodel:2038: 2024-10-20 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
09:53:29 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:53:29 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:53:29 DEBUG   opendrift.models.basemodel:2057:               61.103349570092334 <- latitude  -> 61.13005334745513
09:53:29 DEBUG   opendrift.models.basemodel:2062:               4.242563412801997 <- longitude -> 4.254004546038899
09:53:29 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:53:29 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:53:29 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:53: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:53:29 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:53:29 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:53:29 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:53:29 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:53:29 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:53:29 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 14:00:00 (before)
                2024-10-20 15:00:00 (after)
09:53:45 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:53:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:53:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:53:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:53:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:53:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:53:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x7) for time before (2024-10-20 14:00:00)
09:53:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 14:00:00) in space  (linearNDFast)
09:53:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:53:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:53:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75744716804142 and -65.74600603084473 degrees.
09:53:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75744716804142 and -65.74600603084473 degrees.
09:53:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:53:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:53:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:53:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:53:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:53:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:53:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:53:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:53:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:53:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:53:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:53:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:53:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:53:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:53:45 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:53:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.116482 (min) -0.0533186 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.448526 (min) 0.575767 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.00524658 (min) 0.00983222 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.37219 (min) -4.33178 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.8728 (min) 13.9381 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -0.00010173 (min) -0.000101276 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 327.4 (min) 350.769 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:53:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:53:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.195982, mean: 5.244251, max: 5.248419
09:53:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:53:45 DEBUG   opendrift.models.physics_methods:1061:    min: 12.418335, mean: 12.475880, max: 12.480840
09:53:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.418335, mean: 12.475880, max: 12.480840
09:53:45 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:53:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:53:45 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:53:45 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:53:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.290667 m/s - 0.292130 m/s)
09:53:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:53:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:53:45 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:53:45 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:53:45 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:53:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:53:45 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:53:45 INFO    opendrift.models.basemodel:2038: 2024-10-20 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
09:53:45 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:53:45 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:53:45 DEBUG   opendrift.models.basemodel:2057:               61.13094996019805 <- latitude  -> 61.15350737421444
09:53:45 DEBUG   opendrift.models.basemodel:2062:               4.2330875319320675 <- longitude -> 4.240471592766564
09:53:45 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:53:45 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:53:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:53: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:53:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:53:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:53:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:53:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:53:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:53:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 15:00:00 (before)
                2024-10-20 16:00:00 (after)
09:54:02 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:54:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:54:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:54:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:54:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:54:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:54:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x7) for time before (2024-10-20 15:00:00)
09:54:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 15:00:00) in space  (linearNDFast)
09:54:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:54:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:54:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.76692303399805 and -65.75953897330908 degrees.
09:54:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.76692303399805 and -65.75953897330908 degrees.
09:54:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:54:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:54:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:54:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:54:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:54:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:54:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:54:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:54:02 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:54:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.137253 (min) -0.0669903 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.343769 (min) 0.538899 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.358244 (min) -0.354748 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -6.70499 (min) -6.66492 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.5469 (min) 13.5994 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.67188e-05 (min) -9.58009e-05 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 321.346 (min) 326.516 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:54:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:54:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.620509, mean: 5.636377, max: 5.642776
09:54:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:54:02 DEBUG   opendrift.models.physics_methods:1061:    min: 12.915682, mean: 12.933901, max: 12.941242
09:54:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.915682, mean: 12.933901, max: 12.941242
09:54:02 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:54:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:02 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:54:02 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:54:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.302308 m/s - 0.302907 m/s)
09:54:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:54:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:54:02 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:54:02 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:54:02 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:54:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:02 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:54:02 INFO    opendrift.models.basemodel:2038: 2024-10-20 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
09:54:02 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:54:02 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:54:02 DEBUG   opendrift.models.basemodel:2057:               61.15714327338258 <- latitude  -> 61.17336596445832
09:54:02 DEBUG   opendrift.models.basemodel:2062:               4.214936794349125 <- longitude -> 4.226879280902827
09:54:02 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:54:02 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:54:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54:02 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:54:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:54:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:54:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 16:00:00 (before)
                2024-10-20 17:00:00 (after)
09:54:17 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:54:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:54:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:54:17 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:54:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:54:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:54:17 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-20 16:00:00)
09:54:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 16:00:00) in space  (linearNDFast)
09:54:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:54:17 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:54:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7850737605718 and -65.77313127128102 degrees.
09:54:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7850737605718 and -65.77313127128102 degrees.
09:54:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54:17 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:54:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:54:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:54:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:54:17 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:54:17 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:54:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:17 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:54:17 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:54:17 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:54:17 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.170425 (min) -0.144323 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.324671 (min) 0.426034 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.658119 (min) -0.657688 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -6.69328 (min) -6.67806 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.7068 (min) 13.7412 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.83872e-05 (min) -6.74434e-05 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 321.484 (min) 330.154 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:54:17 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:54:17 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.721944, mean: 5.739233, max: 5.746941
09:54:17 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:54:17 DEBUG   opendrift.models.physics_methods:1061:    min: 13.031709, mean: 13.051379, max: 13.060143
09:54:17 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.031709, mean: 13.051379, max: 13.060143
09:54:17 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:54:17 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:17 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:54:17 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:54:17 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.305024 m/s - 0.305690 m/s)
09:54:17 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:54:17 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:54:17 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:54:17 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:54:17 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:54:17 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:17 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:54:17 INFO    opendrift.models.basemodel:2038: 2024-10-20 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
09:54:17 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:54:17 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:54:17 DEBUG   opendrift.models.basemodel:2057:               61.17977947923629 <- latitude  -> 61.19271767429001
09:54:17 DEBUG   opendrift.models.basemodel:2062:               4.194620611010372 <- longitude -> 4.20822910648234
09:54:17 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:54:17 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:54:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54:17 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:54:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:54:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:54:17 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 17:00:00 (before)
                2024-10-20 18:00:00 (after)
09:54:28 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:54:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:54:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:54:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:54:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:54:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:54:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x7) for time before (2024-10-20 17:00:00)
09:54:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 17:00:00) in space  (linearNDFast)
09:54:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:54:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:54:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.80538994156191 and -65.79178144677184 degrees.
09:54:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.80538994156191 and -65.79178144677184 degrees.
09:54:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:54:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:54:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:54:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:54:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:54:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:54:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:54:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:54:28 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:54:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.192178 (min) -0.178164 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.437735 (min) 0.471058 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.817223 (min) -0.816408 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -7.36549 (min) -7.24505 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 16.0917 (min) 16.1314 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.26642e-05 (min) -2.24837e-05 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 334.871 (min) 345.196 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:54:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:54:28 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 7.692142, mean: 7.704912, max: 7.709383
09:54:28 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:54:28 DEBUG   opendrift.models.physics_methods:1061:    min: 15.109609, mean: 15.122145, max: 15.126533
09:54:28 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 15.109609, mean: 15.122145, max: 15.126533
09:54:28 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:54:28 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:28 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:54:28 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:54:28 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.353660 m/s - 0.354056 m/s)
09:54:28 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:54:28 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:54:28 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:54:28 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:54:28 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:54:28 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:28 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:54:28 INFO    opendrift.models.basemodel:2038: 2024-10-20 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
09:54:28 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:54:28 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:54:28 DEBUG   opendrift.models.basemodel:2057:               61.20539425514393 <- latitude  -> 61.21731521058154
09:54:28 DEBUG   opendrift.models.basemodel:2062:               4.17204314857184 <- longitude -> 4.186417763382473
09:54:28 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:54:28 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:54:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54:28 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:54:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:54:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:54:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 18:00:00 (before)
                2024-10-20 19:00:00 (after)
09:54:40 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:54:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:54:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:54:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:54:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:54:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:54:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x7) for time before (2024-10-20 18:00:00)
09:54:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 18:00:00) in space  (linearNDFast)
09:54:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:54:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:54:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8279674086111 and -65.8135927818379 degrees.
09:54:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8279674086111 and -65.8135927818379 degrees.
09:54:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:54:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:54:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:54:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:54:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:54:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:54:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:54:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:54:40 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:54:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.216176 (min) -0.200334 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.592527 (min) 0.618858 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.815667 (min) -0.812413 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -7.10222 (min) -7.0399 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 17.463 (min) 17.6783 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.49389e-05 (min) 2.57898e-05 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 349.509 (min) 354.136 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:54:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:54:40 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 8.742789, mean: 8.885935, max: 8.909618
09:54:40 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:54:40 DEBUG   opendrift.models.physics_methods:1061:    min: 16.108481, mean: 16.239794, max: 16.261444
09:54:40 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 16.108481, mean: 16.239794, max: 16.261444
09:54:40 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:54:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:40 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:54:40 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:54:40 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.377040 m/s - 0.380620 m/s)
09:54:40 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:54:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:54:40 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:54:40 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:54:40 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:54:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:40 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:54:40 INFO    opendrift.models.basemodel:2038: 2024-10-20 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
09:54:40 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:54:40 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:54:40 DEBUG   opendrift.models.basemodel:2057:               61.23596704742661 <- latitude  -> 61.24859053434919
09:54:40 DEBUG   opendrift.models.basemodel:2062:               4.148026497675911 <- longitude -> 4.1633622388427876
09:54:40 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:54:40 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:54:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54: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:54:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:54:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:54:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 19:00:00 (before)
                2024-10-20 20:00:00 (after)
09:54:53 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:54:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:54:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:54:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:54:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:54:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:54:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x7) for time before (2024-10-20 19:00:00)
09:54:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 19:00:00) in space  (linearNDFast)
09:54:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:54:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:54:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.85198404186987 and -65.83664830062277 degrees.
09:54:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.85198404186987 and -65.83664830062277 degrees.
09:54:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:54:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:54:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:54:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:54:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:54:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:54:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:54:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:54:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:54:53 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:54:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.206178 (min) -0.188759 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.772179 (min) 0.807793 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.644474 (min) -0.640335 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -8.08912 (min) -8.07515 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.5332 (min) 15.5827 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.59768e-05 (min) 6.60938e-05 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 323.787 (min) 341.495 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:54:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:54:53 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 7.543808, mean: 7.553602, max: 7.581779
09:54:53 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:54:53 DEBUG   opendrift.models.physics_methods:1061:    min: 14.963214, mean: 14.972921, max: 15.000825
09:54:53 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 14.963214, mean: 14.972921, max: 15.000825
09:54:53 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:54:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:53 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:54:53 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:54:53 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.350234 m/s - 0.351114 m/s)
09:54:53 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:54:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:54:53 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:54:53 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:54:53 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:54:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:54:53 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:54:53 INFO    opendrift.models.basemodel:2038: 2024-10-20 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
09:54:53 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:54:53 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:54:53 DEBUG   opendrift.models.basemodel:2057:               61.27095102118404 <- latitude  -> 61.284754377260775
09:54:53 DEBUG   opendrift.models.basemodel:2062:               4.124487609833622 <- longitude -> 4.138786280540511
09:54:53 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:54:53 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:54:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:54: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:54:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:54:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:54:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:54:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:54:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:54:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 20:00:00 (before)
                2024-10-20 21:00:00 (after)
09:55:05 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:55:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:05 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:05 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x7) for time before (2024-10-20 20:00:00)
09:55:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 20:00:00) in space  (linearNDFast)
09:55:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:05 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.87552291880394 and -65.8612242451312 degrees.
09:55:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.87552291880394 and -65.8612242451312 degrees.
09:55:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:05 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:05 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:05 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:05 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:05 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:55:05 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.143408 (min) -0.115796 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.932619 (min) 0.953759 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.357606 (min) -0.353707 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -8.98631 (min) -8.95973 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 19.5517 (min) 19.5776 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.0133e-05 (min) 9.06614e-05 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 301.799 (min) 308.077 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:05 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:05 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 11.390259, mean: 11.393831, max: 11.403529
09:55:05 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:05 DEBUG   opendrift.models.physics_methods:1061:    min: 18.386386, mean: 18.389269, max: 18.397094
09:55:05 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 18.386386, mean: 18.389269, max: 18.397094
09:55:05 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:05 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:05 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:05 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.430357 m/s - 0.430608 m/s)
09:55:05 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:05 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:05 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:05 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:05 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:05 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:05 INFO    opendrift.models.basemodel:2038: 2024-10-20 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
09:55:05 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:05 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:05 DEBUG   opendrift.models.basemodel:2057:               61.31371512302037 <- latitude  -> 61.328215294483385
09:55:05 DEBUG   opendrift.models.basemodel:2062:               4.104658794430761 <- longitude -> 4.117095161027774
09:55:05 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:05 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:55:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:55:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 21:00:00 (before)
                2024-10-20 22:00:00 (after)
09:55:22 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:55:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:22 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:22 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x7) for time before (2024-10-20 21:00:00)
09:55:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 21:00:00) in space  (linearNDFast)
09:55:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:22 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8953517196838 and -65.882915361854 degrees.
09:55:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8953517196838 and -65.882915361854 degrees.
09:55:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:22 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:22 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:22 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:22 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:22 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:22 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:55:22 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00381699 (min) 0.0190603 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 1.01959 (min) 1.03641 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.00825145 (min) -0.00676119 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -6.4736 (min) -6.40342 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 20.153 (min) 20.3171 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 0.00010486 (min) 0.000105288 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.674 (min) 301.031 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:22 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:22 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 11.021770, mean: 11.046623, max: 11.163174
09:55:22 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:22 DEBUG   opendrift.models.physics_methods:1061:    min: 18.086530, mean: 18.106896, max: 18.202180
09:55:22 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 18.086530, mean: 18.106896, max: 18.202180
09:55:22 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:22 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:22 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:22 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:22 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.423339 m/s - 0.426046 m/s)
09:55:22 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:22 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:22 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:22 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:22 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:22 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:22 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:22 INFO    opendrift.models.basemodel:2038: 2024-10-20 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
09:55:22 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:22 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:22 DEBUG   opendrift.models.basemodel:2057:               61.360102345025894 <- latitude  -> 61.37431481217323
09:55:22 DEBUG   opendrift.models.basemodel:2062:               4.0971677866596075 <- longitude -> 4.10812519234108
09:55:22 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:22 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:22 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:55:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader NorKyst manual aggregate
09:55:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from NorKyst manual aggregate covering 1000 elements
09:55:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 22:00:00 (before)
                2024-10-20 23:00:00 (after)
09:55:34 DEBUG   opendrift.readers.basereader.variables:633: Checking ocean_vertical_diffusivity for invalid values
09:55:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:34 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:34 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x7) for time before (2024-10-20 22:00:00)
09:55:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 22:00:00) in space  (linearNDFast)
09:55:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:34 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.90284271437949 and -65.89188530548148 degrees.
09:55:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.90284271437949 and -65.89188530548148 degrees.
09:55:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:34 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:34 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:34 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:34 DEBUG   opendrift.models.basemodel.environment:814:       Using fallback value 0 for ocean_vertical_diffusivity for 0 profiles
09:55:34 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.169887 (min) 0.173817 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.937252 (min) 0.965984 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.344593 (min) 0.345645 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.13765 (min) -1.11497 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 16.1975 (min) 16.2226 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.67183e-05 (min) 8.75153e-05 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.966 (min) 299.724 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:34 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.484691, mean: 6.490035, max: 6.505867
09:55:34 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:34 DEBUG   opendrift.models.physics_methods:1061:    min: 13.873123, mean: 13.878837, max: 13.895756
09:55:34 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.873123, mean: 13.878837, max: 13.895756
09:55:34 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:34 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:34 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:34 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.324719 m/s - 0.325248 m/s)
09:55:34 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:34 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:34 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:34 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:34 DEBUG   opendrift.models.basemodel:2153: Cleaning up
09:55:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:34 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:34 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:34 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:34 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:34 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:34 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:34 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:34 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:34 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Run to Mode.Result
09:55:34 DEBUG   opendrift.models.oceandrift:115: No machine learning correction available.
09:55:34 DEBUG   opendrift.config:168: Adding 50 config items from environment
09:55:34 DEBUG   opendrift.config:168: Adding 5 config items from environment
09:55:34 DEBUG   opendrift.config:168: Adding 18 config items from __init__
09:55:34 DEBUG   opendrift.config:178:   Overwriting config item readers:max_number_of_fails
09:55:34 DEBUG   opendrift.config:168: Adding 5 config items from __init__
09:55:35 INFO    opendrift.models.basemodel:515: OpenDriftSimulation initialised (version 1.11.13 / v1.11.13-82-gecf6952)
09:55:35 DEBUG   opendrift.config:168: Adding 15 config items from oceandrift
09:55:35 DEBUG   opendrift.config:178:   Overwriting config item seed:z
09:55:35 DEBUG   opendrift.readers.reader_lazy:38: Delaying initialisation of LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:35 DEBUG   opendrift.models.basemodel.environment:328: Added reader LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:35 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:55:35 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
09:55:35 DEBUG   opendrift.models.basemodel.environment:328: Added reader global_landmask
09:55:35 INFO    opendrift.models.basemodel.environment:245: Fallback values will be used for the following variables which have no readers:
09:55:35 INFO    opendrift.models.basemodel.environment:248:    x_sea_water_velocity: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    y_sea_water_velocity: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_height: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    x_wind: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    y_wind: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    upward_sea_water_velocity: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    ocean_vertical_diffusivity: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_significant_height: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_x_velocity: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_stokes_drift_y_velocity: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_period_at_variance_spectral_density_maximum: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_to_direction: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_swell_wave_significant_height: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_to_direction: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_mean_period: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_surface_wind_wave_significant_height: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    surface_downward_x_stress: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    surface_downward_y_stress: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    turbulent_kinetic_energy: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    turbulent_generic_length_scale: 0.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    ocean_mixed_layer_thickness: 50.000000
09:55:35 INFO    opendrift.models.basemodel.environment:248:    sea_floor_depth_below_sea_level: 10000.000000
09:55:35 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Config to Mode.Ready
09:55:35 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Ready to Mode.Run
09:55:35 DEBUG   opendrift.models.basemodel:1778:
------------------------------------------------------
Software and hardware:
  OpenDrift version 1.11.13
  Platform: Linux, 5.15.0-1057-aws
  68.56774139404297 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:55:35 DEBUG   opendrift.models.basemodel:1792: No output file is specified, neglecting export_buffer_length
09:55: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-10-18 00:00:00 to 2024-10-20 23:00:00)
09:55:35 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:55:35 DEBUG   opendrift.models.basemodel.environment:180:    Preparing global_landmask for extent [-4.71627286447143, 55.39190523302233, 13.715758357177728, 64.60825116956556]
09:55:35 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for global_landmask
09:55:35 INFO    opendrift.models.basemodel:936: Using existing reader for land_binary_mask
09:55:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:35 INFO    opendrift.models.basemodel:947: All points are in ocean
09:55:35 DEBUG   opendrift.models.basemodel:891: to be seeded: 1000, already seeded 0
09:55:35 DEBUG   opendrift.models.basemodel:909: Released 1000 new elements.
09:55:35 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:35 INFO    opendrift.models.basemodel:2038: 2024-10-18 00:00:00 - step 1 of 71 - 1000 active elements (0 deactivated)
09:55:35 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:35 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:35 DEBUG   opendrift.models.basemodel:2057:               59.99731 <- latitude  -> 60.002846
09:55:35 DEBUG   opendrift.models.basemodel:2062:               4.4945407 <- longitude -> 4.504945
09:55:35 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:35 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:35 DEBUG   opendrift.models.basemodel.environment:581: Variables not covered by any reader: ['x_sea_water_velocity', 'x_wind', 'sea_surface_wave_period_at_variance_spectral_density_maximum', 'y_sea_water_velocity', 'sea_surface_wave_significant_height', 'sea_surface_wave_stokes_drift_x_velocity', 'sea_surface_wave_stokes_drift_y_velocity', 'ocean_mixed_layer_thickness', 'upward_sea_water_velocity', 'sea_surface_height', 'ocean_vertical_diffusivity', 'surface_downward_x_stress', 'turbulent_generic_length_scale', 'sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment', 'surface_downward_y_stress', 'sea_floor_depth_below_sea_level', 'turbulent_kinetic_energy', 'y_wind']
09:55:35 DEBUG   opendrift.readers.reader_lazy:57: Initialising: LazyReader: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:35 DEBUG   opendrift.readers:84: Testing reader <module 'opendrift.readers.reader_netCDF_CF_generic' from '/root/project/opendrift/readers/reader_netCDF_CF_generic.py'>
09:55:35 INFO    opendrift.readers.reader_netCDF_CF_generic:102: Opening dataset: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:41 DEBUG   opendrift.readers.reader_netCDF_CF_generic:119: Finding coordinate variables.
09:55:41 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:55:41 INFO    opendrift.readers.reader_netCDF_CF_generic:325: Detected dimensions: {'x': 'X', 'y': 'Y', 'z': 'depth', 'time': 'time'}
09:55:41 DEBUG   opendrift.readers.reader_netCDF_CF_generic:361: Skipped variables without standard_name: ['angle', 'tke', 'ubar', 'vbar']
09:55:41 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:55:41 DEBUG   opendrift.readers.basereader:186: Variable mapping: ['sea_floor_depth_below_sea_level'] -> ['land_binary_mask'] is not activated
09:55:41 DEBUG   opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_wind', 'y_wind'] -> wind_speed
09:55:41 DEBUG   opendrift.readers.basereader.variables:563: Adding variable mapping: ['x_sea_water_velocity', 'y_sea_water_velocity'] -> sea_water_speed
09:55:41 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:55:41 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:55:41 DEBUG   opendrift.readers.basereader.variables:549: Nothing more to prepare for https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:41 DEBUG   opendrift.readers.reader_lazy:72: Reader initialised: https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:41 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:55:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 00:00:00 (before)
                2024-10-18 01:00:00 (after)
09:55:42 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:42 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-10-18 00:00:00)
09:55:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 00:00:00) in space  (linearNDFast)
09:55:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:42 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:55:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.50547356643384 and -65.49506707409589 degrees.
09:55:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:42 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:42 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:42 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:42 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:42 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0748656 (min) 0.108923 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0547176 (min) 0.0677906 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.182703 (min) -0.181619 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.381936 (min) -0.363105 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.0056 (min) 13.0223 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.80571e-08 (min) -7.09261e-09 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.369 (min) 298.632 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:42 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:42 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.164233, mean: 4.169771, max: 4.175236
09:55:42 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:42 DEBUG   opendrift.models.physics_methods:1061:    min: 11.117243, mean: 11.124632, max: 11.131921
09:55:42 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.117243, mean: 11.124632, max: 11.131921
09:55:42 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:42 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:42 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:42 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.260214 m/s - 0.260557 m/s)
09:55:42 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:42 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:42 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:42 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:42 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:42 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:42 INFO    opendrift.models.basemodel:2038: 2024-10-18 01:00:00 - step 2 of 71 - 1000 active elements (0 deactivated)
09:55:42 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:42 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:42 DEBUG   opendrift.models.basemodel:2057:               60.00791320667672 <- latitude  -> 60.01302692420178
09:55:42 DEBUG   opendrift.models.basemodel:2062:               4.500917187819889 <- longitude -> 4.509793749689372
09:55:42 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:42 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:42 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:42 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 01:00:00 (before)
                2024-10-18 02:00:00 (after)
09:55:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-18 01:00:00)
09:55:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 01:00:00) in space  (linearNDFast)
09:55:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49909373285195 and -65.49021717792041 degrees.
09:55:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49909373285195 and -65.49021717792041 degrees.
09:55:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.395971 (min) -0.0908522 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0320602 (min) 0.281109 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.530444 (min) -0.526137 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.675629 (min) -0.647358 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.6257 (min) 12.6335 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.46147e-05 (min) -8.92533e-05 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.815 (min) 299.032 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:43 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.932692, mean: 3.934181, max: 3.936627
09:55:43 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:43 DEBUG   opendrift.models.physics_methods:1061:    min: 10.803751, mean: 10.805796, max: 10.809154
09:55:43 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.803751, mean: 10.805796, max: 10.809154
09:55:43 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:43 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:43 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:43 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:43 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.252876 m/s - 0.253002 m/s)
09:55:43 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:43 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:43 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:43 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:43 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:43 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:43 INFO    opendrift.models.basemodel:2038: 2024-10-18 02:00:00 - step 3 of 71 - 1000 active elements (0 deactivated)
09:55:43 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:43 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:43 DEBUG   opendrift.models.basemodel:2057:               60.01752659897102 <- latitude  -> 60.030050608850814
09:55:43 DEBUG   opendrift.models.basemodel:2062:               4.479232238865322 <- longitude -> 4.502466021501618
09:55:43 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:43 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 02:00:00 (before)
                2024-10-18 03:00:00 (after)
09:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-10-18 02:00:00)
09:55:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 02:00:00) in space  (linearNDFast)
09:55:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52077867301016 and -65.49754489054446 degrees.
09:55:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52077867301016 and -65.49754489054446 degrees.
09:55:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0390812 (min) 0.118431 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0735938 (min) 0.19088 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.80297 (min) -0.79632 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.410074 (min) -0.355329 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.6474 (min) 11.6805 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -8.09647e-05 (min) -7.45236e-05 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.638 (min) 299.013 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:44 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.340400, mean: 3.343036, max: 3.360401
09:55:44 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:44 DEBUG   opendrift.models.physics_methods:1061:    min: 9.957007, mean: 9.960934, max: 9.986773
09:55:44 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.957007, mean: 9.960934, max: 9.986773
09:55:44 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:44 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:44 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:44 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.233057 m/s - 0.233753 m/s)
09:55:44 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:44 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:44 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:44 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:44 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:44 INFO    opendrift.models.basemodel:2038: 2024-10-18 03:00:00 - step 4 of 71 - 1000 active elements (0 deactivated)
09:55:44 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:44 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:44 DEBUG   opendrift.models.basemodel:2057:               60.02777163420198 <- latitude  -> 60.043628131162805
09:55:44 DEBUG   opendrift.models.basemodel:2062:               4.482563349642656 <- longitude -> 4.504459360860995
09:55:44 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:44 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 03:00:00 (before)
                2024-10-18 04:00:00 (after)
09:55:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-10-18 03:00:00)
09:55:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 03:00:00) in space  (linearNDFast)
09:55:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51744756572408 and -65.49555157111892 degrees.
09:55:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51744756572408 and -65.49555157111892 degrees.
09:55:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:45 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:45 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0802128 (min) 0.109651 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.154928 (min) 0.231384 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.959099 (min) -0.951388 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.225043 (min) 0.262652 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.0249 (min) 11.0806 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.35596e-05 (min) -2.55823e-05 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.644 (min) 299.156 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.991385, mean: 2.999226, max: 3.022075
09:55:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:45 DEBUG   opendrift.models.physics_methods:1061:    min: 9.422490, mean: 9.434827, max: 9.470703
09:55:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.422490, mean: 9.434827, max: 9.470703
09:55:45 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:45 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:45 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.220546 m/s - 0.221674 m/s)
09:55:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:45 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:45 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:45 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:45 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:45 INFO    opendrift.models.basemodel:2038: 2024-10-18 04:00:00 - step 5 of 71 - 1000 active elements (0 deactivated)
09:55:45 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:45 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:45 DEBUG   opendrift.models.basemodel:2057:               60.04213245729872 <- latitude  -> 60.058241264054104
09:55:45 DEBUG   opendrift.models.basemodel:2062:               4.487230727612597 <- longitude -> 4.502453613617908
09:55:45 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:45 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 04:00:00 (before)
                2024-10-18 05:00:00 (after)
09:55:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-18 04:00:00)
09:55:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 04:00:00) in space  (linearNDFast)
09:55:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51278017397475 and -65.49755729185762 degrees.
09:55:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51278017397475 and -65.49755729185762 degrees.
09:55:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:46 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:46 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.128557 (min) -0.0459052 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.370512 (min) 0.440936 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.96233 (min) -0.96066 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.567397 (min) -0.548839 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.1079 (min) 10.1593 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.93241e-05 (min) 2.67763e-05 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.52 (min) 299.094 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.520851, mean: 2.528353, max: 2.546885
09:55:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:46 DEBUG   opendrift.models.physics_methods:1061:    min: 8.649742, mean: 8.662600, max: 8.694293
09:55:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.649742, mean: 8.662600, max: 8.694293
09:55:46 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:46 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:46 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:46 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.202459 m/s - 0.203501 m/s)
09:55:46 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:46 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:46 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:46 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:46 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:46 INFO    opendrift.models.basemodel:2038: 2024-10-18 05:00:00 - step 6 of 71 - 1000 active elements (0 deactivated)
09:55:46 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:46 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:46 DEBUG   opendrift.models.basemodel:2057:               60.06144381027853 <- latitude  -> 60.07779986021542
09:55:46 DEBUG   opendrift.models.basemodel:2062:               4.483552549967579 <- longitude -> 4.493413844114827
09:55:46 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:46 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 05:00:00 (before)
                2024-10-18 06:00:00 (after)
09:55:47 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-10-18 05:00:00)
09:55:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 05:00:00) in space  (linearNDFast)
09:55:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:47 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51645834892761 and -65.50659706407889 degrees.
09:55:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51645834892761 and -65.50659706407889 degrees.
09:55:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:47 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:47 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:47 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:47 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0913979 (min) 0.0260639 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.483017 (min) 0.502585 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.850278 (min) -0.846435 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.32354 (min) -1.28333 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.1659 (min) 10.1942 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 3.81756e-05 (min) 4.20309e-05 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.066 (min) 298.64 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:47 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:47 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.585263, mean: 2.588865, max: 2.596977
09:55:47 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:47 DEBUG   opendrift.models.physics_methods:1061:    min: 8.759553, mean: 8.765651, max: 8.779376
09:55:47 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.759553, mean: 8.765651, max: 8.779376
09:55:47 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:47 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:47 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:47 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.205029 m/s - 0.205493 m/s)
09:55:47 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:47 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:47 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:47 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:47 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:47 INFO    opendrift.models.basemodel:2038: 2024-10-18 06:00:00 - step 7 of 71 - 1000 active elements (0 deactivated)
09:55:47 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:47 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:47 DEBUG   opendrift.models.basemodel:2057:               60.08407212320898 <- latitude  -> 60.10057389629179
09:55:47 DEBUG   opendrift.models.basemodel:2062:               4.48350997420709 <- longitude -> 4.485843251717403
09:55:47 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:47 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:47 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:47 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 06:00:00 (before)
                2024-10-18 07:00:00 (after)
09:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:48 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-18 06:00:00)
09:55:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 06:00:00) in space  (linearNDFast)
09:55:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:48 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51650090748666 and -65.5141676421083 degrees.
09:55:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51650090748666 and -65.5141676421083 degrees.
09:55:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:48 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:48 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:48 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:48 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:48 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00151912 (min) 0.112967 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.500425 (min) 0.58685 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.666918 (min) -0.66486 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.73646 (min) -2.72794 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.396 (min) 11.4087 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.84631e-05 (min) 5.96459e-05 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.82 (min) 298.068 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:48 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:48 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.378985, mean: 3.381691, max: 3.384966
09:55:48 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:48 DEBUG   opendrift.models.physics_methods:1061:    min: 10.014349, mean: 10.018358, max: 10.023209
09:55:48 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.014349, mean: 10.018358, max: 10.023209
09:55:48 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:48 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:48 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:48 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:48 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.234399 m/s - 0.234606 m/s)
09:55:48 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:48 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:48 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:48 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:48 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:48 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:48 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:48 INFO    opendrift.models.basemodel:2038: 2024-10-18 07:00:00 - step 8 of 71 - 1000 active elements (0 deactivated)
09:55:48 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:48 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:48 DEBUG   opendrift.models.basemodel:2057:               60.11039889516899 <- latitude  -> 60.12411603019616
09:55:48 DEBUG   opendrift.models.basemodel:2062:               4.482088541307401 <- longitude -> 4.487319843823262
09:55:48 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:48 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:48 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:48 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 07:00:00 (before)
                2024-10-18 08:00:00 (after)
09:55:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-18 07:00:00)
09:55:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 07:00:00) in space  (linearNDFast)
09:55:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51792235208465 and -65.51269103464301 degrees.
09:55:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51792235208465 and -65.51269103464301 degrees.
09:55:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:49 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:49 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0553559 (min) 0.0748468 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.437775 (min) 0.530756 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.432838 (min) -0.429605 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.72407 (min) -2.67583 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.4571 (min) 11.4582 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.33733e-05 (min) 7.38856e-05 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.72 (min) 298.065 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:49 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.405262, mean: 3.408413, max: 3.412281
09:55:49 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:49 DEBUG   opendrift.models.physics_methods:1061:    min: 10.053212, mean: 10.057863, max: 10.063567
09:55:49 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.053212, mean: 10.057863, max: 10.063567
09:55:49 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:49 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:49 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:49 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.235309 m/s - 0.235551 m/s)
09:55:49 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:49 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:49 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:49 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:49 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:49 INFO    opendrift.models.basemodel:2038: 2024-10-18 08:00:00 - step 9 of 71 - 1000 active elements (0 deactivated)
09:55:49 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:49 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:49 DEBUG   opendrift.models.basemodel:2057:               60.1349524848779 <- latitude  -> 60.1456658625649
09:55:49 DEBUG   opendrift.models.basemodel:2062:               4.482211762416801 <- longitude -> 4.488638455418414
09:55:49 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:49 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 08:00:00 (before)
                2024-10-18 09:00:00 (after)
09:55:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-10-18 08:00:00)
09:55:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 08:00:00) in space  (linearNDFast)
09:55:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51779912479118 and -65.51137242114618 degrees.
09:55:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.51779912479118 and -65.51137242114618 degrees.
09:55:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0547649 (min) 0.0614777 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.366618 (min) 0.388239 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.149564 (min) -0.146705 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.97257 (min) -3.95332 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.5623 (min) 11.6015 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.13197e-05 (min) 8.19648e-05 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.902 (min) 298.424 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.676925, mean: 3.686380, max: 3.695508
09:55:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:50 DEBUG   opendrift.models.physics_methods:1061:    min: 10.446528, mean: 10.459949, max: 10.472893
09:55:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.446528, mean: 10.459949, max: 10.472893
09:55:50 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:50 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:50 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.244515 m/s - 0.245132 m/s)
09:55:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:50 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:50 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:50 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:50 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:50 INFO    opendrift.models.basemodel:2038: 2024-10-18 09:00:00 - step 10 of 71 - 1000 active elements (0 deactivated)
09:55:50 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:50 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:50 DEBUG   opendrift.models.basemodel:2057:               60.154968956020745 <- latitude  -> 60.16500901740765
09:55:50 DEBUG   opendrift.models.basemodel:2062:               4.48063070578102 <- longitude -> 4.48749711071303
09:55:50 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:50 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 09:00:00 (before)
                2024-10-18 10:00:00 (after)
09:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:51 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-18 09:00:00)
09:55:51 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 09:00:00) in space  (linearNDFast)
09:55:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:51 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.519380173871 and -65.51251375436202 degrees.
09:55:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.519380173871 and -65.51251375436202 degrees.
09:55:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:51 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:51 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:51 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:51 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:51 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0517401 (min) 0.0548993 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.236274 (min) 0.24468 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.112222 (min) 0.117968 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.49691 (min) -4.48555 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.3386 (min) 12.3512 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.06957e-05 (min) 6.1053e-05 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.253 (min) 298.908 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:51 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:51 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.240075, mean: 4.248095, max: 4.250043
09:55:51 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:51 DEBUG   opendrift.models.physics_methods:1061:    min: 11.218024, mean: 11.228628, max: 11.231202
09:55:51 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.218024, mean: 11.228628, max: 11.231202
09:55:51 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:51 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:51 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:51 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:51 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.262572 m/s - 0.262881 m/s)
09:55:51 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:51 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:51 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:51 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:51 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:51 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:51 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:51 INFO    opendrift.models.basemodel:2038: 2024-10-18 10:00:00 - step 11 of 71 - 1000 active elements (0 deactivated)
09:55:51 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:51 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:51 DEBUG   opendrift.models.basemodel:2057:               60.17063514210534 <- latitude  -> 60.18089653749909
09:55:51 DEBUG   opendrift.models.basemodel:2062:               4.478350869081836 <- longitude -> 4.485019399579013
09:55:51 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:51 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:51 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:51 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:51 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:51 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:51 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 10:00:00 (before)
                2024-10-18 11:00:00 (after)
09:55:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-18 10:00:00)
09:55:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 10:00:00) in space  (linearNDFast)
09:55:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5216599999695 and -65.5149914768682 degrees.
09:55:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5216599999695 and -65.5149914768682 degrees.
09:55:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:52 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:52 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0578216 (min) 0.0629116 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.15126 (min) 0.153048 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.261273 (min) 0.265806 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.80746 (min) -2.76153 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.8906 (min) 12.9359 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.87915e-05 (min) 1.91165e-05 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.735 (min) 299.496 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.275336, mean: 4.297831, max: 4.310418
09:55:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:52 DEBUG   opendrift.models.physics_methods:1061:    min: 11.264573, mean: 11.294164, max: 11.310694
09:55:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.264573, mean: 11.294164, max: 11.310694
09:55:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.263662 m/s - 0.264742 m/s)
09:55:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:52 INFO    opendrift.models.basemodel:2038: 2024-10-18 11:00:00 - step 12 of 71 - 1000 active elements (0 deactivated)
09:55:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:52 DEBUG   opendrift.models.basemodel:2057:               60.183887813332305 <- latitude  -> 60.19417196181327
09:55:52 DEBUG   opendrift.models.basemodel:2062:               4.478704381320701 <- longitude -> 4.485186602205467
09:55:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 11:00:00 (before)
                2024-10-18 12:00:00 (after)
09:55:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-10-18 11:00:00)
09:55:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 11:00:00) in space  (linearNDFast)
09:55:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52130648243659 and -65.51482425303735 degrees.
09:55:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52130648243659 and -65.51482425303735 degrees.
09:55:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:53 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:53 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00121872 (min) 0.0069196 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0949408 (min) 0.120879 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.228177 (min) 0.230287 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.30681 (min) -2.27676 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.075 (min) 13.0827 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.93742e-05 (min) -3.89672e-05 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.42 (min) 300.258 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:53 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.335836, mean: 4.336206, max: 4.338004
09:55:53 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:53 DEBUG   opendrift.models.physics_methods:1061:    min: 11.343995, mean: 11.344478, max: 11.346830
09:55:53 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.343995, mean: 11.344478, max: 11.346830
09:55:53 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:53 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:53 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:53 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.265521 m/s - 0.265587 m/s)
09:55:53 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:53 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:53 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:53 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:53 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:53 INFO    opendrift.models.basemodel:2038: 2024-10-18 12:00:00 - step 13 of 71 - 1000 active elements (0 deactivated)
09:55:53 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:53 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:53 DEBUG   opendrift.models.basemodel:2057:               60.19540488829918 <- latitude  -> 60.20653214836987
09:55:53 DEBUG   opendrift.models.basemodel:2062:               4.476129792941022 <- longitude -> 4.482309506022656
09:55:53 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:53 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 12:00:00 (before)
                2024-10-18 13:00:00 (after)
09:55:54 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:54 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-18 12:00:00)
09:55:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 12:00:00) in space  (linearNDFast)
09:55:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:54 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52388106550211 and -65.51770135535162 degrees.
09:55:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52388106550211 and -65.51770135535162 degrees.
09:55:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:54 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:54 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:54 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:54 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:54 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0363601 (min) -0.0331651 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.130011 (min) 0.148995 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.00450273 (min) 0.00507749 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.34223 (min) -2.33165 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.7944 (min) 12.8108 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -8.32685e-05 (min) -8.30527e-05 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.061 (min) 301.094 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:54 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:54 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.160683, mean: 4.165231, max: 4.172237
09:55:54 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:54 DEBUG   opendrift.models.physics_methods:1061:    min: 11.112502, mean: 11.118575, max: 11.127922
09:55:54 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.112502, mean: 11.118575, max: 11.127922
09:55:54 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:54 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:54 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:54 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:54 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.260103 m/s - 0.260464 m/s)
09:55:54 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:54 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:54 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:54 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:54 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:54 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:54 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:54 INFO    opendrift.models.basemodel:2038: 2024-10-18 13:00:00 - step 14 of 71 - 1000 active elements (0 deactivated)
09:55:54 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:54 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:54 DEBUG   opendrift.models.basemodel:2057:               60.20788435784307 <- latitude  -> 60.21961440896342
09:55:54 DEBUG   opendrift.models.basemodel:2062:               4.470728396195643 <- longitude -> 4.477127203794329
09:55:54 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:54 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:54 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:54 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:54 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:54 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:54 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:54 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:54 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:54 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:54 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:54 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:54 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:54 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 13:00:00 (before)
                2024-10-18 14:00:00 (after)
09:55:56 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:56 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:56 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:56 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-18 13:00:00)
09:55:56 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 13:00:00) in space  (linearNDFast)
09:55:56 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:56 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52928246046969 and -65.52288365534181 degrees.
09:55:56 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.52928246046969 and -65.52288365534181 degrees.
09:55:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:56 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:56 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:56 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:56 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:56 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.00561952 (min) 0.007222 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.156281 (min) 0.164633 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.322907 (min) -0.3207 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.99702 (min) -2.99596 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.8364 (min) 13.8657 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.46338e-05 (min) -9.38594e-05 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.913 (min) 302.169 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:56 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:56 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.930435, mean: 4.941925, max: 4.950509
09:55:56 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:56 DEBUG   opendrift.models.physics_methods:1061:    min: 12.096847, mean: 12.110933, max: 12.121448
09:55:56 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.096847, mean: 12.110933, max: 12.121448
09:55:56 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:56 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:56 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:56 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:56 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.283142 m/s - 0.283718 m/s)
09:55:56 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:56 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:56 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:56 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:56 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:56 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:56 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:56 INFO    opendrift.models.basemodel:2038: 2024-10-18 14:00:00 - step 15 of 71 - 1000 active elements (0 deactivated)
09:55:56 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:56 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:56 DEBUG   opendrift.models.basemodel:2057:               60.22214401724748 <- latitude  -> 60.233624373607825
09:55:56 DEBUG   opendrift.models.basemodel:2062:               4.467221579388725 <- longitude -> 4.473701705120331
09:55:56 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:56 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:56 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:56 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:56 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:56 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:56 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:56 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:56 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:56 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:56 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:56 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:56 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:56 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 14:00:00 (before)
                2024-10-18 15:00:00 (after)
09:55:57 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:57 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:57 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:57 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-18 14:00:00)
09:55:57 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 14:00:00) in space  (linearNDFast)
09:55:57 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:57 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53278926708194 and -65.52630914866937 degrees.
09:55:57 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53278926708194 and -65.52630914866937 degrees.
09:55:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:57 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:57 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:57 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:57 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0326405 (min) 0.0567507 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0416299 (min) 0.0965019 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.630788 (min) -0.627445 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.42217 (min) -2.41994 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.9152 (min) 13.9235 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.34615e-05 (min) -7.22759e-05 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 302.213 (min) 303.307 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:57 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:57 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.907502, mean: 4.909573, max: 4.913370
09:55:57 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:57 DEBUG   opendrift.models.physics_methods:1061:    min: 12.068683, mean: 12.071228, max: 12.075894
09:55:57 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.068683, mean: 12.071228, max: 12.075894
09:55:57 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:57 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:57 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:57 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:57 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.282483 m/s - 0.282652 m/s)
09:55:57 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:57 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:57 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:57 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:57 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:57 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:57 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:57 INFO    opendrift.models.basemodel:2038: 2024-10-18 15:00:00 - step 16 of 71 - 1000 active elements (0 deactivated)
09:55:57 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:57 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:57 DEBUG   opendrift.models.basemodel:2057:               60.23425974979531 <- latitude  -> 60.243962331861255
09:55:57 DEBUG   opendrift.models.basemodel:2062:               4.467745944059121 <- longitude -> 4.47267570250898
09:55:57 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:57 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:57 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:57 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:57 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:57 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:57 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:57 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:57 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:57 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:57 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:57 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 15:00:00 (before)
                2024-10-18 16:00:00 (after)
09:55:58 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:58 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:58 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:58 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-10-18 15:00:00)
09:55:58 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 15:00:00) in space  (linearNDFast)
09:55:58 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:58 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53226490884451 and -65.52733514801615 degrees.
09:55:58 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53226490884451 and -65.52733514801615 degrees.
09:55:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:58 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:58 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:58 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:58 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:58 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.0635383 (min) -0.0467263 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0379168 (min) 0.0558443 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.840795 (min) -0.839686 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.84478 (min) -1.83449 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.7073 (min) 13.7246 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.26731e-05 (min) -4.13333e-05 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 303.284 (min) 303.721 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:58 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:58 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.705808, mean: 4.707707, max: 4.716554
09:55:58 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:58 DEBUG   opendrift.models.physics_methods:1061:    min: 11.818074, mean: 11.820457, max: 11.831558
09:55:58 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.818074, mean: 11.820457, max: 11.831558
09:55:58 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:58 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:58 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:58 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:58 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.276617 m/s - 0.276933 m/s)
09:55:58 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:58 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:58 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:58 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:58 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:58 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:58 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:58 INFO    opendrift.models.basemodel:2038: 2024-10-18 16:00:00 - step 17 of 71 - 1000 active elements (0 deactivated)
09:55:58 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:58 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:58 DEBUG   opendrift.models.basemodel:2057:               60.244342928908836 <- latitude  -> 60.25463580034143
09:55:58 DEBUG   opendrift.models.basemodel:2062:               4.462242024647845 <- longitude -> 4.466160355121389
09:55:58 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:58 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:58 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:58 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:58 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:58 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:58 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:58 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:58 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:58 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:58 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:58 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:58 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:58 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 16:00:00 (before)
                2024-10-18 17:00:00 (after)
09:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:55:59 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-10-18 16:00:00)
09:55:59 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 16:00:00) in space  (linearNDFast)
09:55:59 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:55:59 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:55:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53776882758275 and -65.53385048285813 degrees.
09:55:59 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.53776882758275 and -65.53385048285813 degrees.
09:55:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:59 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:55:59 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:55:59 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:55:59 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:55:59 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.13274 (min) -0.127041 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.157107 (min) 0.170666 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.907959 (min) -0.907193 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.87191 (min) -1.86949 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.795 (min) 13.8197 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.33229e-06 (min) 5.44469e-06 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 303.596 (min) 303.768 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:55:59 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:55:59 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.767450, mean: 4.776346, max: 4.784332
09:55:59 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:55:59 DEBUG   opendrift.models.physics_methods:1061:    min: 11.895225, mean: 11.906316, max: 11.916267
09:55:59 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.895225, mean: 11.906316, max: 11.916267
09:55:59 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:55:59 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:59 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:55:59 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:55:59 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.278423 m/s - 0.278916 m/s)
09:55:59 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:55:59 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:55:59 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:55:59 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:55:59 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:55:59 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:55:59 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:55:59 INFO    opendrift.models.basemodel:2038: 2024-10-18 17:00:00 - step 18 of 71 - 1000 active elements (0 deactivated)
09:55:59 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:55:59 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:55:59 DEBUG   opendrift.models.basemodel:2057:               60.258336709424896 <- latitude  -> 60.26908048541745
09:55:59 DEBUG   opendrift.models.basemodel:2062:               4.451502232284176 <- longitude -> 4.45509432820143
09:55:59 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:55:59 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:55:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55:59 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:55:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:55:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55:59 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:55:59 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:55:59 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:55:59 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:55:59 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:55:59 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:55: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:55:59 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:55:59 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:55:59 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:55:59 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:55: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:55:59 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 17:00:00 (before)
                2024-10-18 18:00:00 (after)
09:56:00 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:00 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:00 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:00 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-18 17:00:00)
09:56:00 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 17:00:00) in space  (linearNDFast)
09:56:00 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:00 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.54850860197173 and -65.54491651292952 degrees.
09:56:00 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.54850860197173 and -65.54491651292952 degrees.
09:56:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:00 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:00 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:00 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:00 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:00 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.152786 (min) -0.129083 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.276354 (min) 0.292023 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.819999 (min) -0.81893 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.70237 (min) -2.69541 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.6237 (min) 13.6937 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.25394e-05 (min) 4.2764e-05 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 302.53 (min) 303.294 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:00 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:00 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.744608, mean: 4.769551, max: 4.792453
09:56:00 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:00 DEBUG   opendrift.models.physics_methods:1061:    min: 11.866694, mean: 11.897839, max: 11.926375
09:56:00 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.866694, mean: 11.897839, max: 11.926375
09:56:00 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:00 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:00 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:00 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:00 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.277755 m/s - 0.279152 m/s)
09:56:00 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:00 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:00 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:00 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:00 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:00 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:00 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:00 INFO    opendrift.models.basemodel:2038: 2024-10-18 18:00:00 - step 19 of 71 - 1000 active elements (0 deactivated)
09:56:00 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:00 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:00 DEBUG   opendrift.models.basemodel:2057:               60.27657592612029 <- latitude  -> 60.28685853364986
09:56:00 DEBUG   opendrift.models.basemodel:2062:               4.439541317632304 <- longitude -> 4.441637670931959
09:56:00 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:00 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:00 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:00 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:00 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:00 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:00 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:00 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:00 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:00 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:00 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:00 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:00 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:00 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:56:00 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 18:00:00 (before)
                2024-10-18 19:00:00 (after)
09:56:01 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:01 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:01 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:01 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-18 18:00:00)
09:56:01 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 18:00:00) in space  (linearNDFast)
09:56:01 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:01 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56046952431907 and -65.55837316475656 degrees.
09:56:01 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56046952431907 and -65.55837316475656 degrees.
09:56:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:01 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:01 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:01 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:01 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:01 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.136608 (min) -0.101265 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.40152 (min) 0.40628 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.625012 (min) -0.624155 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.14074 (min) -3.12572 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.6165 (min) 13.6527 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.19187e-05 (min) 6.20659e-05 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.543 (min) 301.695 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:01 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:01 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.803741, mean: 4.814690, max: 4.825701
09:56:01 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:01 DEBUG   opendrift.models.physics_methods:1061:    min: 11.940414, mean: 11.954012, max: 11.967675
09:56:01 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.940414, mean: 11.954012, max: 11.967675
09:56:01 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:01 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:01 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:01 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.279481 m/s - 0.280119 m/s)
09:56:01 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:01 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:01 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:01 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:01 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:01 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:01 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:01 INFO    opendrift.models.basemodel:2038: 2024-10-18 19:00:00 - step 20 of 71 - 1000 active elements (0 deactivated)
09:56:01 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:01 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:01 DEBUG   opendrift.models.basemodel:2057:               60.29834847635935 <- latitude  -> 60.3088081083329
09:56:01 DEBUG   opendrift.models.basemodel:2062:               4.4285902016645196 <- longitude -> 4.42936411008342
09:56:01 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:01 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:01 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:01 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:01 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:01 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:01 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:01 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:01 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:01 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:01 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:01 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:01 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:01 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 19:00:00 (before)
                2024-10-18 20:00:00 (after)
09:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:02 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-18 19:00:00)
09:56:02 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 19:00:00) in space  (linearNDFast)
09:56:02 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:02 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57142064147304 and -65.57064671332648 degrees.
09:56:02 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.57142064147304 and -65.57064671332648 degrees.
09:56:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:02 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:02 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:02 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:02 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:02 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.069679 (min) -0.0647911 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.499868 (min) 0.508284 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.375988 (min) -0.373449 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.06185 (min) -4.05145 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.2772 (min) 13.3031 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.72107e-05 (min) 7.86865e-05 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.429 (min) 299.498 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:02 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:02 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.742225, mean: 4.747527, max: 4.757298
09:56:02 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:02 DEBUG   opendrift.models.physics_methods:1061:    min: 11.863714, mean: 11.870344, max: 11.882554
09:56:02 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.863714, mean: 11.870344, max: 11.882554
09:56:02 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:02 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:02 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:02 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.277686 m/s - 0.278127 m/s)
09:56:02 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:02 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:02 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:02 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:02 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:02 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:02 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:02 INFO    opendrift.models.basemodel:2038: 2024-10-18 20:00:00 - step 21 of 71 - 1000 active elements (0 deactivated)
09:56:02 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:02 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:02 DEBUG   opendrift.models.basemodel:2057:               60.32308152358949 <- latitude  -> 60.33362660773649
09:56:02 DEBUG   opendrift.models.basemodel:2062:               4.418848508223561 <- longitude -> 4.419774570762893
09:56:02 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:02 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:02 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:02 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:02 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:02 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:02 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:02 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:02 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:02 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:02 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:02 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:02 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:02 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 20:00:00 (before)
                2024-10-18 21:00:00 (after)
09:56:03 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:03 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:03 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:03 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-18 20:00:00)
09:56:03 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 20:00:00) in space  (linearNDFast)
09:56:03 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:03 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58116231200592 and -65.58023625728006 degrees.
09:56:03 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58116231200592 and -65.58023625728006 degrees.
09:56:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:03 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:03 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:03 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:03 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:03 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.000856244 (min) 0.00814644 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.435058 (min) 0.453619 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.0768797 (min) -0.0738552 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.26751 (min) -4.22559 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.5613 (min) 13.6283 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.42678e-05 (min) 8.4455e-05 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.658 (min) 297.953 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:03 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:03 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.972129, mean: 4.989905, max: 5.008227
09:56:03 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:03 DEBUG   opendrift.models.physics_methods:1061:    min: 12.147890, mean: 12.169580, max: 12.191905
09:56:03 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.147890, mean: 12.169580, max: 12.191905
09:56:03 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:03 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:03 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:03 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.284337 m/s - 0.285367 m/s)
09:56:03 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:03 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:03 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:03 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:03 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:03 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:03 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:03 INFO    opendrift.models.basemodel:2038: 2024-10-18 21:00:00 - step 22 of 71 - 1000 active elements (0 deactivated)
09:56:03 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:03 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:03 DEBUG   opendrift.models.basemodel:2057:               60.345901985530546 <- latitude  -> 60.35709005136441
09:56:03 DEBUG   opendrift.models.basemodel:2062:               4.413374961292927 <- longitude -> 4.414566063948151
09:56:03 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:03 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:03 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:03 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:03 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:03 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:03 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:03 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:03 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:03 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:03 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:03 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:03 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:03 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 21:00:00 (before)
                2024-10-18 22:00:00 (after)
09:56:04 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:04 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:04 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:04 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-18 21:00:00)
09:56:04 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 21:00:00) in space  (linearNDFast)
09:56:04 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:04 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58663585160201 and -65.58544474690476 degrees.
09:56:04 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58663585160201 and -65.58544474690476 degrees.
09:56:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:04 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:04 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:04 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:04 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:04 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0555148 (min) 0.0663558 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.342739 (min) 0.344897 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.209675 (min) 0.214367 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.23244 (min) -4.18965 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.3513 (min) 13.4139 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.92957e-05 (min) 6.93316e-05 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 297.937 (min) 298.167 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:04 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:04 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.816908, mean: 4.839786, max: 4.866962
09:56:04 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:04 DEBUG   opendrift.models.physics_methods:1061:    min: 11.956767, mean: 11.985122, max: 12.018729
09:56:04 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.956767, mean: 11.985122, max: 12.018729
09:56:04 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:04 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:04 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:04 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:04 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.279864 m/s - 0.281314 m/s)
09:56:04 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:04 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:04 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:04 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:04 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:04 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:04 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:04 INFO    opendrift.models.basemodel:2038: 2024-10-18 22:00:00 - step 23 of 71 - 1000 active elements (0 deactivated)
09:56:04 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:04 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:04 DEBUG   opendrift.models.basemodel:2057:               60.36570536047769 <- latitude  -> 60.37680493519581
09:56:04 DEBUG   opendrift.models.basemodel:2062:               4.412067459468245 <- longitude -> 4.41303660292071
09:56:04 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:04 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:04 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:04 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:04 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:04 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:04 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:04 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:04 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:04 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:04 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:04 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:04 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:56:04 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 22:00:00 (before)
                2024-10-18 23:00:00 (after)
09:56:05 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:05 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:05 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:05 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-10-18 22:00:00)
09:56:05 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 22:00:00) in space  (linearNDFast)
09:56:05 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:05 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5879433574098 and -65.58697420495164 degrees.
09:56:05 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5879433574098 and -65.58697420495164 degrees.
09:56:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:05 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:05 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:05 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:05 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:05 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0738021 (min) 0.077344 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.235844 (min) 0.243364 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.394101 (min) 0.398946 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.63489 (min) -5.59809 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.965 (min) 13.9881 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.68813e-05 (min) 2.72542e-05 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.477 (min) 298.865 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:05 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:05 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.578636, mean: 5.583651, max: 5.585950
09:56:05 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:05 DEBUG   opendrift.models.physics_methods:1061:    min: 12.867483, mean: 12.873265, max: 12.875915
09:56:05 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.867483, mean: 12.873265, max: 12.875915
09:56:05 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:05 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:05 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:05 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.301180 m/s - 0.301378 m/s)
09:56:05 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:05 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:05 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:05 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:05 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:05 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:05 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:05 INFO    opendrift.models.basemodel:2038: 2024-10-18 23:00:00 - step 24 of 71 - 1000 active elements (0 deactivated)
09:56:05 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:05 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:05 DEBUG   opendrift.models.basemodel:2057:               60.38234967173217 <- latitude  -> 60.393706989541755
09:56:05 DEBUG   opendrift.models.basemodel:2062:               4.409659804784619 <- longitude -> 4.410543345590683
09:56:05 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:05 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:05 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:05 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:05 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:05 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:05 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:05 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:05 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:05 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:05 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:05 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:05 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:05 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-18 23:00:00 (before)
                2024-10-19 00:00:00 (after)
09:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:06 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-18 23:00:00)
09:56:06 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-18 23:00:00) in space  (linearNDFast)
09:56:06 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:06 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59035100301426 and -65.58946745832732 degrees.
09:56:06 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59035100301426 and -65.58946745832732 degrees.
09:56:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:06 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:06 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:06 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:06 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:06 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.148262 (min) 0.185373 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0196477 (min) 0.0560853 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.406723 (min) 0.412701 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.08756 (min) -5.06919 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.2977 (min) 14.3023 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.61373e-05 (min) -2.54449e-05 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.046 (min) 299.381 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:06 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:06 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.662288, mean: 5.664697, max: 5.667365
09:56:06 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:06 DEBUG   opendrift.models.physics_methods:1061:    min: 12.963598, mean: 12.966356, max: 12.969408
09:56:06 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.963598, mean: 12.966356, max: 12.969408
09:56:06 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:06 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:06 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:06 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:06 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.303430 m/s - 0.303566 m/s)
09:56:06 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:06 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:06 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:06 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:06 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:06 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:06 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:06 INFO    opendrift.models.basemodel:2038: 2024-10-19 00:00:00 - step 25 of 71 - 1000 active elements (0 deactivated)
09:56:06 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:06 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:06 DEBUG   opendrift.models.basemodel:2057:               60.39340060446254 <- latitude  -> 60.403581610914024
09:56:06 DEBUG   opendrift.models.basemodel:2062:               4.4129841631032445 <- longitude -> 4.415563319426173
09:56:06 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:06 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:06 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:06 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:06 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:06 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:06 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:06 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:06 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:06 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:06 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:06 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:06 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:06 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 00:00:00 (before)
                2024-10-19 01:00:00 (after)
09:56:07 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:07 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:07 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:07 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-19 00:00:00)
09:56:07 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 00:00:00) in space  (linearNDFast)
09:56:07 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:07 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58702664284178 and -65.58444748223141 degrees.
09:56:07 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58702664284178 and -65.58444748223141 degrees.
09:56:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:07 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:07 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:07 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:07 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:07 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.151757 (min) 0.176718 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.123265 (min) -0.110295 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.222492 (min) 0.224799 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.79202 (min) -4.76465 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.293 (min) 15.3032 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -4.68705e-07 (min) -3.88134e-07 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.376 (min) 299.645 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:07 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:07 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.312840, mean: 6.318843, max: 6.325583
09:56:07 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:07 DEBUG   opendrift.models.physics_methods:1061:    min: 13.688062, mean: 13.694568, max: 13.701872
09:56:07 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.688062, mean: 13.694568, max: 13.701872
09:56:07 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:07 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:07 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:07 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:07 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.320387 m/s - 0.320710 m/s)
09:56:07 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:07 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:07 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:07 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:07 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:07 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:07 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:07 INFO    opendrift.models.basemodel:2038: 2024-10-19 01:00:00 - step 26 of 71 - 1000 active elements (0 deactivated)
09:56:07 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:07 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:07 DEBUG   opendrift.models.basemodel:2057:               60.39971937367983 <- latitude  -> 60.4094869570594
09:56:07 DEBUG   opendrift.models.basemodel:2062:               4.416757766416863 <- longitude -> 4.420843121063035
09:56:07 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:07 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:07 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:07 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:07 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:07 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:07 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:07 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:07 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:07 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:07 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:07 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:07 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:07 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 01:00:00 (before)
                2024-10-19 02:00:00 (after)
09:56:08 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:08 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:08 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:08 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-19 01:00:00)
09:56:08 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 01:00:00) in space  (linearNDFast)
09:56:08 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:08 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58325302569597 and -65.57916767607333 degrees.
09:56:08 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58325302569597 and -65.57916767607333 degrees.
09:56:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:08 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:08 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:08 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:08 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:08 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0685263 (min) 0.0843736 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.157099 (min) -0.133384 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.101036 (min) -0.100703 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.58236 (min) -3.49111 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.7812 (min) 15.819 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -0.000102447 (min) -0.000102255 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.558 (min) 299.806 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:08 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:08 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.442219, mean: 6.449106, max: 6.455961
09:56:08 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:08 DEBUG   opendrift.models.physics_methods:1061:    min: 13.827616, mean: 13.835006, max: 13.842357
09:56:08 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.827616, mean: 13.835006, max: 13.842357
09:56:08 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:08 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:08 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:08 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.323653 m/s - 0.323998 m/s)
09:56:08 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:08 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:08 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:08 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:08 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:08 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:08 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:08 INFO    opendrift.models.basemodel:2038: 2024-10-19 02:00:00 - step 27 of 71 - 1000 active elements (0 deactivated)
09:56:08 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:08 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:08 DEBUG   opendrift.models.basemodel:2057:               60.404865176856305 <- latitude  -> 60.415375003038726
09:56:08 DEBUG   opendrift.models.basemodel:2062:               4.416733794063619 <- longitude -> 4.421672894282941
09:56:08 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:08 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:08 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:08 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:08 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:08 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:08 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:08 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:08 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:08 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:08 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:08 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:08 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:56:08 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 02:00:00 (before)
                2024-10-19 03:00:00 (after)
09:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:09 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-10-19 02:00:00)
09:56:09 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 02:00:00) in space  (linearNDFast)
09:56:09 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:09 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5832769954038 and -65.57833790583544 degrees.
09:56:09 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5832769954038 and -65.57833790583544 degrees.
09:56:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:09 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:09 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:09 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:09 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:09 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0260982 (min) 0.0726328 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0620436 (min) -0.0317714 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.468426 (min) -0.466099 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.63773 (min) -5.62485 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.2889 (min) 14.2981 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.53856e-05 (min) -9.27606e-05 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.682 (min) 299.935 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:09 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:09 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.801951, mean: 5.806398, max: 5.810997
09:56:09 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:09 DEBUG   opendrift.models.physics_methods:1061:    min: 13.122501, mean: 13.127529, max: 13.132728
09:56:09 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.122501, mean: 13.127529, max: 13.132728
09:56:09 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:09 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:09 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:09 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:09 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.307149 m/s - 0.307389 m/s)
09:56:09 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:09 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:09 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:09 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:09 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:09 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:09 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:09 INFO    opendrift.models.basemodel:2038: 2024-10-19 03:00:00 - step 28 of 71 - 1000 active elements (0 deactivated)
09:56:09 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:09 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:09 DEBUG   opendrift.models.basemodel:2057:               60.412093915011624 <- latitude  -> 60.4235876964439
09:56:09 DEBUG   opendrift.models.basemodel:2062:               4.411152480767638 <- longitude -> 4.419049446403545
09:56:09 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:09 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:09 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:09 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:09 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:09 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:09 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:09 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:09 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:09 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:09 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:09 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:09 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:09 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 03:00:00 (before)
                2024-10-19 04:00:00 (after)
09:56:11 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:11 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:11 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:11 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x22x2) for time before (2024-10-19 03:00:00)
09:56:11 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 03:00:00) in space  (linearNDFast)
09:56:11 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:11 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5888583157874 and -65.58096134629207 degrees.
09:56:11 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5888583157874 and -65.58096134629207 degrees.
09:56:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:11 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:11 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:11 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:11 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:11 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.0669716 (min) 0.104515 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0551933 (min) 0.0617919 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.759547 (min) -0.757049 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.33393 (min) -3.32372 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.2947 (min) 14.3852 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.8705e-05 (min) -5.73914e-05 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 299.809 (min) 300.074 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:11 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:11 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.298507, mean: 5.333791, max: 5.363983
09:56:11 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:11 DEBUG   opendrift.models.physics_methods:1061:    min: 12.540254, mean: 12.581931, max: 12.617498
09:56:11 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.540254, mean: 12.581931, max: 12.617498
09:56:11 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:11 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:11 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:11 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:11 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.293521 m/s - 0.295329 m/s)
09:56:11 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:11 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:11 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:11 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:11 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:11 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:11 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:11 INFO    opendrift.models.basemodel:2038: 2024-10-19 04:00:00 - step 29 of 71 - 1000 active elements (0 deactivated)
09:56:11 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:11 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:11 DEBUG   opendrift.models.basemodel:2057:               60.42317158658416 <- latitude  -> 60.434756956375466
09:56:11 DEBUG   opendrift.models.basemodel:2062:               4.41119746814608 <- longitude -> 4.421534462306734
09:56:11 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:11 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:11 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:11 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:11 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:11 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:11 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:11 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:11 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:11 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:11 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:11 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:11 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:11 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 04:00:00 (before)
                2024-10-19 05:00:00 (after)
09:56:12 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:12 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:12 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:12 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-19 04:00:00)
09:56:12 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 04:00:00) in space  (linearNDFast)
09:56:12 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:12 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58881332394867 and -65.5784763201361 degrees.
09:56:12 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58881332394867 and -65.5784763201361 degrees.
09:56:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:12 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:12 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:12 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:12 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:12 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.111758 (min) 0.14905 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.20008 (min) 0.224427 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.898136 (min) -0.892884 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.85221 (min) -1.80002 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.7378 (min) 14.7714 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.98016e-05 (min) -1.90485e-05 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.002 (min) 300.295 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:12 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:12 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.422935, mean: 5.439528, max: 5.451969
09:56:12 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:12 DEBUG   opendrift.models.physics_methods:1061:    min: 12.686645, mean: 12.706036, max: 12.720561
09:56:12 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.686645, mean: 12.706036, max: 12.720561
09:56:12 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:12 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:12 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:12 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.296947 m/s - 0.297741 m/s)
09:56:12 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:12 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:12 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:12 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:12 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:12 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:12 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:12 INFO    opendrift.models.basemodel:2038: 2024-10-19 05:00:00 - step 30 of 71 - 1000 active elements (0 deactivated)
09:56:12 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:12 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:12 DEBUG   opendrift.models.basemodel:2057:               60.43915967313565 <- latitude  -> 60.45155321359995
09:56:12 DEBUG   opendrift.models.basemodel:2062:               4.4162227102546945 <- longitude -> 4.42885787902748
09:56:12 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:12 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:12 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:12 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:12 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:12 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:12 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:12 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:12 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:12 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:12 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:12 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:12 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:12 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 05:00:00 (before)
                2024-10-19 06:00:00 (after)
09:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:13 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-19 05:00:00)
09:56:13 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 05:00:00) in space  (linearNDFast)
09:56:13 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:13 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58378806945792 and -65.57115289464124 degrees.
09:56:13 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.58378806945792 and -65.57115289464124 degrees.
09:56:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:13 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:13 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:13 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:13 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:13 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.157184 (min) 0.197524 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.350527 (min) 0.35527 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.871859 (min) -0.869026 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.4835 (min) -1.41561 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.0797 (min) 14.1476 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.97813e-05 (min) 2.99172e-05 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.317 (min) 300.706 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:13 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:13 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.930747, mean: 4.947132, max: 4.973111
09:56:13 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:13 DEBUG   opendrift.models.physics_methods:1061:    min: 12.097230, mean: 12.117310, max: 12.149087
09:56:13 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.097230, mean: 12.117310, max: 12.149087
09:56:13 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:13 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:13 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:13 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:13 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.283151 m/s - 0.284365 m/s)
09:56:13 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:13 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:13 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:13 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:13 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:13 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:13 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:13 INFO    opendrift.models.basemodel:2038: 2024-10-19 06:00:00 - step 31 of 71 - 1000 active elements (0 deactivated)
09:56:13 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:13 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:13 DEBUG   opendrift.models.basemodel:2057:               60.459583205100294 <- latitude  -> 60.47217361802272
09:56:13 DEBUG   opendrift.models.basemodel:2062:               4.42462136660215 <- longitude -> 4.439929360691727
09:56:13 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:13 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:13 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:13 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:13 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:13 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:13 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:13 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:13 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:13 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:13 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:13 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:13 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:13 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 06:00:00 (before)
                2024-10-19 07:00:00 (after)
09:56:14 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:14 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:14 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:14 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-19 06:00:00)
09:56:14 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 06:00:00) in space  (linearNDFast)
09:56:14 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:14 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5753894182096 and -65.56008141699427 degrees.
09:56:14 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5753894182096 and -65.56008141699427 degrees.
09:56:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:14 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:14 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:14 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:14 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:14 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.210938 (min) 0.260832 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.417039 (min) 0.427219 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.707323 (min) -0.705385 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.86868 (min) -4.73763 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.0252 (min) 14.0752 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.04693e-05 (min) 6.05967e-05 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.817 (min) 301.471 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:14 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:14 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.420802, mean: 5.424822, max: 5.428374
09:56:14 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:14 DEBUG   opendrift.models.physics_methods:1061:    min: 12.684149, mean: 12.688852, max: 12.693005
09:56:14 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.684149, mean: 12.688852, max: 12.693005
09:56:14 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:14 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:14 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:14 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.296889 m/s - 0.297096 m/s)
09:56:14 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:14 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:14 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:14 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:14 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:14 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:14 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:14 INFO    opendrift.models.basemodel:2038: 2024-10-19 07:00:00 - step 32 of 71 - 1000 active elements (0 deactivated)
09:56:14 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:14 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:14 DEBUG   opendrift.models.basemodel:2057:               60.48212006447429 <- latitude  -> 60.495071255912436
09:56:14 DEBUG   opendrift.models.basemodel:2062:               4.432105634238068 <- longitude -> 4.4508023045361975
09:56:14 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:14 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:14 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:14 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:14 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:14 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:14 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:14 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:14 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:14 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:14 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:14 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:14 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:14 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 07:00:00 (before)
                2024-10-19 08:00:00 (after)
09:56:15 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:15 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:15 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:15 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-19 07:00:00)
09:56:15 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 07:00:00) in space  (linearNDFast)
09:56:15 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:15 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56790513571818 and -65.5492084486547 degrees.
09:56:15 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56790513571818 and -65.5492084486547 degrees.
09:56:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:15 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:15 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:15 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:15 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:15 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.265371 (min) 0.323449 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.454526 (min) 0.46934 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.451791 (min) -0.450889 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -6.1189 (min) -6.01907 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.4296 (min) 13.4831 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.10739e-05 (min) 8.14228e-05 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 301.561 (min) 303.271 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:15 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:15 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.357612, mean: 5.359668, max: 5.363356
09:56:15 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:15 DEBUG   opendrift.models.physics_methods:1061:    min: 12.610004, mean: 12.612423, max: 12.616761
09:56:15 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.610004, mean: 12.612423, max: 12.616761
09:56:15 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:15 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:15 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:15 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.295154 m/s - 0.295312 m/s)
09:56:15 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:15 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:15 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:15 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:15 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:15 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:15 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:15 INFO    opendrift.models.basemodel:2038: 2024-10-19 08:00:00 - step 33 of 71 - 1000 active elements (0 deactivated)
09:56:15 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:15 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:15 DEBUG   opendrift.models.basemodel:2057:               60.50548260752048 <- latitude  -> 60.51894644254945
09:56:15 DEBUG   opendrift.models.basemodel:2062:               4.441470124756144 <- longitude -> 4.46410677947483
09:56:15 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:15 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:15 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:15 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:15 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:15 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:15 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:15 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:15 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:15 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:15 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:15 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:15 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:56:15 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 08:00:00 (before)
                2024-10-19 09:00:00 (after)
09:56:16 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:16 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:16 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:16 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x23x2) for time before (2024-10-19 08:00:00)
09:56:16 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 08:00:00) in space  (linearNDFast)
09:56:16 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:16 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.55854063845668 and -65.53590397920907 degrees.
09:56:16 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.55854063845668 and -65.53590397920907 degrees.
09:56:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:16 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:16 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:16 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:16 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:16 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.330967 (min) 0.387307 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.474139 (min) 0.484117 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.144642 (min) -0.143805 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -5.53692 (min) -5.47776 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.9595 (min) 14.0992 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.18376e-05 (min) 9.21222e-05 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 303.402 (min) 308.521 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:16 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:16 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.547913, mean: 5.601478, max: 5.628288
09:56:16 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:16 DEBUG   opendrift.models.physics_methods:1061:    min: 12.832001, mean: 12.893786, max: 12.924618
09:56:16 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.832001, mean: 12.893786, max: 12.924618
09:56:16 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:16 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:16 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:16 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.300350 m/s - 0.302518 m/s)
09:56:16 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:16 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:16 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:16 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:16 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:16 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:16 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:16 INFO    opendrift.models.basemodel:2038: 2024-10-19 09:00:00 - step 34 of 71 - 1000 active elements (0 deactivated)
09:56:16 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:16 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:16 DEBUG   opendrift.models.basemodel:2057:               60.5298206009756 <- latitude  -> 60.54369637755629
09:56:16 DEBUG   opendrift.models.basemodel:2062:               4.455903898415843 <- longitude -> 4.482318870426898
09:56:16 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:16 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:16 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:16 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:16 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:16 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:16 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:16 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:16 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:16 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:16 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:16 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:16 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:16 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 09:00:00 (before)
                2024-10-19 10:00:00 (after)
09:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:17 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-19 09:00:00)
09:56:17 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 09:00:00) in space  (linearNDFast)
09:56:17 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:17 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.54410685320116 and -65.51769188138677 degrees.
09:56:17 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.54410685320116 and -65.51769188138677 degrees.
09:56:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:17 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:17 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:17 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:17 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:17 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.438071 (min) 0.49108 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.440015 (min) 0.446672 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.167403 (min) 0.167675 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.30898 (min) -3.252 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 14.2874 (min) 14.3084 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.12928e-05 (min) 8.18805e-05 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 309.401 (min) 320.243 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:17 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:17 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.281723, mean: 5.291834, max: 5.305739
09:56:17 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:17 DEBUG   opendrift.models.physics_methods:1061:    min: 12.520376, mean: 12.532354, max: 12.548810
09:56:17 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.520376, mean: 12.532354, max: 12.548810
09:56:17 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:17 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:17 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:17 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:17 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.293056 m/s - 0.293721 m/s)
09:56:17 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:17 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:17 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:17 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:17 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:17 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:17 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:17 INFO    opendrift.models.basemodel:2038: 2024-10-19 10:00:00 - step 35 of 71 - 1000 active elements (0 deactivated)
09:56:17 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:17 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:17 DEBUG   opendrift.models.basemodel:2057:               60.55328024553802 <- latitude  -> 60.56735665458294
09:56:17 DEBUG   opendrift.models.basemodel:2062:               4.480297311199116 <- longitude -> 4.510276343295599
09:56:17 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:17 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:17 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:17 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:17 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:17 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:17 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:17 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:17 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:17 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:17 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:17 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:17 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:17 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 10:00:00 (before)
                2024-10-19 11:00:00 (after)
09:56:18 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:18 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:18 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:18 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x23x2) for time before (2024-10-19 10:00:00)
09:56:18 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 10:00:00) in space  (linearNDFast)
09:56:18 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:18 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5197134367117 and -65.48973439612614 degrees.
09:56:18 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5197134367117 and -65.48973439612614 degrees.
09:56:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:18 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:18 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:18 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:18 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:18 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.483975 (min) 0.529701 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.287306 (min) 0.348585 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.392396 (min) 0.396271 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.66995 (min) -2.60274 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.2973 (min) 14.2561 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.07766e-05 (min) 4.1548e-05 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 322.881 (min) 334.841 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:18 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:18 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.516391, mean: 4.876809, max: 5.174993
09:56:18 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:18 DEBUG   opendrift.models.physics_methods:1061:    min: 11.577783, mean: 12.029761, max: 12.393228
09:56:18 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.577783, mean: 12.029761, max: 12.393228
09:56:18 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:18 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:18 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:18 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:18 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.270993 m/s - 0.290080 m/s)
09:56:18 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:18 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:18 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:18 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:18 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:18 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:18 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:18 INFO    opendrift.models.basemodel:2038: 2024-10-19 11:00:00 - step 36 of 71 - 1000 active elements (0 deactivated)
09:56:18 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:18 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:18 DEBUG   opendrift.models.basemodel:2057:               60.5737505825158 <- latitude  -> 60.585228192347394
09:56:18 DEBUG   opendrift.models.basemodel:2062:               4.511370785632019 <- longitude -> 4.538636234805122
09:56:18 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:18 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:18 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:18 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:18 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:18 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:18 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:18 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:18 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:18 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:18 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:18 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:18 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:18 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 11:00:00 (before)
                2024-10-19 12:00:00 (after)
09:56:19 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:19 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:19 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:19 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-19 11:00:00)
09:56:19 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 11:00:00) in space  (linearNDFast)
09:56:19 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:19 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48863994814045 and -65.46137450381786 degrees.
09:56:19 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48863994814045 and -65.46137450381786 degrees.
09:56:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:19 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:19 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:19 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:19 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:19 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.307788 (min) 0.519545 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.18652 (min) 0.221556 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.44623 (min) 0.446887 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.338784 (min) -0.142871 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.9988 (min) 13.8659 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.41721e-05 (min) -1.38102e-05 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 336.853 (min) 343.513 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:19 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:19 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.159468, mean: 4.387535, max: 4.730182
09:56:19 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:19 DEBUG   opendrift.models.physics_methods:1061:    min: 11.110881, mean: 11.410591, max: 11.848641
09:56:19 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.110881, mean: 11.410591, max: 11.848641
09:56:19 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:19 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:19 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:19 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:19 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.260065 m/s - 0.277333 m/s)
09:56:19 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:19 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:19 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:19 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:19 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:19 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:19 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:19 INFO    opendrift.models.basemodel:2038: 2024-10-19 12:00:00 - step 37 of 71 - 1000 active elements (0 deactivated)
09:56:19 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:19 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:19 DEBUG   opendrift.models.basemodel:2057:               60.58986464078266 <- latitude  -> 60.60014460826761
09:56:19 DEBUG   opendrift.models.basemodel:2062:               4.545302000072942 <- longitude -> 4.558410484417
09:56:19 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:19 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:19 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:19 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:19 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:19 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:19 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:19 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:19 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:19 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:19 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:19 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:19 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:19 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 12:00:00 (before)
                2024-10-19 13:00:00 (after)
09:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:20 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-19 12:00:00)
09:56:20 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 12:00:00) in space  (linearNDFast)
09:56:20 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:20 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4547087250078 and -65.44160023500552 degrees.
09:56:20 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.4547087250078 and -65.44160023500552 degrees.
09:56:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:20 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:20 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:20 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:20 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:20 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.210409 (min) 0.342811 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.193017 (min) 0.243893 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.299594 (min) 0.300723 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.350475 (min) -0.235805 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.8785 (min) 13.9624 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.8091e-05 (min) -6.79188e-05 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 345.231 (min) 348.549 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:20 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:20 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.741292, mean: 4.777083, max: 4.797114
09:56:20 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:20 DEBUG   opendrift.models.physics_methods:1061:    min: 11.862546, mean: 11.907230, max: 11.932175
09:56:20 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.862546, mean: 11.907230, max: 11.932175
09:56:20 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:20 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:20 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:20 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:20 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.277658 m/s - 0.279288 m/s)
09:56:20 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:20 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:20 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:20 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:20 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:20 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:20 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:20 INFO    opendrift.models.basemodel:2038: 2024-10-19 13:00:00 - step 38 of 71 - 1000 active elements (0 deactivated)
09:56:20 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:20 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:20 DEBUG   opendrift.models.basemodel:2057:               60.605067148641545 <- latitude  -> 60.617046291582184
09:56:20 DEBUG   opendrift.models.basemodel:2062:               4.56731663890196 <- longitude -> 4.571929716795836
09:56:20 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:20 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:20 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:20 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:20 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:20 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:20 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:20 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:20 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:20 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:20 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:20 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:20 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:20 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 13:00:00 (before)
                2024-10-19 14:00:00 (after)
09:56:21 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:21 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:21 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:21 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity']
09:56:21 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x22x2) for time before (2024-10-19 13:00:00)
09:56:21 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 13:00:00) in space  (linearNDFast)
09:56:21 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:21 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43269409153038 and -65.42808100794338 degrees.
09:56:21 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43269409153038 and -65.42808100794338 degrees.
09:56:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:21 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:21 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:21 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:21 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:21 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.119228 (min) 0.186071 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.210294 (min) 0.229104 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.000508057 (min) 0.00166186 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.16351 (min) -3.0368 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.4893 (min) 13.5473 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.93653e-05 (min) -9.92015e-05 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 349.799 (min) 352.869 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:21 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:21 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.719200, mean: 4.721422, max: 4.741710
09:56:21 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:21 DEBUG   opendrift.models.physics_methods:1061:    min: 11.834876, mean: 11.837663, max: 11.863069
09:56:21 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.834876, mean: 11.837663, max: 11.863069
09:56:21 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:21 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:21 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:21 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:21 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.277011 m/s - 0.277671 m/s)
09:56:21 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:21 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:21 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:21 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:21 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:21 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:21 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:21 INFO    opendrift.models.basemodel:2038: 2024-10-19 14:00:00 - step 39 of 71 - 1000 active elements (0 deactivated)
09:56:21 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:21 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:21 DEBUG   opendrift.models.basemodel:2057:               60.62057762713303 <- latitude  -> 60.63320231209319
09:56:21 DEBUG   opendrift.models.basemodel:2062:               4.575251296466246 <- longitude -> 4.576531213221915
09:56:21 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:21 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:21 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:21 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:21 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:21 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:21 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:21 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:21 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:21 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:21 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:21 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:21 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:21 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:56:21 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 14:00:00 (before)
                2024-10-19 15:00:00 (after)
09:56:22 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:22 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:22 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:22 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:22 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-19 14:00:00)
09:56:22 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 14:00:00) in space  (linearNDFast)
09:56:22 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:22 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42475941502076 and -65.42347948948155 degrees.
09:56:22 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42475941502076 and -65.42347948948155 degrees.
09:56:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:22 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:22 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:22 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:22 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:22 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.04761 (min) 0.0833333 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.23521 (min) 0.270227 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.380212 (min) -0.37967 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.44372 (min) -3.42161 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.5592 (min) 12.6351 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -0.000105581 (min) -0.000105394 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 353.218 (min) 355.234 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:22 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:22 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.168234, mean: 4.199178, max: 4.219010
09:56:22 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:22 DEBUG   opendrift.models.physics_methods:1061:    min: 11.122583, mean: 11.163785, max: 11.190123
09:56:22 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.122583, mean: 11.163785, max: 11.190123
09:56:22 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:22 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:22 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:22 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:22 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.260339 m/s - 0.261919 m/s)
09:56:22 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:22 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:22 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:22 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:22 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:22 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:22 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:22 INFO    opendrift.models.basemodel:2038: 2024-10-19 15:00:00 - step 40 of 71 - 1000 active elements (0 deactivated)
09:56:22 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:22 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:22 DEBUG   opendrift.models.basemodel:2057:               60.63629845403797 <- latitude  -> 60.6500976533912
09:56:22 DEBUG   opendrift.models.basemodel:2062:               4.574374773446247 <- longitude -> 4.576791471659818
09:56:22 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:22 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:22 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:22 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:22 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:22 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:22 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:22 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:22 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:22 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:22 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:22 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:22 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:22 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 15:00:00 (before)
                2024-10-19 16:00:00 (after)
09:56:23 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:23 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:23 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-19 15:00:00)
09:56:23 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 15:00:00) in space  (linearNDFast)
09:56:23 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:23 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42563592773459 and -65.42321922994337 degrees.
09:56:23 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42563592773459 and -65.42321922994337 degrees.
09:56:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:23 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:23 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:23 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:23 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00402652 (min) 0.030604 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.306695 (min) 0.348868 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.712393 (min) -0.711322 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.52093 (min) -2.46236 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.1294 (min) 13.1508 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.35059e-05 (min) -7.34102e-05 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 355.212 (min) 355.832 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:23 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:23 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.389744, mean: 4.401955, max: 4.410728
09:56:23 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:23 DEBUG   opendrift.models.physics_methods:1061:    min: 11.414297, mean: 11.430161, max: 11.441547
09:56:23 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.414297, mean: 11.430161, max: 11.441547
09:56:23 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:23 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:23 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:23 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.267167 m/s - 0.267804 m/s)
09:56:23 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:23 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:23 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:23 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:23 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:23 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:23 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:23 INFO    opendrift.models.basemodel:2038: 2024-10-19 16:00:00 - step 41 of 71 - 1000 active elements (0 deactivated)
09:56:23 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:23 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:23 DEBUG   opendrift.models.basemodel:2057:               60.65470591229884 <- latitude  -> 60.66985328561506
09:56:23 DEBUG   opendrift.models.basemodel:2062:               4.570866669900512 <- longitude -> 4.575108649057141
09:56:23 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:23 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:23 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:23 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:23 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:23 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:23 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:23 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:23 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:23 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:23 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:23 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 16:00:00 (before)
                2024-10-19 17:00:00 (after)
09:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:24 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:24 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-19 16:00:00)
09:56:24 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 16:00:00) in space  (linearNDFast)
09:56:24 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:24 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42914402030618 and -65.42490204969158 degrees.
09:56:24 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.42914402030618 and -65.42490204969158 degrees.
09:56:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:24 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:24 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:24 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:24 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:24 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.076303 (min) -0.023667 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.407377 (min) 0.463475 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.904384 (min) -0.902911 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.24289 (min) -3.20998 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.1226 (min) 13.1807 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.9425e-05 (min) -2.90472e-05 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 350.078 (min) 353.826 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:24 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:24 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.489914, mean: 4.506879, max: 4.532456
09:56:24 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:24 DEBUG   opendrift.models.physics_methods:1061:    min: 11.543795, mean: 11.565577, max: 11.598354
09:56:24 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.543795, mean: 11.565577, max: 11.598354
09:56:24 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:24 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:24 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:24 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:24 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.270198 m/s - 0.271475 m/s)
09:56:24 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:24 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:24 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:24 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:24 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:24 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:24 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:24 INFO    opendrift.models.basemodel:2038: 2024-10-19 17:00:00 - step 42 of 71 - 1000 active elements (0 deactivated)
09:56:24 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:24 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:24 DEBUG   opendrift.models.basemodel:2057:               60.67638007771842 <- latitude  -> 60.69334467509892
09:56:24 DEBUG   opendrift.models.basemodel:2062:               4.561565522235628 <- longitude -> 4.569319632591028
09:56:24 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:24 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:24 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:24 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:24 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:24 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:24 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:24 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:24 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:24 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:24 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:24 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:24 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:24 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 17:00:00 (before)
                2024-10-19 18:00:00 (after)
09:56:25 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:25 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:25 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:25 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:25 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-19 17:00:00)
09:56:25 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 17:00:00) in space  (linearNDFast)
09:56:25 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:25 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43844516403269 and -65.43069105912664 degrees.
09:56:25 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.43844516403269 and -65.43069105912664 degrees.
09:56:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:25 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:25 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:25 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:25 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:25 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.112991 (min) -0.084581 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.561583 (min) 0.615633 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.925737 (min) -0.924656 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.29218 (min) -3.19185 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.5787 (min) 12.6986 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 1.76438e-05 (min) 1.79266e-05 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 340.693 (min) 347.129 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:25 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:25 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.142952, mean: 4.179364, max: 4.233459
09:56:25 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:25 DEBUG   opendrift.models.physics_methods:1061:    min: 11.088799, mean: 11.137390, max: 11.209268
09:56:25 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.088799, mean: 11.137390, max: 11.209268
09:56:25 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:25 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:25 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:25 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.259548 m/s - 0.262368 m/s)
09:56:25 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:25 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:25 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:25 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:25 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:25 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:25 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:25 INFO    opendrift.models.basemodel:2038: 2024-10-19 18:00:00 - step 43 of 71 - 1000 active elements (0 deactivated)
09:56:25 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:25 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:25 DEBUG   opendrift.models.basemodel:2057:               60.70268344006918 <- latitude  -> 60.72126548233103
09:56:25 DEBUG   opendrift.models.basemodel:2062:               4.549786094108733 <- longitude -> 4.559537470976072
09:56:25 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:25 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:25 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:25 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:25 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:25 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:25 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:25 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:25 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:25 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:25 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:25 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:25 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:25 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 18:00:00 (before)
                2024-10-19 19:00:00 (after)
09:56:26 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:26 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:26 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:26 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:26 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x2) for time before (2024-10-19 18:00:00)
09:56:26 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 18:00:00) in space  (linearNDFast)
09:56:26 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:26 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45022459407542 and -65.44047322691458 degrees.
09:56:26 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.45022459407542 and -65.44047322691458 degrees.
09:56:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:26 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:26 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:26 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:26 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:26 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.129396 (min) -0.124057 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.709593 (min) 0.735627 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.787111 (min) -0.783215 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.65194 (min) -2.62168 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.9573 (min) 13.0044 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.7128e-05 (min) 5.94455e-05 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 330.198 (min) 334.952 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:26 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:26 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.303126, mean: 4.315073, max: 4.329266
09:56:26 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:26 DEBUG   opendrift.models.physics_methods:1061:    min: 11.301124, mean: 11.316797, max: 11.335396
09:56:26 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 11.301124, mean: 11.316797, max: 11.335396
09:56:26 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:26 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:26 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:26 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.264518 m/s - 0.265320 m/s)
09:56:26 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:26 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:26 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:26 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:26 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:26 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:26 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:26 INFO    opendrift.models.basemodel:2038: 2024-10-19 19:00:00 - step 44 of 71 - 1000 active elements (0 deactivated)
09:56:26 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:26 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:26 DEBUG   opendrift.models.basemodel:2057:               60.73406658340819 <- latitude  -> 60.753226452829
09:56:26 DEBUG   opendrift.models.basemodel:2062:               4.537932072169698 <- longitude -> 4.54750203771892
09:56:26 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:26 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:26 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:26 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:26 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:26 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:26 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:26 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:26 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:26 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:26 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:26 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:26 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:26 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 19:00:00 (before)
                2024-10-19 20:00:00 (after)
09:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:27 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:27 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x23x2) for time before (2024-10-19 19:00:00)
09:56:27 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 19:00:00) in space  (linearNDFast)
09:56:27 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:27 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46207859566529 and -65.45250863891305 degrees.
09:56:27 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.46207859566529 and -65.45250863891305 degrees.
09:56:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:27 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:27 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:27 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:27 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:27 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.129147 (min) -0.105575 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.770618 (min) 0.860754 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.530683 (min) -0.529813 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.73334 (min) -1.71643 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.4871 (min) 12.4983 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.35874e-05 (min) 8.511e-05 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 319.298 (min) 323.399 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:27 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:27 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.909271, mean: 3.912451, max: 3.915184
09:56:27 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:27 DEBUG   opendrift.models.physics_methods:1061:    min: 10.771531, mean: 10.775912, max: 10.779674
09:56:27 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.771531, mean: 10.775912, max: 10.779674
09:56:27 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:27 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:27 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:27 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:27 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.252122 m/s - 0.252312 m/s)
09:56:27 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:27 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:27 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:27 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:27 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:27 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:27 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:27 INFO    opendrift.models.basemodel:2038: 2024-10-19 20:00:00 - step 45 of 71 - 1000 active elements (0 deactivated)
09:56:27 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:27 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:27 DEBUG   opendrift.models.basemodel:2057:               60.769921272241035 <- latitude  -> 60.786199909088275
09:56:27 DEBUG   opendrift.models.basemodel:2062:               4.528057674854698 <- longitude -> 4.53668432358306
09:56:27 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:27 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:27 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:27 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:27 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:27 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:27 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:27 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:27 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:27 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:27 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:27 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:27 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:27 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 20:00:00 (before)
                2024-10-19 21:00:00 (after)
09:56:28 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:28 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:28 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:28 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:28 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x2) for time before (2024-10-19 20:00:00)
09:56:28 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 20:00:00) in space  (linearNDFast)
09:56:28 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:28 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47195299274824 and -65.4633263458238 degrees.
09:56:28 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.47195299274824 and -65.4633263458238 degrees.
09:56:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:28 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:28 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:28 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:28 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:28 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.1358 (min) -0.0926667 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.733248 (min) 0.853339 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.194693 (min) -0.193387 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.53501 (min) -1.48518 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 11.5808 (min) 11.6573 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.819e-05 (min) 9.89589e-05 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 308.082 (min) 311.075 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:28 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:28 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.355831, mean: 3.369361, max: 3.397408
09:56:28 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:28 DEBUG   opendrift.models.physics_methods:1061:    min: 9.979979, mean: 10.000068, max: 10.041612
09:56:28 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.979979, mean: 10.000068, max: 10.041612
09:56:28 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:28 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:28 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:28 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:28 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.233594 m/s - 0.235037 m/s)
09:56:28 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:28 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:28 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:28 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:28 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:28 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:28 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:28 INFO    opendrift.models.basemodel:2038: 2024-10-19 21:00:00 - step 46 of 71 - 1000 active elements (0 deactivated)
09:56:28 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:28 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:28 DEBUG   opendrift.models.basemodel:2057:               60.80490474980145 <- latitude  -> 60.817422296967486
09:56:28 DEBUG   opendrift.models.basemodel:2062:               4.517107215967865 <- longitude -> 4.528325424197187
09:56:28 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:28 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:28 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:28 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:28 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:28 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:28 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:28 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:28 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:28 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:28 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:28 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:28 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:28 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 21:00:00 (before)
                2024-10-19 22:00:00 (after)
09:56:29 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:29 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:29 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:29 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:29 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-19 21:00:00)
09:56:29 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 21:00:00) in space  (linearNDFast)
09:56:29 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:29 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48290342682853 and -65.4716852280792 degrees.
09:56:29 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.48290342682853 and -65.4716852280792 degrees.
09:56:29 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:29 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:29 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:29 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:29 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:29 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.137329 (min) -0.0845581 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.680266 (min) 0.779773 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.148738 (min) 0.15064 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.357263 (min) -0.285439 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.7727 (min) 12.8197 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.9409e-05 (min) 8.98355e-05 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 296.802 (min) 305.363 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:29 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:29 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 4.016419, mean: 4.029781, max: 4.044891
09:56:29 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:29 DEBUG   opendrift.models.physics_methods:1061:    min: 10.918151, mean: 10.936295, max: 10.956782
09:56:29 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.918151, mean: 10.936295, max: 10.956782
09:56:29 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:29 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:30 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:30 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:30 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.255554 m/s - 0.256458 m/s)
09:56:30 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:30 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:30 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:30 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:30 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:30 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:30 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:30 INFO    opendrift.models.basemodel:2038: 2024-10-19 22:00:00 - step 47 of 71 - 1000 active elements (0 deactivated)
09:56:30 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:30 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:30 DEBUG   opendrift.models.basemodel:2057:               60.83830439751951 <- latitude  -> 60.84768391885477
09:56:30 DEBUG   opendrift.models.basemodel:2062:               4.507638003162735 <- longitude -> 4.52225626135379
09:56:30 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:30 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:30 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:30 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:30 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:30 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:30 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:30 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:30 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:30 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:30 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:30 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:30 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:30 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 22:00:00 (before)
                2024-10-19 23:00:00 (after)
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:31 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:31 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x24x2) for time before (2024-10-19 22:00:00)
09:56:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 22:00:00) in space  (linearNDFast)
09:56:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:31 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49237264443934 and -65.4777543843959 degrees.
09:56:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49237264443934 and -65.4777543843959 degrees.
09:56:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:31 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:31 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:31 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:31 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.126866 (min) -0.0851057 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.551716 (min) 0.582565 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.428517 (min) 0.430243 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 2.10274 (min) 2.52489 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.5758 (min) 10.9935 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 5.73665e-05 (min) 5.75696e-05 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 284.414 (min) 293.495 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:31 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.908285, mean: 3.011859, max: 3.081838
09:56:31 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:31 DEBUG   opendrift.models.physics_methods:1061:    min: 9.290692, mean: 9.454502, max: 9.563888
09:56:31 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 9.290692, mean: 9.454502, max: 9.563888
09:56:31 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:31 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:31 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:31 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:31 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.217461 m/s - 0.223855 m/s)
09:56:31 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:31 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:31 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:31 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:31 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:31 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:31 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:31 INFO    opendrift.models.basemodel:2038: 2024-10-19 23:00:00 - step 48 of 71 - 1000 active elements (0 deactivated)
09:56:31 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:31 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:31 DEBUG   opendrift.models.basemodel:2057:               60.86421463658271 <- latitude  -> 60.87299996069447
09:56:31 DEBUG   opendrift.models.basemodel:2062:               4.502998469536449 <- longitude -> 4.51940530435488
09:56:31 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:31 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:31 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:31 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:31 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['sea_floor_depth_below_sea_level', 'x_wind', 'y_wind', 'x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity', 'sea_surface_height']
09:56:31 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:31 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:31 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be covering 1000 elements
09:56:31 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-19 23:00:00 (before)
                2024-10-20 00:00:00 (after)
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:31 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:31 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:31 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x23x2) for time before (2024-10-19 23:00:00)
09:56:31 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-19 23:00:00) in space  (linearNDFast)
09:56:31 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:31 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49701217347736 and -65.48060532735265 degrees.
09:56:31 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.49701217347736 and -65.48060532735265 degrees.
09:56:31 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:31 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:31 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:31 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:31 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.245809 (min) -0.0812762 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.236152 (min) 0.300791 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.543375 (min) 0.545741 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 6.19886 (min) 6.25674 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 1.15071 (min) 1.16076 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.59286e-05 (min) -1.16416e-05 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 258.211 (min) 264.053 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:31 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:31 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.977999, mean: 0.986838, max: 0.995604
09:56:31 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:31 DEBUG   opendrift.models.physics_methods:1061:    min: 5.387642, mean: 5.411925, max: 5.435918
09:56:31 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.387642, mean: 5.411925, max: 5.435918
09:56:32 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:32 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:32 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:32 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:32 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.126105 m/s - 0.127235 m/s)
09:56:32 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:32 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:32 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:32 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:32 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:32 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:32 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:32 INFO    opendrift.models.basemodel:2038: 2024-10-20 00:00:00 - step 49 of 71 - 1000 active elements (0 deactivated)
09:56:32 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:32 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:32 DEBUG   opendrift.models.basemodel:2057:               60.87467717610155 <- latitude  -> 60.881539934175024
09:56:32 DEBUG   opendrift.models.basemodel:2062:               4.49499963370939 <- longitude -> 4.5221539838726885
09:56:32 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:32 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:32 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:32 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:32 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:32 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:32 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:32 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:32 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:32 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:32 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:32 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:32 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:32 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 00:00:00 (before)
                2024-10-20 01:00:00 (after)
09:56:32 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:32 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:32 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:32 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:32 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x24x2) for time before (2024-10-20 00:00:00)
09:56:32 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 00:00:00) in space  (linearNDFast)
09:56:32 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:32 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:32 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5050109911236 and -65.47785664476926 degrees.
09:56:33 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5050109911236 and -65.47785664476926 degrees.
09:56:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:33 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:33 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:33 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:33 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:33 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.453949 (min) -0.251982 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0327051 (min) 0.107393 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.449757 (min) 0.452352 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 4.16246 (min) 4.36336 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -0.810997 (min) -0.700748 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -1.50461e-06 (min) -1.83398e-07 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 242.399 (min) 260.881 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:33 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:33 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.438300, mean: 0.461318, max: 0.484537
09:56:33 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:33 DEBUG   opendrift.models.physics_methods:1061:    min: 3.606745, mean: 3.700047, max: 3.792216
09:56:33 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.606745, mean: 3.700047, max: 3.792216
09:56:33 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:33 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:33 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:33 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:33 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.084421 m/s - 0.088762 m/s)
09:56:33 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:33 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:33 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:33 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:33 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:33 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:33 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:33 INFO    opendrift.models.basemodel:2038: 2024-10-20 01:00:00 - step 50 of 71 - 1000 active elements (0 deactivated)
09:56:33 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:33 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:33 DEBUG   opendrift.models.basemodel:2057:               60.875795300122725 <- latitude  -> 60.88455333883783
09:56:33 DEBUG   opendrift.models.basemodel:2062:               4.47042410377603 <- longitude -> 4.511206614343822
09:56:33 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:33 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:33 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:33 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:33 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:33 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:33 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:33 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:33 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:33 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:33 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:33 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:33 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:33 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 01:00:00 (before)
                2024-10-20 02:00:00 (after)
09:56:33 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:33 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:33 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:33 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x25x2) for time before (2024-10-20 01:00:00)
09:56:33 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 01:00:00) in space  (linearNDFast)
09:56:33 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:33 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5295865317426 and -65.48880402201397 degrees.
09:56:34 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.5295865317426 and -65.48880402201397 degrees.
09:56:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:34 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:34 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:34 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:34 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:34 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.483881 (min) -0.333497 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: -0.0135014 (min) 0.0508197 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.172596 (min) 0.179379 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.15892 (min) 1.44572 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: -0.0416397 (min) 0.231257 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.83433e-05 (min) -9.41972e-05 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 252.567 (min) 275.655 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:34 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:34 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.034356, mean: 0.041382, max: 0.051459
09:56:34 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:34 DEBUG   opendrift.models.physics_methods:1061:    min: 1.009788, mean: 1.107263, max: 1.235835
09:56:34 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.009788, mean: 1.107263, max: 1.235835
09:56:34 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:34 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:34 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:34 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.023635 m/s - 0.028926 m/s)
09:56:34 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:34 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:34 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:34 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:34 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:34 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:34 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:34 INFO    opendrift.models.basemodel:2038: 2024-10-20 02:00:00 - step 51 of 71 - 1000 active elements (0 deactivated)
09:56:34 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:34 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:34 DEBUG   opendrift.models.basemodel:2057:               60.87583942541501 <- latitude  -> 60.88634082334466
09:56:34 DEBUG   opendrift.models.basemodel:2062:               4.439880841580655 <- longitude -> 4.491014704151191
09:56:34 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:34 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:34 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:34 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:34 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:34 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:34 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:34 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:34 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:34 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:34 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:34 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:34 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:34 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 02:00:00 (before)
                2024-10-20 03:00:00 (after)
09:56:34 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:34 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:34 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:34 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x26x2) for time before (2024-10-20 02:00:00)
09:56:34 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 02:00:00) in space  (linearNDFast)
09:56:34 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:34 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56012979830402 and -65.50899592253268 degrees.
09:56:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.56012979830402 and -65.50899592253268 degrees.
09:56:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:35 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:35 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:35 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:35 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:35 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.510839 (min) -0.382901 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.0387898 (min) 0.076445 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.208077 (min) -0.196329 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.978614 (min) -0.848577 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.00064 (min) 2.23807 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -0.000105633 (min) -0.000104217 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 270.602 (min) 296.962 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:35 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:35 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.119793, mean: 0.132423, max: 0.140934
09:56:35 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:35 DEBUG   opendrift.models.physics_methods:1061:    min: 1.885580, mean: 1.982333, max: 2.045208
09:56:35 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.885580, mean: 1.982333, max: 2.045208
09:56:35 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:35 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:35 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:35 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.044134 m/s - 0.047871 m/s)
09:56:35 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:35 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:35 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:35 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:35 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:35 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:35 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:35 INFO    opendrift.models.basemodel:2038: 2024-10-20 03:00:00 - step 52 of 71 - 1000 active elements (0 deactivated)
09:56:35 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:35 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:35 DEBUG   opendrift.models.basemodel:2057:               60.87921129852343 <- latitude  -> 60.889392981454904
09:56:35 DEBUG   opendrift.models.basemodel:2062:               4.406980521950972 <- longitude -> 4.463176170735934
09:56:35 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:35 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:35 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:35 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:35 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:35 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:35 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:35 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:35 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:35 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:35 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:35 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:35 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 03:00:00 (before)
                2024-10-20 04:00:00 (after)
09:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:35 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:35 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 22x26x2) for time before (2024-10-20 03:00:00)
09:56:35 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 03:00:00) in space  (linearNDFast)
09:56:35 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:35 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:35 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59303011403988 and -65.53683445546662 degrees.
09:56:36 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.59303011403988 and -65.53683445546662 degrees.
09:56:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:36 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:36 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:36 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:36 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.403936 (min) -0.307951 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.12776 (min) 0.241182 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.571561 (min) -0.561643 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 0.175213 (min) 0.331915 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.17903 (min) 2.48943 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -8.95833e-05 (min) -8.7778e-05 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 287.391 (min) 329.738 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:36 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:36 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.119515, mean: 0.134611, max: 0.153208
09:56:36 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:36 DEBUG   opendrift.models.physics_methods:1061:    min: 1.883394, mean: 1.998026, max: 2.132408
09:56:36 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 1.883394, mean: 1.998026, max: 2.132408
09:56:36 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:36 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:36 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:36 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.044083 m/s - 0.049912 m/s)
09:56:36 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:36 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:36 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:36 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:36 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:36 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:36 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:36 INFO    opendrift.models.basemodel:2038: 2024-10-20 04:00:00 - step 53 of 71 - 1000 active elements (0 deactivated)
09:56:36 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:36 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:36 DEBUG   opendrift.models.basemodel:2057:               60.8866430158444 <- latitude  -> 60.895685223627645
09:56:36 DEBUG   opendrift.models.basemodel:2062:               4.38541193326071 <- longitude -> 4.436835271522888
09:56:36 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:36 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:36 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:36 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:36 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:36 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:36 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:36 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:36 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:36 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:36 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:36 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 04:00:00 (before)
                2024-10-20 05:00:00 (after)
09:56:37 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:37 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:37 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:37 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x26x2) for time before (2024-10-20 04:00:00)
09:56:37 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 04:00:00) in space  (linearNDFast)
09:56:37 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:37 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61459869979292 and -65.5631753688545 degrees.
09:56:37 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.61459869979292 and -65.5631753688545 degrees.
09:56:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:37 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:37 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:37 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:37 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:37 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.450295 (min) -0.3542 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.246619 (min) 0.360858 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.845232 (min) -0.832208 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.37721 (min) 1.43045 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 2.22168 (min) 2.86418 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -5.47614e-05 (min) -5.41137e-05 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 295.47 (min) 350.565 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:37 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:37 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.168082, mean: 0.205048, max: 0.249545
09:56:37 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:37 DEBUG   opendrift.models.physics_methods:1061:    min: 2.233520, mean: 2.464542, max: 2.721471
09:56:37 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 2.233520, mean: 2.464542, max: 2.721471
09:56:37 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:37 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:37 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:37 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.052278 m/s - 0.063700 m/s)
09:56:37 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:37 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:37 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:37 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:37 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:37 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:37 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:37 INFO    opendrift.models.basemodel:2038: 2024-10-20 05:00:00 - step 54 of 71 - 1000 active elements (0 deactivated)
09:56:37 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:37 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:37 DEBUG   opendrift.models.basemodel:2057:               60.89699580916877 <- latitude  -> 60.907546977291204
09:56:37 DEBUG   opendrift.models.basemodel:2062:               4.360851436580295 <- longitude -> 4.408908682818272
09:56:37 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:37 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:37 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:37 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:37 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:37 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:37 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:37 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:37 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:37 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:37 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:37 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:37 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:37 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 05:00:00 (before)
                2024-10-20 06:00:00 (after)
09:56:38 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:38 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:38 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:38 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-10-20 05:00:00)
09:56:38 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 05:00:00) in space  (linearNDFast)
09:56:38 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:38 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.63915920015629 and -65.59110194915027 degrees.
09:56:38 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.63915920015629 and -65.59110194915027 degrees.
09:56:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:38 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:38 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:38 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:38 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:38 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.406859 (min) -0.346437 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.431921 (min) 0.540197 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.951847 (min) -0.942307 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: 1.52231 (min) 1.61197 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.26839 (min) 3.38574 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.63764e-06 (min) -1.96074e-06 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 306.425 (min) 369.387 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:38 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:38 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.319796, mean: 0.330695, max: 0.345917
09:56:38 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:38 DEBUG   opendrift.models.physics_methods:1061:    min: 3.080817, mean: 3.132781, max: 3.204171
09:56:38 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.080817, mean: 3.132781, max: 3.204171
09:56:38 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:38 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:38 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:38 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.072111 m/s - 0.074998 m/s)
09:56:38 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:38 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:38 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:38 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:38 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:38 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:38 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:38 INFO    opendrift.models.basemodel:2038: 2024-10-20 06:00:00 - step 55 of 71 - 1000 active elements (0 deactivated)
09:56:38 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:38 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:38 DEBUG   opendrift.models.basemodel:2057:               60.91313938856742 <- latitude  -> 60.92623793061317
09:56:38 DEBUG   opendrift.models.basemodel:2062:               4.33999648855155 <- longitude -> 4.383927590448379
09:56:38 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:38 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:38 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:38 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:38 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:38 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:38 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:38 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:38 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:38 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:38 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:38 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:38 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:38 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 06:00:00 (before)
                2024-10-20 07:00:00 (after)
09:56:39 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:39 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:39 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:39 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-10-20 06:00:00)
09:56:39 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 06:00:00) in space  (linearNDFast)
09:56:39 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:39 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.66001413773571 and -65.61608304313837 degrees.
09:56:39 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.66001413773571 and -65.61608304313837 degrees.
09:56:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:39 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:39 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:39 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:39 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:39 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.404472 (min) -0.175361 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.545258 (min) 0.665508 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.887644 (min) -0.876614 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -0.0347208 (min) 0.147602 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.58194 (min) 3.92718 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 4.07979e-05 (min) 4.18238e-05 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 312.62 (min) 374.529 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:39 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:39 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.316161, mean: 0.334608, max: 0.379429
09:56:39 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:39 DEBUG   opendrift.models.physics_methods:1061:    min: 3.063260, mean: 3.150731, max: 3.355791
09:56:39 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.063260, mean: 3.150731, max: 3.355791
09:56:39 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:39 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:39 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:39 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:39 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.071700 m/s - 0.078547 m/s)
09:56:39 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:39 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:39 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:39 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:39 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:39 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:39 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:39 INFO    opendrift.models.basemodel:2038: 2024-10-20 07:00:00 - step 56 of 71 - 1000 active elements (0 deactivated)
09:56:39 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:39 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:39 DEBUG   opendrift.models.basemodel:2057:               60.93557786937041 <- latitude  -> 60.950276103781334
09:56:39 DEBUG   opendrift.models.basemodel:2062:               4.32793948368754 <- longitude -> 4.360751812733447
09:56:39 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:39 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:39 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:39 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:39 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:39 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:39 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:39 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:39 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:39 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:39 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:39 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:39 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:39 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 07:00:00 (before)
                2024-10-20 08:00:00 (after)
09:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:40 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-10-20 07:00:00)
09:56:40 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 07:00:00) in space  (linearNDFast)
09:56:40 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:40 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.67207114346431 and -65.63925881428597 degrees.
09:56:40 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.67207114346431 and -65.63925881428597 degrees.
09:56:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:40 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:40 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:40 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:40 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:40 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.308044 (min) -0.0794155 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.62026 (min) 0.651326 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.659941 (min) -0.650924 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.48311 (min) -1.41472 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 3.98133 (min) 4.18491 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.9204e-05 (min) 7.96706e-05 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 327.165 (min) 368.055 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:40 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:40 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.443977, mean: 0.454312, max: 0.480067
09:56:40 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:40 DEBUG   opendrift.models.physics_methods:1061:    min: 3.630027, mean: 3.671884, max: 3.774683
09:56:40 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 3.630027, mean: 3.671884, max: 3.774683
09:56:40 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:40 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:40 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:40 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.084966 m/s - 0.088351 m/s)
09:56:40 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:40 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:40 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:40 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:40 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:40 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:40 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:40 INFO    opendrift.models.basemodel:2038: 2024-10-20 08:00:00 - step 57 of 71 - 1000 active elements (0 deactivated)
09:56:40 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:40 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:40 DEBUG   opendrift.models.basemodel:2057:               60.95875963236096 <- latitude  -> 60.97399357185199
09:56:40 DEBUG   opendrift.models.basemodel:2062:               4.31683528899153 <- longitude -> 4.342653993564325
09:56:40 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:40 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:40 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:40 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:40 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:40 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:40 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:40 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:40 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:40 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:40 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:40 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:40 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:40 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 08:00:00 (before)
                2024-10-20 09:00:00 (after)
09:56:41 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:41 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:41 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:41 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x25x2) for time before (2024-10-20 08:00:00)
09:56:41 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 08:00:00) in space  (linearNDFast)
09:56:41 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:41 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.68317533433553 and -65.65735663310372 degrees.
09:56:41 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.68317533433553 and -65.65735663310372 degrees.
09:56:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:41 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:41 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:41 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:41 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:41 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.230926 (min) -0.117549 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.651847 (min) 0.705333 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.332881 (min) -0.329263 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -3.20035 (min) -2.97952 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 4.60308 (min) 4.76092 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.90605e-05 (min) 9.97345e-05 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 337.438 (min) 366.013 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:41 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:41 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.770296, mean: 0.771870, max: 0.776309
09:56:41 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:41 DEBUG   opendrift.models.physics_methods:1061:    min: 4.781435, mean: 4.786316, max: 4.800063
09:56:41 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 4.781435, mean: 4.786316, max: 4.800063
09:56:41 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:41 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:41 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:41 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.111916 m/s - 0.112352 m/s)
09:56:41 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:41 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:41 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:41 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:41 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:41 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:41 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:41 INFO    opendrift.models.basemodel:2038: 2024-10-20 09:00:00 - step 58 of 71 - 1000 active elements (0 deactivated)
09:56:41 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:41 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:41 DEBUG   opendrift.models.basemodel:2057:               60.98319340913032 <- latitude  -> 60.99985658848868
09:56:41 DEBUG   opendrift.models.basemodel:2062:               4.29811054476869 <- longitude -> 4.328787595536495
09:56:41 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:41 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:41 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:41 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:41 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:41 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:41 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:41 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:41 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:41 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:41 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:41 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:41 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:41 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 09:00:00 (before)
                2024-10-20 10:00:00 (after)
09:56:42 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:42 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:42 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:42 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity']
09:56:42 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x2) for time before (2024-10-20 09:00:00)
09:56:42 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 09:00:00) in space  (linearNDFast)
09:56:42 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:42 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7019000624532 and -65.67122301993622 degrees.
09:56:42 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7019000624532 and -65.67122301993622 degrees.
09:56:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:42 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:42 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:42 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:42 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:42 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.219388 (min) -0.156162 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.650755 (min) 0.711319 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.0423466 (min) 0.0447731 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.79225 (min) -2.74944 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.33045 (min) 5.56549 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 0.000103874 (min) 0.000104807 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 342.776 (min) 373.157 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:42 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:42 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.884976, mean: 0.896024, max: 0.953774
09:56:42 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:42 DEBUG   opendrift.models.physics_methods:1061:    min: 5.125018, mean: 5.156784, max: 5.320499
09:56:42 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.125018, mean: 5.156784, max: 5.320499
09:56:42 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:42 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:42 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:42 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.119958 m/s - 0.124533 m/s)
09:56:42 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:42 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:42 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:42 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:42 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:42 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:42 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:42 INFO    opendrift.models.basemodel:2038: 2024-10-20 10:00:00 - step 59 of 71 - 1000 active elements (0 deactivated)
09:56:42 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:42 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:42 DEBUG   opendrift.models.basemodel:2057:               61.00781198763809 <- latitude  -> 61.026432787922374
09:56:42 DEBUG   opendrift.models.basemodel:2062:               4.279784557394001 <- longitude -> 4.3138730297455306
09:56:42 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:42 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:42 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:42 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:42 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:42 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:42 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:42 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:42 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:42 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:42 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:42 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:42 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:42 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 10:00:00 (before)
                2024-10-20 11:00:00 (after)
09:56:43 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:43 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:43 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:43 DEBUG   opendrift.readers.interpolation.structured:53: Filled NaN-values toward seafloor for :['x_sea_water_velocity', 'y_sea_water_velocity', 'upward_sea_water_velocity']
09:56:43 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x2) for time before (2024-10-20 10:00:00)
09:56:43 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 10:00:00) in space  (linearNDFast)
09:56:43 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:43 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7202260306133 and -65.68613757612022 degrees.
09:56:43 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7202260306133 and -65.68613757612022 degrees.
09:56:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:43 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:43 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:43 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:43 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:43 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.23047 (min) -0.194279 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.591629 (min) 0.685961 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.364272 (min) 0.366688 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.55218 (min) -1.2674 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 5.87143 (min) 6.13081 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 7.33636e-05 (min) 7.38654e-05 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 352.052 (min) 379.785 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:43 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:43 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 0.907320, mean: 0.916589, max: 0.964150
09:56:43 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:43 DEBUG   opendrift.models.physics_methods:1061:    min: 5.189313, mean: 5.215668, max: 5.349361
09:56:43 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 5.189313, mean: 5.215668, max: 5.349361
09:56:43 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:43 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:43 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:43 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:43 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.121463 m/s - 0.125209 m/s)
09:56:43 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:43 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:43 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:43 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:43 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:43 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:43 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:43 INFO    opendrift.models.basemodel:2038: 2024-10-20 11:00:00 - step 60 of 71 - 1000 active elements (0 deactivated)
09:56:43 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:43 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:43 DEBUG   opendrift.models.basemodel:2057:               61.03074221405009 <- latitude  -> 61.05255512368008
09:56:43 DEBUG   opendrift.models.basemodel:2062:               4.265149240964735 <- longitude -> 4.297880182119736
09:56:43 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:43 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:43 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:43 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:43 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:43 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:43 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:43 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:43 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:43 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:43 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:43 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:43 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:43 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 11:00:00 (before)
                2024-10-20 12:00:00 (after)
09:56:44 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:44 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:44 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:44 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x25x2) for time before (2024-10-20 11:00:00)
09:56:44 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 11:00:00) in space  (linearNDFast)
09:56:44 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:44 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73486135642986 and -65.70213041860964 degrees.
09:56:44 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.73486135642986 and -65.70213041860964 degrees.
09:56:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:44 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:44 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:44 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:44 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:44 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.208124 (min) -0.124967 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.563449 (min) 0.666418 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.543479 (min) 0.546801 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.82881 (min) -1.68153 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 8.13367 (min) 8.22795 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.48744e-05 (min) 2.63035e-05 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 366.478 (min) 382.734 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:44 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:44 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 1.709727, mean: 1.732884, max: 1.735281
09:56:44 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:44 DEBUG   opendrift.models.physics_methods:1061:    min: 7.123492, mean: 7.171568, max: 7.176530
09:56:44 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 7.123492, mean: 7.171568, max: 7.176530
09:56:44 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:44 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:44 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:44 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.166735 m/s - 0.167976 m/s)
09:56:44 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:44 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:44 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:44 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:44 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:44 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:44 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:44 INFO    opendrift.models.basemodel:2038: 2024-10-20 12:00:00 - step 61 of 71 - 1000 active elements (0 deactivated)
09:56:44 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:44 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:44 DEBUG   opendrift.models.basemodel:2057:               61.0542594419841 <- latitude  -> 61.079340477245026
09:56:44 DEBUG   opendrift.models.basemodel:2062:               4.254375562489048 <- longitude -> 4.281811086617739
09:56:44 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:44 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:44 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:44 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:44 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:44 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:44 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:44 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:44 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:44 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:44 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:44 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:44 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:44 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 12:00:00 (before)
                2024-10-20 13:00:00 (after)
09:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:45 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x25x2) for time before (2024-10-20 12:00:00)
09:56:45 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 12:00:00) in space  (linearNDFast)
09:56:45 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:45 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74563502258992 and -65.71819950443899 degrees.
09:56:45 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.74563502258992 and -65.71819950443899 degrees.
09:56:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:45 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:45 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:45 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:45 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:45 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.179972 (min) -0.0495821 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.545324 (min) 0.596846 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.536254 (min) 0.542614 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.68309 (min) -1.6013 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 10.0045 (min) 10.0177 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -3.13275e-05 (min) -3.05477e-05 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 373.344 (min) 380.647 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:45 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:45 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 2.526014, mean: 2.527514, max: 2.538410
09:56:45 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:45 DEBUG   opendrift.models.physics_methods:1061:    min: 8.658596, mean: 8.661165, max: 8.679816
09:56:45 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 8.658596, mean: 8.661165, max: 8.679816
09:56:45 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:45 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:45 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:45 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.202666 m/s - 0.203162 m/s)
09:56:45 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:45 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:45 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:45 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:45 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:45 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:45 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:45 INFO    opendrift.models.basemodel:2038: 2024-10-20 13:00:00 - step 62 of 71 - 1000 active elements (0 deactivated)
09:56:45 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:45 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:45 DEBUG   opendrift.models.basemodel:2057:               61.07834269747302 <- latitude  -> 61.10506419873968
09:56:45 DEBUG   opendrift.models.basemodel:2062:               4.2488193083222825 <- longitude -> 4.2676735741671745
09:56:45 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:45 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:45 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:45 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:45 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:45 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:45 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:45 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:45 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:45 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:45 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:45 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:45 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:45 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 13:00:00 (before)
                2024-10-20 14:00:00 (after)
09:56:46 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:46 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:46 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:46 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x2) for time before (2024-10-20 13:00:00)
09:56:46 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 13:00:00) in space  (linearNDFast)
09:56:46 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:46 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7511912655752 and -65.73233701404719 degrees.
09:56:46 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7511912655752 and -65.73233701404719 degrees.
09:56:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:46 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:46 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:46 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:46 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:46 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.150147 (min) -0.0387108 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.528108 (min) 0.55237 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.337398 (min) 0.341771 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -2.74673 (min) -2.73217 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 12.2389 (min) 12.2614 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -7.85566e-05 (min) -7.77725e-05 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 348.429 (min) 373.097 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:46 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:46 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 3.868515, mean: 3.879291, max: 3.882221
09:56:46 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:46 DEBUG   opendrift.models.physics_methods:1061:    min: 10.715236, mean: 10.730149, max: 10.734199
09:56:46 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 10.715236, mean: 10.730149, max: 10.734199
09:56:46 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:46 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:46 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:46 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.250804 m/s - 0.251248 m/s)
09:56:46 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:46 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:46 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:46 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:46 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:46 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:46 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:46 INFO    opendrift.models.basemodel:2038: 2024-10-20 14:00:00 - step 63 of 71 - 1000 active elements (0 deactivated)
09:56:46 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:46 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:46 DEBUG   opendrift.models.basemodel:2057:               61.103349570092334 <- latitude  -> 61.13005334745513
09:56:46 DEBUG   opendrift.models.basemodel:2062:               4.242563412801997 <- longitude -> 4.254004546038899
09:56:46 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:46 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:46 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:46 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:46 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:46 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:46 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:46 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:46 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:46 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:46 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:46 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:46 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:46 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 14:00:00 (before)
                2024-10-20 15:00:00 (after)
09:56:47 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:47 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:47 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:47 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 25x24x2) for time before (2024-10-20 14:00:00)
09:56:47 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 14:00:00) in space  (linearNDFast)
09:56:47 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:47 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75744716804142 and -65.74600603084473 degrees.
09:56:47 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.75744716804142 and -65.74600603084473 degrees.
09:56:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:47 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:47 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:47 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:47 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:47 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.116482 (min) -0.0533186 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.448526 (min) 0.575767 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.00524658 (min) 0.00983222 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -4.37219 (min) -4.33178 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.8728 (min) 13.9381 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -0.00010173 (min) -0.000101276 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 327.4 (min) 350.769 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:47 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:47 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.195982, mean: 5.244251, max: 5.248419
09:56:47 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:47 DEBUG   opendrift.models.physics_methods:1061:    min: 12.418335, mean: 12.475880, max: 12.480840
09:56:47 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.418335, mean: 12.475880, max: 12.480840
09:56:47 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:47 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:47 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:47 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.290667 m/s - 0.292130 m/s)
09:56:47 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:47 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:47 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:47 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:47 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:47 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:47 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:47 INFO    opendrift.models.basemodel:2038: 2024-10-20 15:00:00 - step 64 of 71 - 1000 active elements (0 deactivated)
09:56:47 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:47 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:47 DEBUG   opendrift.models.basemodel:2057:               61.13094996019805 <- latitude  -> 61.15350737421444
09:56:47 DEBUG   opendrift.models.basemodel:2062:               4.2330875319320675 <- longitude -> 4.240471592766564
09:56:47 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:47 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:47 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:47 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:47 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:47 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:47 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:47 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:47 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:47 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:47 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:47 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:47 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:47 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 15:00:00 (before)
                2024-10-20 16:00:00 (after)
09:56:48 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:48 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:48 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:48 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x2) for time before (2024-10-20 15:00:00)
09:56:48 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 15:00:00) in space  (linearNDFast)
09:56:48 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:48 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.76692303399805 and -65.75953897330908 degrees.
09:56:48 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.76692303399805 and -65.75953897330908 degrees.
09:56:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:48 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:48 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:48 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:48 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:48 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.137253 (min) -0.0669903 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.343769 (min) 0.538899 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.358244 (min) -0.354748 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -6.70499 (min) -6.66492 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.5469 (min) 13.5994 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -9.67188e-05 (min) -9.58009e-05 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 321.346 (min) 326.516 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:48 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:48 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.620509, mean: 5.636377, max: 5.642776
09:56:48 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:48 DEBUG   opendrift.models.physics_methods:1061:    min: 12.915682, mean: 12.933901, max: 12.941242
09:56:48 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 12.915682, mean: 12.933901, max: 12.941242
09:56:48 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:48 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:48 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:48 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:48 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.302308 m/s - 0.302907 m/s)
09:56:48 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:48 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:48 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:48 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:48 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:48 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:48 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:48 INFO    opendrift.models.basemodel:2038: 2024-10-20 16:00:00 - step 65 of 71 - 1000 active elements (0 deactivated)
09:56:48 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:48 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:48 DEBUG   opendrift.models.basemodel:2057:               61.15714327338258 <- latitude  -> 61.17336596445832
09:56:48 DEBUG   opendrift.models.basemodel:2062:               4.214936794349125 <- longitude -> 4.226879280902827
09:56:48 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:48 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:48 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:48 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:48 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:48 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:48 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:48 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:48 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:48 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:48 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:48 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:48 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:48 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 16:00:00 (before)
                2024-10-20 17:00:00 (after)
09:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-20 16:00:00)
09:56:49 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 16:00:00) in space  (linearNDFast)
09:56:49 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:49 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7850737605718 and -65.77313127128102 degrees.
09:56:49 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.7850737605718 and -65.77313127128102 degrees.
09:56:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:49 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:49 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:49 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:49 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.170425 (min) -0.144323 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.324671 (min) 0.426034 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.658119 (min) -0.657688 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -6.69328 (min) -6.67806 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 13.7068 (min) 13.7412 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -6.83872e-05 (min) -6.74434e-05 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 321.484 (min) 330.154 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:49 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:49 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 5.721944, mean: 5.739233, max: 5.746941
09:56:49 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:49 DEBUG   opendrift.models.physics_methods:1061:    min: 13.031709, mean: 13.051379, max: 13.060143
09:56:49 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.031709, mean: 13.051379, max: 13.060143
09:56:49 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:49 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:49 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:49 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.305024 m/s - 0.305690 m/s)
09:56:49 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:49 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:49 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:49 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:49 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:49 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:49 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:49 INFO    opendrift.models.basemodel:2038: 2024-10-20 17:00:00 - step 66 of 71 - 1000 active elements (0 deactivated)
09:56:49 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:49 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:49 DEBUG   opendrift.models.basemodel:2057:               61.17977947923629 <- latitude  -> 61.19271767429001
09:56:49 DEBUG   opendrift.models.basemodel:2062:               4.194620611010372 <- longitude -> 4.20822910648234
09:56:49 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:49 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:49 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:49 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:49 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:49 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:49 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:49 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:49 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:49 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:49 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:49 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 17:00:00 (before)
                2024-10-20 18:00:00 (after)
09:56:50 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:50 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:50 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:50 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-10-20 17:00:00)
09:56:50 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 17:00:00) in space  (linearNDFast)
09:56:50 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:50 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.80538994156191 and -65.79178144677184 degrees.
09:56:50 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.80538994156191 and -65.79178144677184 degrees.
09:56:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:50 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:50 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:50 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:50 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:50 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.192178 (min) -0.178164 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.437735 (min) 0.471058 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.817223 (min) -0.816408 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -7.36549 (min) -7.24505 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 16.0917 (min) 16.1314 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: -2.26642e-05 (min) -2.24837e-05 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 334.871 (min) 345.196 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:50 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:50 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 7.692142, mean: 7.704912, max: 7.709383
09:56:50 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:50 DEBUG   opendrift.models.physics_methods:1061:    min: 15.109609, mean: 15.122145, max: 15.126533
09:56:50 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 15.109609, mean: 15.122145, max: 15.126533
09:56:50 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:50 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:50 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:50 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.353660 m/s - 0.354056 m/s)
09:56:50 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:50 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:50 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:50 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:50 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:50 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:50 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:50 INFO    opendrift.models.basemodel:2038: 2024-10-20 18:00:00 - step 67 of 71 - 1000 active elements (0 deactivated)
09:56:50 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:50 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:50 DEBUG   opendrift.models.basemodel:2057:               61.20539425514393 <- latitude  -> 61.21731521058154
09:56:50 DEBUG   opendrift.models.basemodel:2062:               4.17204314857184 <- longitude -> 4.186417763382473
09:56:50 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:50 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:50 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:50 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:50 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:50 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:50 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:50 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:50 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:50 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:50 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:50 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:50 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:50 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 18:00:00 (before)
                2024-10-20 19:00:00 (after)
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x23x2) for time before (2024-10-20 18:00:00)
09:56:51 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 18:00:00) in space  (linearNDFast)
09:56:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:51 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8279674086111 and -65.8135927818379 degrees.
09:56:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8279674086111 and -65.8135927818379 degrees.
09:56:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:51 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:51 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:51 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:51 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.216176 (min) -0.200334 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.592527 (min) 0.618858 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.815667 (min) -0.812413 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -7.10222 (min) -7.0399 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 17.463 (min) 17.6783 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 2.49389e-05 (min) 2.57898e-05 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 349.509 (min) 354.136 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:51 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 8.742789, mean: 8.885935, max: 8.909618
09:56:51 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:51 DEBUG   opendrift.models.physics_methods:1061:    min: 16.108481, mean: 16.239794, max: 16.261444
09:56:51 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 16.108481, mean: 16.239794, max: 16.261444
09:56:51 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:51 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:51 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:51 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:51 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.377040 m/s - 0.380620 m/s)
09:56:51 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:51 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:51 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:51 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:51 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:51 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:51 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:51 INFO    opendrift.models.basemodel:2038: 2024-10-20 19:00:00 - step 68 of 71 - 1000 active elements (0 deactivated)
09:56:51 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:51 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:51 DEBUG   opendrift.models.basemodel:2057:               61.23596704742661 <- latitude  -> 61.24859053434919
09:56:51 DEBUG   opendrift.models.basemodel:2062:               4.148026497675911 <- longitude -> 4.1633622388427876
09:56:51 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:51 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:51 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:51 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:51 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:51 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:51 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:51 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 19:00:00 (before)
                2024-10-20 20:00:00 (after)
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:51 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-10-20 19:00:00)
09:56:51 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 19:00:00) in space  (linearNDFast)
09:56:51 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:51 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.85198404186987 and -65.83664830062277 degrees.
09:56:51 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.85198404186987 and -65.83664830062277 degrees.
09:56:51 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:51 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:51 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:51 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:51 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.206178 (min) -0.188759 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.772179 (min) 0.807793 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.644474 (min) -0.640335 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -8.08912 (min) -8.07515 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 15.5332 (min) 15.5827 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 6.59768e-05 (min) 6.60938e-05 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 323.787 (min) 341.495 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:51 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:51 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 7.543808, mean: 7.553602, max: 7.581779
09:56:51 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:51 DEBUG   opendrift.models.physics_methods:1061:    min: 14.963214, mean: 14.972921, max: 15.000825
09:56:51 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 14.963214, mean: 14.972921, max: 15.000825
09:56:51 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:51 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.350234 m/s - 0.351114 m/s)
09:56:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:52 INFO    opendrift.models.basemodel:2038: 2024-10-20 20:00:00 - step 69 of 71 - 1000 active elements (0 deactivated)
09:56:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:52 DEBUG   opendrift.models.basemodel:2057:               61.27095102118404 <- latitude  -> 61.284754377260775
09:56:52 DEBUG   opendrift.models.basemodel:2062:               4.124487609833622 <- longitude -> 4.138786280540511
09:56:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 20:00:00 (before)
                2024-10-20 21:00:00 (after)
09:56:52 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:52 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:52 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:52 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 23x24x2) for time before (2024-10-20 20:00:00)
09:56:52 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 20:00:00) in space  (linearNDFast)
09:56:52 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:52 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.87552291880394 and -65.8612242451312 degrees.
09:56:52 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.87552291880394 and -65.8612242451312 degrees.
09:56:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:52 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:52 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:52 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:52 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.143408 (min) -0.115796 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.932619 (min) 0.953759 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.357606 (min) -0.353707 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -8.98631 (min) -8.95973 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 19.5517 (min) 19.5776 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 9.0133e-05 (min) 9.06614e-05 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 301.799 (min) 308.077 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:52 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:52 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 11.390259, mean: 11.393831, max: 11.403529
09:56:52 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:52 DEBUG   opendrift.models.physics_methods:1061:    min: 18.386386, mean: 18.389269, max: 18.397094
09:56:52 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 18.386386, mean: 18.389269, max: 18.397094
09:56:52 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:52 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:52 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:52 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.430357 m/s - 0.430608 m/s)
09:56:52 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:52 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:52 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:52 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:52 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:52 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:52 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:52 INFO    opendrift.models.basemodel:2038: 2024-10-20 21:00:00 - step 70 of 71 - 1000 active elements (0 deactivated)
09:56:52 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:52 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:52 DEBUG   opendrift.models.basemodel:2057:               61.31371512302037 <- latitude  -> 61.328215294483385
09:56:52 DEBUG   opendrift.models.basemodel:2062:               4.104658794430761 <- longitude -> 4.117095161027774
09:56:52 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:52 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:52 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:52 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:52 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:52 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:52 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:52 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:52 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:52 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:52 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:52 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 21:00:00 (before)
                2024-10-20 22:00:00 (after)
09:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:53 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x2) for time before (2024-10-20 21:00:00)
09:56:53 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 21:00:00) in space  (linearNDFast)
09:56:53 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:53 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8953517196838 and -65.882915361854 degrees.
09:56:53 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.8953517196838 and -65.882915361854 degrees.
09:56:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:53 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:53 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:53 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:53 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:53 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: -0.00381699 (min) 0.0190603 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 1.01959 (min) 1.03641 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: -0.00825145 (min) -0.00676119 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -6.4736 (min) -6.40342 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 20.153 (min) 20.3171 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 0.00010486 (min) 0.000105288 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 300.674 (min) 301.031 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:53 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:53 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 11.021770, mean: 11.046623, max: 11.163174
09:56:53 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:53 DEBUG   opendrift.models.physics_methods:1061:    min: 18.086530, mean: 18.106896, max: 18.202180
09:56:53 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 18.086530, mean: 18.106896, max: 18.202180
09:56:53 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:53 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:53 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:53 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.423339 m/s - 0.426046 m/s)
09:56:53 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:53 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:53 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:53 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:53 DEBUG   opendrift.models.basemodel:891: to be seeded: 0, already seeded 1000
09:56:53 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:53 DEBUG   opendrift.models.basemodel:2037: ======================================================================
09:56:53 INFO    opendrift.models.basemodel:2038: 2024-10-20 22:00:00 - step 71 of 71 - 1000 active elements (0 deactivated)
09:56:53 DEBUG   opendrift.models.basemodel:2044: 0 elements scheduled.
09:56:53 DEBUG   opendrift.models.basemodel:2046: ======================================================================
09:56:53 DEBUG   opendrift.models.basemodel:2057:               61.360102345025894 <- latitude  -> 61.37431481217323
09:56:53 DEBUG   opendrift.models.basemodel:2062:               4.0971677866596075 <- longitude -> 4.10812519234108
09:56:53 DEBUG   opendrift.models.basemodel:2065:               z = 0.0
09:56:53 DEBUG   opendrift.models.basemodel:2068: ---------------------------------
09:56:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:53 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:53 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:53 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:53 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:53 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:53 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:53 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56: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:56:53 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:53 DEBUG   opendrift.models.basemodel.environment:613: Calling reader https://thredds.met.no/thredds/dodsC/sea/norkyst800m/1h/aggregate_be
09:56:53 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:53 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56: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:56:53 DEBUG   opendrift.readers.basereader.structured:222: Reader time:
                2024-10-20 22:00:00 (before)
                2024-10-20 23:00:00 (after)
09:56:54 DEBUG   opendrift.readers.basereader.variables:633: Checking sea_floor_depth_below_sea_level for invalid values
09:56:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_wind for invalid values
09:56:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_wind for invalid values
09:56:54 DEBUG   opendrift.readers.basereader.variables:633: Checking x_sea_water_velocity for invalid values
09:56:54 DEBUG   opendrift.readers.basereader.variables:633: Checking y_sea_water_velocity for invalid values
09:56:54 DEBUG   opendrift.readers.basereader.structured:291: Fetched env-block (size 24x24x2) for time before (2024-10-20 22:00:00)
09:56:54 DEBUG   opendrift.readers.basereader.structured:334: Interpolating before (2024-10-20 22:00:00) in space  (linearNDFast)
09:56:54 DEBUG   opendrift.readers.interpolation.structured:80: Initialising interpolator.
09:56:54 DEBUG   opendrift.readers.basereader.structured:388: No time interpolation needed - right on time.
09:56:54 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.90284271437949 and -65.89188530548148 degrees.
09:56:55 DEBUG   opendrift.readers.basereader.variables:96: Rotating vectors between -65.90284271437949 and -65.89188530548148 degrees.
09:56:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:55 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:55 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:55 DEBUG   opendrift.models.basemodel.environment:798: Creating empty dictionary for profiles not profided by any reader: ['ocean_vertical_diffusivity']
09:56:55 DEBUG   opendrift.models.basemodel.environment:803:       Using fallback value 0 for ocean_vertical_diffusivity for all profiles
09:56:55 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     x_sea_water_velocity: 0.169887 (min) 0.173817 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     y_sea_water_velocity: 0.937252 (min) 0.965984 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_height: 0.344593 (min) 0.345645 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     x_wind: -1.13765 (min) -1.11497 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     y_wind: 16.1975 (min) 16.2226 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     upward_sea_water_velocity: 8.67183e-05 (min) 8.75153e-05 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_vertical_diffusivity: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_significant_height: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_x_velocity: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_stokes_drift_y_velocity: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_period_at_variance_spectral_density_maximum: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wave_mean_period_from_variance_spectral_density_second_frequency_moment: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_to_direction: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_peak_period_from_variance_spectral_density: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_swell_wave_significant_height: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_to_direction: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_mean_period: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_surface_wind_wave_significant_height: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_x_stress: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     surface_downward_y_stress: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_kinetic_energy: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     turbulent_generic_length_scale: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     ocean_mixed_layer_thickness: 50 (min) 50 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     sea_floor_depth_below_sea_level: 298.966 (min) 299.724 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:55 DEBUG   opendrift.models.physics_methods:993: Calculating Hs from wind, min: 6.484691, mean: 6.490035, max: 6.505867
09:56:55 DEBUG   opendrift.models.physics_methods:1051: Calculating wave period Tm02 from wind
09:56:55 DEBUG   opendrift.models.physics_methods:1061:    min: 13.873123, mean: 13.878837, max: 13.895756
09:56:55 DEBUG   opendrift.models.physics_methods:1001: Calculating wave period from wind, min: 13.873123, mean: 13.878837, max: 13.895756
09:56:55 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:55 DEBUG   opendrift.models.basemodel:750: No elements hit seafloor.
09:56:55 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:55 DEBUG   opendrift.models.basemodel:2109: Calling OceanDrift.update()
09:56:55 DEBUG   opendrift.models.physics_methods:915: Advecting 1000 of 1000 elements above 0.100m with wind-sheared ocean current (0.324719 m/s - 0.325248 m/s)
09:56:55 DEBUG   opendrift.models.physics_methods:933: No Stokes drift velocity available
09:56:55 DEBUG   opendrift.models.oceandrift:410: No vertical advection for elements at surface
09:56:55 DEBUG   opendrift.models.basemodel:1661: Horizontal diffusivity is 0, no random walk.
09:56:55 DEBUG   opendrift.models.basemodel:2124: 1000 active elements (0 deactivated)
09:56:55 DEBUG   opendrift.models.basemodel:2153: Cleaning up
09:56:55 DEBUG   opendrift.models.basemodel.environment:607: ----------------------------------------
09:56:55 DEBUG   opendrift.models.basemodel.environment:608: Variable group ['land_binary_mask']
09:56:55 DEBUG   opendrift.models.basemodel.environment:609: ----------------------------------------
09:56:55 DEBUG   opendrift.models.basemodel.environment:613: Calling reader global_landmask
09:56:55 DEBUG   opendrift.models.basemodel.environment:614: ----------------------------------------
09:56:55 DEBUG   opendrift.models.basemodel.environment:630: Data needed for 1000 elements
09:56:55 DEBUG   opendrift.readers.basereader.variables:752: Fetching variables from global_landmask covering 1000 elements
09:56:55 DEBUG   opendrift.readers.basereader.continuous:37: Fetched env-before
09:56:55 DEBUG   opendrift.readers.basereader.variables:633: Checking land_binary_mask for invalid values
09:56:55 DEBUG   opendrift.readers.basereader.variables:788: Reader projection is latlon - rotation of vectors is not needed.
09:56:55 DEBUG   opendrift.models.basemodel.environment:764: Obtained data for all elements.
09:56:55 DEBUG   opendrift.models.basemodel.environment:777: ---------------------------------------
09:56:55 DEBUG   opendrift.models.basemodel.environment:778: Finished processing all variable groups
09:56:55 DEBUG   opendrift.models.basemodel.environment:903: ------------ SUMMARY -------------
09:56:55 DEBUG   opendrift.models.basemodel.environment:905:     land_binary_mask: 0 (min) 0 (max)
09:56:55 DEBUG   opendrift.models.basemodel.environment:907: ---------------------------------
09:56:55 DEBUG   opendrift.models.basemodel:659: No elements hit coastline.
09:56:55 DEBUG   opendrift.models.basemodel:1710: No elements to deactivate
09:56:55 DEBUG   opendrift.models.basemodel:95: Changed mode from Mode.Run to Mode.Result
09:56:55 DEBUG   opendrift.models.basemodel:2365: Setting up map: corners=None, fast=False, lscale=None
09:56:55 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/opt/conda/envs/opendrift/lib/python3.11/site-packages/cartopy/mpl/geoaxes.py:1692: UserWarning: No data for colormapping provided via 'c'. Parameters 'cmap' will be ignored
  result = super().scatter(*args, **kwargs)
09:57:26 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:57:29 DEBUG   opendrift.models.basemodel:3044: Saving animation..
09:57:29 INFO    opendrift.models.basemodel:4608: Saving animation to /root/project/docs/source/gallery/animations/example_manual_aggregate_0.gif...
09:57:30 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:57:32 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:57:35 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:57:38 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:57:40 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:57:43 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:57:46 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:57:48 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:57:51 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:57:53 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:57:56 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:57:59 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:01 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:04 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:07 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:10 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:12 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:15 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:18 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:21 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:24 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:27 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:30 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:33 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:36 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:39 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:42 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:44 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:47 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:49 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:52 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:54 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:58:57 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:58:59 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:02 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:04 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:07 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:10 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:12 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:15 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:18 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:20 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:23 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:25 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:27 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:30 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:32 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:34 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:37 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:39 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:41 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:43 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:46 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:48 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:50 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:52 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
09:59:55 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
09:59:57 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:00 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:02 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:04 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:06 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:09 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:11 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:14 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:16 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:18 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:20 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:23 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:25 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:27 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:30 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:32 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:34 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:37 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:39 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:41 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:44 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:46 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:49 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:51 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:53 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:00:56 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:00:58 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:00 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:02 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:05 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:07 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:09 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:12 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:14 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:16 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:19 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:21 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:24 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:26 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:29 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:31 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:34 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:36 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:39 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:41 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:44 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:47 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:49 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:52 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:01:55 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:01:57 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:00 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:02 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:05 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:08 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:10 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:13 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:16 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:18 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:21 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:23 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:26 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:29 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:32 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:34 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:37 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:40 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:43 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:46 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:49 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:52 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:02:55 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:02:58 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:03:01 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:03:04 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:03:07 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:03:10 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:03:13 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:03:16 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:03:19 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:03:21 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:03:24 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:03:27 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:03:29 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:03:32 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
/root/project/opendrift/models/basemodel/__init__.py:4644: UserWarning: Tight layout not applied. The left and right margins cannot be made large enough to accommodate all Axes decorations.
  writer.grab_frame()
10:03:34 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:03:37 DEBUG   opendrift.readers.reader_global_landmask:78: Adding GSHHG shapes from cartopy, scale: h, extent: (3.69716796875, 4.976791286468506, 59.797310638427724, 61.61507339477538)..
10:03:40 DEBUG   opendrift.models.basemodel:4646: MPLBACKEND = agg
10:03:40 DEBUG   opendrift.models.basemodel:4647: DISPLAY = None
10:03:40 DEBUG   opendrift.models.basemodel:4648: Time to save animation: 0:06:10.863730
10:03:40 INFO    opendrift.models.basemodel:3037: Time to make animation: 0:06:45.465123
../_images/example_manual_aggregate_0.gif

Total running time of the script: (24 minutes 42.529 seconds)

Gallery generated by Sphinx-Gallery